Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for shouldList (0.16 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. 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)
  6. 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)
  7. 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)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotter.java

            }
    
            private boolean shouldVisitDirectory(Path dir, String internedName) {
                return pathTracker.isRoot() || shouldVisit(dir, internedName, true);
            }
    
            private boolean shouldVisitFile(Path file, String internedName) {
                return shouldVisit(file, internedName, false);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  9. pkg/kubelet/util/manager/cache_based_manager_test.go

    	"github.com/stretchr/testify/assert"
    )
    
    func checkObject(t *testing.T, store *objectStore, 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: Tue Jun 04 06:25:43 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. src/cmd/internal/testdir/testdir_test.go

    	// Build tags separated by a comma are AND-ed together.
    	assertNot(shouldTest("// +build !windows,!plan9", "windows", "amd64"))
    	assertNot(shouldTest("// +build !windows,!plan9", "plan9", "386"))
    
    	// Build tags on multiple lines are AND-ed together.
    	assert(shouldTest("// +build !windows\n// +build amd64", "linux", "amd64"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top