Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for IsDeleted (0.17 sec)

  1. src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java

            }
            return String.join("\n", outputs);
        }
    
        public boolean isUpdated() {
            return newInputs != null && newOutputs != null;
        }
    
        public boolean isDeleted() {
            return isUpdated() && newInputs.length == 0;
        }
    
        @Override
        public int hashCode() {
            return Objects.hash(Arrays.hashCode(inputs), Arrays.hashCode(outputs));
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiItem.java

            return reading;
        }
    
        public String getPos() {
            return pos;
        }
    
        public boolean isUpdated() {
            return newToken != null;
        }
    
        public boolean isDeleted() {
            return isUpdated() && newToken.length() == 0;
        }
    
        @Override
        public int hashCode() {
            return Objects.hash(pos, reading, segmentation, token);
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

                        throw new DictionaryException("Mapping file was updated: old=" + oldItem + " : new=" + item);
                    }
                    try {
                        if (!item.isDeleted()) {
                            // update
                            writer.write(item.toLineString());
                            writer.write(Constants.LINE_SEPARATOR);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher.go

    				return nil
    			}
    		}
    		res = &watch.Event{
    			Type:   watch.Bookmark,
    			Object: object,
    		}
    	case e.isDeleted:
    		if !wc.filter(oldObj) {
    			return nil
    		}
    		res = &watch.Event{
    			Type:   watch.Deleted,
    			Object: oldObj,
    		}
    	case e.isCreated:
    		if !wc.filter(curObj) {
    			return nil
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  6. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods_test.go

    					t.Fatalf("unexpected sync statuses: %#v", w.podSyncStatuses)
    				}
    				s, ok := w.podSyncStatuses[uid]
    				if !ok || !s.IsTerminationRequested() || !s.IsTerminationStarted() || s.IsFinished() || s.IsWorking() || !s.IsDeleted() {
    					t.Fatalf("unexpected requested pod termination: %#v", s)
    				}
    				// expect we get a pod sync record for kill that should have the same grace period as before (2), but no
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  10. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top