Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for hit (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/runtime/map.go

    			goto done
    		}
    		ovf := b.overflow(t)
    		if ovf == nil {
    			break
    		}
    		b = ovf
    	}
    
    	// Did not find mapping for key. Allocate new cell & add entry.
    
    	// If we hit the max load factor or we have too many overflow buckets,
    	// and we're not already in the middle of growing, start growing.
    	if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/MapMakerInternalMap.java

       *
       * The Least Recently Used page replacement algorithm was chosen due to its simplicity, high hit
       * rate, and ability to be implemented with O(1) time complexity. The initial LRU implementation
       * operates per-segment rather than globally for increased implementation simplicity. We expect
       * the cache hit rate to be similar to that of a global LRU algorithm.
       */
    
      // Constants
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/get.go

    	// resolve new dependencies if nothing else turns up.
    	for _, curM := range r.buildList {
    		if !q.canMatchInModule(curM.Path) {
    			continue
    		}
    		q.pathOnce(curM.Path, func() pathSet {
    			if _, hit := r.noneForPath(curM.Path); hit {
    				// This module is being removed, so it will no longer be in the build list
    				// (and thus will no longer match the pattern).
    				return pathSet{}
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top