Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for shouldList (0.17 sec)

  1. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionQuery.java

            return functionScoreQuery;
        }
    
        protected BoolQueryBuilder regBoolCQ(List<QueryBuilder> mustList, List<QueryBuilder> shouldList, List<QueryBuilder> mustNotList,
                List<QueryBuilder> filterList) {
            assertObjectNotNull("mustList", mustList);
            assertObjectNotNull("shouldList", shouldList);
            assertObjectNotNull("mustNotList", mustNotList);
            assertObjectNotNull("filterList", filterList);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionQuery.java

            return functionScoreQuery;
        }
    
        protected BoolQueryBuilder regBoolCQ(List<QueryBuilder> mustList, List<QueryBuilder> shouldList, List<QueryBuilder> mustNotList,
                List<QueryBuilder> filterList) {
            assertObjectNotNull("mustList", mustList);
            assertObjectNotNull("shouldList", shouldList);
            assertObjectNotNull("mustNotList", mustNotList);
            assertObjectNotNull("filterList", filterList);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionQuery.java

            return functionScoreQuery;
        }
    
        protected BoolQueryBuilder regBoolCQ(List<QueryBuilder> mustList, List<QueryBuilder> shouldList, List<QueryBuilder> mustNotList,
                List<QueryBuilder> filterList) {
            assertObjectNotNull("mustList", mustList);
            assertObjectNotNull("shouldList", shouldList);
            assertObjectNotNull("mustNotList", mustNotList);
            assertObjectNotNull("filterList", filterList);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/PathVisitor.java

            this.fileSystem = fileSystem;
        }
    
        private boolean shouldVisit(FileTreeElement element) {
            return spec.isSatisfiedBy(element);
        }
    
        @Override
        public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) {
            FileVisitDetails details = getFileVisitDetails(dir, attrs);
            if (directoryDetailsHolder.size() == 0 || shouldVisit(details)) {
                directoryDetailsHolder.push(details);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. pkg/kubelet/secret/secret_manager_test.go

    	"k8s.io/kubernetes/pkg/kubelet/util/manager"
    	"k8s.io/utils/clock"
    )
    
    func checkObject(t *testing.T, store manager.Store, ns, name string, shouldExist bool) {
    	_, err := store.Get(ns, name)
    	if shouldExist && err != nil {
    		t.Errorf("unexpected actions: %#v", err)
    	}
    	if !shouldExist && (err == nil || !strings.Contains(err.Error(), fmt.Sprintf("object %q/%q not registered", ns, name))) {
    		t.Errorf("unexpected actions: %#v", err)
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 10 10:20:09 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  6. src/regexp/backtrack.go

    		b.matchcap = make([]int, ncap)
    	} else {
    		b.matchcap = b.matchcap[:ncap]
    	}
    	for i := range b.matchcap {
    		b.matchcap[i] = -1
    	}
    }
    
    // shouldVisit reports whether the combination of (pc, pos) has not
    // been visited yet.
    func (b *bitState) shouldVisit(pc uint32, pos int) bool {
    	n := uint(int(pc)*(b.end+1) + pos)
    	if b.visited[n/visitedBits]&(1<<(n&(visitedBits-1))) != 0 {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  7. pkg/kubelet/configmap/configmap_manager_test.go

    	"k8s.io/kubernetes/pkg/kubelet/util/manager"
    	"k8s.io/utils/clock"
    )
    
    func checkObject(t *testing.T, store manager.Store, ns, name string, shouldExist bool) {
    	_, err := store.Get(ns, name)
    	if shouldExist && err != nil {
    		t.Errorf("unexpected actions: %#v", err)
    	}
    	if !shouldExist && (err == nil || !strings.Contains(err.Error(), fmt.Sprintf("object %q/%q not registered", ns, name))) {
    		t.Errorf("unexpected actions: %#v", err)
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 10 10:20:09 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/artifact/testutils/TestFileManager.java

                it.remove();
            }
    
            warnAboutCleanup = false;
        }
    
        public void assertFileExistence(File dir, String filename, boolean shouldExist) {
            File file = new File(dir, filename);
    
            if (shouldExist) {
                assertTrue(file.exists());
            } else {
                assertFalse(file.exists());
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. pkg/kubelet/token/token_manager_test.go

    						ExpirationTimestamp: metav1.Time{Time: mgr.clock.Now().Add(50 * time.Minute)},
    					},
    				})
    			}
    			_, hit := mgr.get(getKeyFunc(c.target))
    
    			if hit != c.shouldHit {
    				t.Errorf("%s got unexpected hit result: expected to be %t, got %t", c.name, c.shouldHit, hit)
    			}
    		})
    	}
    
    }
    
    func getTokenRequest() *authenticationv1.TokenRequest {
    	return &authenticationv1.TokenRequest{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 04 00:16:47 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/cache/actual_state_of_world_test.go

    func verifyVolumeExistsAsw(
    	t *testing.T,
    	expectedVolumeName v1.UniqueVolumeName,
    	shouldExist bool,
    	asw ActualStateOfWorld) {
    	volumeExists := asw.VolumeExists(expectedVolumeName)
    	if shouldExist != volumeExists {
    		t.Fatalf(
    			"VolumeExists(%q) response incorrect. Expected: <%v> Actual: <%v>",
    			expectedVolumeName,
    			shouldExist,
    			volumeExists)
    	}
    }
    
    func verifyVolumeExistsAswWithSELinux(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top