일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- license delete
- API
- License
- licence delete curl
- Elasticsearch
- 파이썬
- Mac
- zip 파일 암호화
- TensorFlow
- springboot
- Test
- analyzer test
- high level client
- Python
- Java
- aggs
- plugin
- MySQL
- sort
- flask
- zip 암호화
- query
- matplotlib
- ELASTIC
- 900gle
- token filter test
- Kafka
- 차트
- docker
- aggregation
- Today
- Total
목록분류 전체보기 (475)
개발잡부
Preferences > Build, Execution, Deployment > Build Tools > Gradle 의 Run tests Using 을 아래와 같이 IntelliJ IDEA 로 바꿔준다 Execution failed for task ':test'. > No tests found for given includes: [doo.elasticsearch.plugin.PayLoadSortTest.indexApi](filter.includeTestsMatching) * Try: > Run with --stacktrace option to get the stack trace. > Run with --info or --debug option to get more log output. > Run wit..
에러메시지를 확인해 보면 startOffset은 음수면 에러발생 endOffset은 startOffset 보다 같거나 커야하고 startOffset은 역행하면 안됨 elasticsearch.exceptions.RequestError: RequestError(400, 'illegal_argument_exception', "startOffset must be non-negative, and endOffset must be >= startOffset, and offsets must not go backwards startOffset=36,endOffset=37,lastStartOffset=37 for field 'itemNm'") analyzer 를 통해서 분해된 토큰은 확인 start_offset, end_..
payload sort 2 는 어떻게 됐는지.. 모르겠네.. 왜 작성하다 말았지.. https://ldh-6019.tistory.com/270 [es] payload-score 7.15.1 gradle payload score plugin 을 만들어 보자 https://www.elastic.co/guide/en/elasticsearch/reference/7.15/analysis-delimited-payload-tokenfilter.html#analysis-delimited-payload-tokenfilter java 11 elasticsea.. ldh-6019.tistory.com 일단 여기 플러그인 만들어 놓았고 아래는 회사에서 쓰는거로 테스트 집에가서 섞어봐야지 encoding (Optional, s..
An array A consisting of N integers is given. The dominator of array A is the value that occurs in more than half of the elements of A. For example, consider array A such that A[0] = 3 A[1] = 4 A[2] = 3 A[3] = 2 A[4] = 3 A[5] = -1 A[6] = 3 A[7] = 3 The dominator of A is 3 because it occurs in 5 out of 8 elements of A (namely in those with indices 0, 2, 4, 6 and 7) and 5 is more than a half of 8...
(base) ➜ / mkdir data mkdir: data: Read-only file system Catalina 부터 / (root) 경로에 디렉토리를 만들지 못하도록 변경 되었습니다. (만약 / 에 만들어둔 개인 디렉토리가 있었다면 Catalina 로 업그레이드 하면서 사라졌을지도 모릅니다 ㅠㅠ) / 에서 디렉토리를 만들려고 하면 Read-only file system 이라는 오류를 내뿜으며 디렉토리 생성에 실패 합니다. $ mkdir test mkdir: test: Read-only file system / 에 디렉토리를 만들려면 어떻게 해야 할까요? /etc/synthetic.conf 로 심볼릭 링크 만들기 /etc/synthetic.conf 파일을 만들어서 다음과 같은 내용을 넣어 주고 OS..
import tensorflow as tf from tensorflow.keras import datasets, layers, models import matplotlib.pyplot as plt (train_images, train_labels), (test_images, test_labels) = datasets.cifar10.load_data() #32x32x3 #Norma train_images, test_images = train_images/255.0, test_images/255.0 class_names = ['airplane','automobile', 'bird', 'cat', 'deer', 'dog', 'frog', 'horse', 'ship', 'truck'] plt.figure(fig..
local 에서 개발을 하다보면 포트번호가 충돌나서 아래와 같은 에러가 발생한다. springboot 의 embedded tomcat 을 사용하고 있었는데 brew 를 통해서 하둡을 설치하다 톰켓이 설치되어 에러가 발생 *************************** APPLICATION FAILED TO START *************************** Description: Web server failed to start. Port 9090 was already in use. Action: Identify and stop the process that's listening on port 9090 or configure this application to listen on another p..
package programers; import java.util.Arrays; import java.util.Comparator; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Stack; import java.util.TreeMap; import java.util.stream.Collectors; public class Kakao5chunsung { // // // 실패율은 다음과 같이 정의한다. // 스테이지에 도달했으나 아직 클리어하지 못한 플레이어의 수 / 스테이지에 도달한 플레이어 수 // 전체 스테이지의 개수 N, 게임을 이용하는 사용자가 현재 멈춰있는 스테이지의 번호가 담긴 배열 ..
brew install hadoop (base) ➜ ~ brew reinstall hadoop If you need to have tomcat@8 first in your PATH, run: echo 'export PATH="/usr/local/opt/tomcat@8/bin:$PATH"' >> ~/.zshrc To restart tomcat@8 after an upgrade: brew services restart tomcat@8 Or, if you don't want/need a background service you can just run: /usr/local/opt/tomcat@8/bin/catalina run 환경설정 /usr/local/Cellar/hadoop/3.3.3/libexec/etc/..
!pip install -q -U tensorflow !pip install -q tensorflow_datasets import numpy as np import tensorflow_datasets as tfds import tensorflow as tf tfds.disable_progress_bar() import matplotlib.pyplot as plt def plot_graphs(history, metric): plt.plot(history.history[metric]) plt.plot(history.history['val_'+metric], '') plt.xlabel("Epochs") plt.ylabel(metric) plt.legend([metric, 'val_'+ metric]) data..