- Sort Score
- Result 10 results
- Languages All
Results 11 - 19 of 19 for isDeleted (0.12 sec)
-
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java
throw new DictionaryException("Kuromoji file was updated: old=" + oldItem + " : new=" + item); } try { if (!item.isDeleted()) { // update writer.write(item.toLineString()); writer.write(Constants.LINE_SEPARATOR);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java
throw new DictionaryException("Synonym file was updated: old=" + oldItem + " : new=" + item); } try { if (!item.isDeleted()) { // update writer.write(item.toLineString()); writer.write(Constants.LINE_SEPARATOR);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
throw new DictionaryException("Protwords file was updated: old=" + oldItem + " : new=" + item); } try { if (!item.isDeleted()) { // update writer.write(item.toLineString()); writer.write(Constants.LINE_SEPARATOR);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
throw new DictionaryException("Stopwords file was updated: old=" + oldItem + " : new=" + item); } try { if (!item.isDeleted()) { // update writer.write(item.toLineString()); writer.write(Constants.LINE_SEPARATOR);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java
throw new DictionaryException("StemmerOverride file was updated: old=" + oldItem + " : new=" + item); } try { if (!item.isDeleted()) { // update writer.write(item.toLineString()); writer.write(Constants.LINE_SEPARATOR);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/BadWordService.java
// skip continue; } try { boolean isDelete = false; if (targetWord.startsWith(DELETE_PREFIX)) { isDelete = true; targetWord = targetWord.substring(2); } final String target = targetWord;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.3K bytes - Viewed (0) -
cni/pkg/nodeagent/net.go
} } // RemovePodFromMesh is called when a pod needs to be removed from the mesh func (s *NetServer) RemovePodFromMesh(ctx context.Context, pod *corev1.Pod, isDelete bool) error { log := log.WithLabels("ns", pod.Namespace, "name", pod.Name) log.WithLabels("delete", isDelete).Debugf("removing pod from the mesh") // Aggregate errors together, so that if part of the cleanup fails we still proceed with other steps. var errs []error
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Oct 21 16:48:55 UTC 2024 - 9.1K bytes - Viewed (0) -
cni/pkg/nodeagent/server.go
AddPodToMesh(ctx context.Context, pod *corev1.Pod, podIPs []netip.Addr, netNs string) error RemovePodFromMesh(ctx context.Context, pod *corev1.Pod, isDelete bool) error Stop() } type Server struct { ctx context.Context kubeClient kube.Client handlers K8sHandlers dataplane MeshDataplane isReady *atomic.Value
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Sep 25 20:54:34 UTC 2024 - 13.4K bytes - Viewed (0) -
cni/pkg/nodeagent/server_test.go
} args := f.Called(ctx, pod, podIPs, netNs) return args.Error(0) } func (f *fakeServer) RemovePodFromMesh(ctx context.Context, pod *corev1.Pod, isDelete bool) error { if f.testWG != nil { defer f.testWG.Done() } args := f.Called(ctx, pod, isDelete) return args.Error(0) } func (f *fakeServer) Start(ctx context.Context) { } func (f *fakeServer) Stop() { }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 18.7K bytes - Viewed (0)