Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for hit (0.07 sec)

  1. 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)
  2. pilot/pkg/networking/core/listener_waypoint.go

    	// hostname purely to match to the Service VIP. So we only need a single VHost, with routes compute based on the VS.
    	// For destinations, we need to hit the inbound clusters if it is an internal destination, otherwise outbound.
    	routes, err := lb.waypointInboundRoute(vs, cc.port.Port)
    	if err != nil {
    		return buildSidecarInboundHTTPRouteConfig(lb, cc)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. internal/grid/handlers.go

    	peerPrefix      = "peer"
    	peerPrefixS3    = "peerS3"
    	healPrefix      = "heal"
    )
    
    func init() {
    	// Static check if we exceed 255 handler ids.
    	// Extend the type to uint16 when hit.
    	if handlerLast > 255 {
    		panic(fmt.Sprintf("out of handler IDs. %d > %d", handlerLast, 255))
    	}
    }
    
    func (h HandlerID) valid() bool {
    	return h != handlerInvalid && h < handlerLast
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	}()
    
    	// In case resourceVersion is 0, we accept arbitrarily stale result.
    	// As a result, the condition in the below for loop will never be
    	// satisfied (w.resourceVersion is never negative), this call will
    	// never hit the w.cond.Wait().
    	// As a result - we can optimize the code by not firing the wakeup
    	// function (and avoid starting a gorotuine), especially given that
    	// resourceVersion=0 is the most common case.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                                + validVersions + ". Building this project requires a newer version of Maven.",
                        tracker);
    
            } else if (olderThanAll) {
                // note this will not be hit for Maven 1.x project.xml as it is an incompatible schema
                addViolation(
                        problems,
                        Severity.FATAL,
                        Version.V20,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  6. .bazelrc

    # _USE_MATH_DEFINES is defined.
    build:windows --copt=/D_USE_MATH_DEFINES
    build:windows --host_copt=/D_USE_MATH_DEFINES
    
    # Windows has a relatively short command line limit, which TF has begun to hit.
    # See https://docs.bazel.build/versions/main/windows.html
    build:windows --features=compiler_param_file
    build:windows --features=archive_param_file
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier.go

    					allowFromNode = true
    				}
    			}
    			// For VIP-like LBs, the VIP is often added as a local
    			// address (via an IP route rule).  In that case, a request
    			// from a node to the VIP will not hit the loadbalancer but
    			// will loop back with the source IP set to the VIP.  We
    			// need the following rules to allow requests from this node.
    			if allowFromNode {
    				for _, lbip := range svcInfo.LoadBalancerVIPs() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    			//   hash++
    			s.vars[hashVar] = s.newValue2(add, typs.Uintptr, s.variable(hashVar, typs.Uintptr), s.uintptrConstant(1))
    
    			// Look for a cache hit.
    			//   if e.Typ == t { goto hit }
    			eTyp := s.newValue2(ssa.OpLoad, typs.Uintptr, e, s.mem())
    			cmp1 := s.newValue2(ssa.OpEqPtr, typs.Bool, t, eTyp)
    			b = s.endBlock()
    			b.Kind = ssa.BlockIf
    			b.SetControl(cmp1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.28.md

      
      - `rest_client_transport_create_calls_total` is a counter
      that increments each time a new transport is created, storing
      the result of the operation needed to generate it: hit, miss
      or uncacheable. ([#117295](https://github.com/kubernetes/kubernetes/pull/117295), [@aojea](https://github.com/aojea))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
Back to top