Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for shouldList (0.18 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. 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)
  5. 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)
  6. 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)
  7. 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)
Back to top