Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for hit (0.03 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. src/net/http/client_test.go

    	client.Jar.SetCookies(u, expectedCookies)
    
    	client.Get(us) // Note: doesn't hit network
    	matchReturnedCookies(t, expectedCookies, tr.req.Cookies())
    
    	client.Head(us) // Note: doesn't hit network
    	matchReturnedCookies(t, expectedCookies, tr.req.Cookies())
    
    	client.Post(us, "text/plain", strings.NewReader("body")) // Note: doesn't hit network
    	matchReturnedCookies(t, expectedCookies, tr.req.Cookies())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    			// install slot in lookup table
    			idx, _ := sc.lookup(sl)
    			// add to f.NamedValues if not already present
    			addToNV(v, sc.canonSlot(idx))
    		} else if v.Op.IsCall() {
    			// if we hit a call, we've gone too far.
    			break
    		}
    	}
    
    	// Now make a pass through the ABI in-params, looking for params
    	// or pieces of params that we didn't encounter in the loop above.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. src/time/format.go

    			// This means you are asking us to parse a time.Duration or
    			// time.Location with unprintable or non-ASCII characters in it.
    			// We don't expect to hit this case very often. We could try to
    			// reproduce strconv.Quote's behavior with full fidelity but
    			// given how rarely we expect to hit these edge cases, speed and
    			// conciseness are better.
    			var width int
    			if c == runeError {
    				width = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier.go

    						allowFromNode = true
    					}
    				}
    				// generally, ip route rule was added to intercept request to loadbalancer vip from the
    				// loadbalancer's backend hosts. In this case, request will not hit the loadbalancer but loop back directly.
    				// Need to add the following rule to allow request on host.
    				if allowFromNode {
    					entry = &utilipset.Entry{
    						IP:       ingress.String(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  6. tests/integration/ambient/baseline_test.go

    								from.CallOrFail(t, echo.CallOptions{
    									Address: "111.111.222.222",
    									Port:    to.PortForName("http"),
    									// If request is sent before service is processed it will hit 10s timeout, so fail faster
    									Timeout: time.Millisecond * 500,
    								})
    							})
    					})
    				}
    			}
    		})
    }
    
    func TestServiceEntrySelectsWorkloadEntry(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  7. src/net/http/httputil/reverseproxy_test.go

    		w.Header().Add("X-Hit-Mod", fmt.Sprintf("%v", r.URL.Path == "/mod"))
    	}))
    	defer backendServer.Close()
    
    	rpURL, _ := url.Parse(backendServer.URL)
    	rproxy := NewSingleHostReverseProxy(rpURL)
    	rproxy.ErrorLog = log.New(io.Discard, "", 0) // quiet for tests
    	rproxy.ModifyResponse = func(resp *http.Response) error {
    		if resp.Header.Get("X-Hit-Mod") != "true" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. src/encoding/xml/marshal_test.go

    func (lw *limitedBytesWriter) Write(p []byte) (n int, err error) {
    	if lw.remain <= 0 {
    		println("error")
    		return 0, errors.New("write limit hit")
    	}
    	if len(p) > lw.remain {
    		p = p[:lw.remain]
    		n, _ = lw.w.Write(p)
    		lw.remain = 0
    		return n, errors.New("write limit hit")
    	}
    	n, err = lw.w.Write(p)
    	lw.remain -= n
    	return n, err
    }
    
    func TestMarshalWriteErrors(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  9. src/regexp/syntax/parse.go

    )
    
    // maxHeight is the maximum height of a regexp parse tree.
    // It is somewhat arbitrarily chosen, but the idea is to be large enough
    // that no one will actually hit in real use but at the same time small enough
    // that recursion on the Regexp tree will not hit the 1GB Go stack limit.
    // The maximum amount of stack for a single recursive frame is probably
    // closer to 1kB, so this could potentially be raised, but it seems unlikely
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            ExcludeSpec result = moduleExclusions.excludeAny(edgeExclusions, nodeExclusions);
            // We use a set here because for excludes, order of edges is irrelevant
            // so we hit the cache more by using a set
            previousIncomingEdgeCount = incomingEdgeCount;
            previousIncomingHash = incomingHash;
            cachedModuleResolutionFilter = result;
            return result;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
Back to top