Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 322 for hit (0.02 sec)

  1. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    docMap.put(fessConfig.getIndexFieldSeqNo(), hit.getSeqNo());
                    docMap.put(fessConfig.getIndexFieldPrimaryTerm(), hit.getPrimaryTerm());
                    return docMap;
                }
                final Map<String, DocumentField> fields = hit.getFields();
                if (fields != null) {
                    final Map<String, Object> docMap = fields.entrySet().stream()
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  2. maven-slf4j-provider/src/test/java/org/apache/maven/slf4j/MavenLoggerFactoryTest.java

            assertFalse(logLevelRecorder.metThreshold());
    
            logger.warn("This should not hit the fail threshold");
            assertFalse(logLevelRecorder.metThreshold());
    
            logger.error("This should hit the fail threshold");
            assertTrue(logLevelRecorder.metThreshold());
    
            logger.warn("This should not reset the fail threshold");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:36:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. 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)
  4. pkg/generated/openapi/OWNERS

    approvers:
      - sttts
      - roycaihw
      - liggitt
      # APIs frequently hit this directory for zz_generate.openapi.go
      - api-approvers
    reviewers:
      - sttts
      - roycaihw
      - liggitt
    labels:
      - sig/api-machinery
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 19:27:53 UTC 2023
    - 231 bytes
    - Viewed (0)
  5. mockwebserver/src/test/java/mockwebserver3/CustomDispatcherTest.kt

        mockWebServer.dispatcher = dispatcher
        val url = mockWebServer.url("/").toUrl()
        val conn = url.openConnection() as HttpURLConnection
        conn.responseCode // Force the connection to hit the "server".
        // Make sure our dispatcher got the request.
        assertThat(requestsMade.size).isEqualTo(1)
      }
    
      @Test
      fun outOfOrderResponses() {
        val firstResponseCode = AtomicInteger()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. releasenotes/notes/wasm-cache-with-tag-stripped-url.yaml

    kind: feature
    area: extensibility
    issue: []
    releaseNotes:
      - |
        **Improved** Use tag-stripped URL + checksum as a Wasm module cachekey, and the tagged URL is separately cached. 
        This may increase the chance of cache hit (e.g., trying to find the same image with both of the tagged and digest URLs.)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 23 08:37:23 UTC 2024
    - 402 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/caching_authorizer_test.go

    	type invocation struct {
    		attributes authorizer.Attributes
    		expected   result
    	}
    
    	for _, tc := range []struct {
    		name    string
    		calls   []invocation
    		backend []result
    	}{
    		{
    			name: "hit",
    			calls: []invocation{
    				{
    					attributes: authorizer.AttributesRecord{Name: "test name"},
    					expected: result{
    						decision: authorizer.DecisionAllow,
    						reason:   "test reason",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiStreamingBuildActionIntegrationTest.groovy

        def setup() {
            file("settings.gradle") << 'rootProject.name="hello-world"'
        }
    
        def "models are streamed on build action cache hit"() {
            def listener1 = new TestStreamedValueListener()
            def listener2 = new TestStreamedValueListener()
    
            when:
            withIsolatedProjects()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. src/go/doc/testdata/examples/values.go

    // license that can be found in the LICENSE file.
    
    package foo_test
    
    // Variable declaration with fewer values than names.
    
    func f() (int, int) {
    	return 1, 2
    }
    
    var a, b = f()
    
    // Need two examples to hit playExample.
    
    func ExampleA() {
    	_ = a
    }
    
    func ExampleB() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 377 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/range.go

    		nfor.Cond = ir.NewBinaryExpr(base.Pos, ir.ONE, ir.NewSelectorExpr(base.Pos, ir.ODOT, hit, keysym), typecheck.NodNil())
    
    		fn = typecheck.LookupRuntime("mapiternext", th)
    		nfor.Post = mkcallstmt1(fn, typecheck.NodAddr(hit))
    
    		key := ir.NewStarExpr(base.Pos, typecheck.ConvNop(ir.NewSelectorExpr(base.Pos, ir.ODOT, hit, keysym), types.NewPtr(t.Key())))
    		if v1 == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
Back to top