Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 107 of 107 for weights (0.12 sec)

  1. pilot/pkg/networking/core/cluster_builder.go

    	}
    	// clusters with discovery type STATIC, STRICT_DNS rely on cluster.LoadAssignment field.
    	// ServiceEntry's need to filter hosts based on subset.labels in order to perform weighted routing
    	var lbEndpoints []*endpoint.LocalityLbEndpoints
    
    	isPassthrough := subset.GetTrafficPolicy().GetLoadBalancer().GetSimple() == networking.LoadBalancerSettings_PASSTHROUGH
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion_test.go

    		validationIgnorer *crdvalidation.ValidationIgnorer
    	}{
    		{name: "http"},
    		{name: "tcp"},
    		{name: "tls"},
    		{name: "grpc"},
    		{name: "mismatch"},
    		{name: "weighted"},
    		{name: "zero"},
    		{name: "mesh"},
    		{
    			name: "invalid",
    			validationIgnorer: crdvalidation.NewValidationIgnorer(
    				"default/^invalid-backendRef-kind-",
    				"default/^invalid-backendRef-mixed-",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  3. src/encoding/json/decode.go

    			}
    			v.SetFloat(n)
    		}
    	}
    	return nil
    }
    
    // The xxxInterface routines build up a value to be stored
    // in an empty interface. They are not strictly necessary,
    // but they avoid the weight of reflection in this common case.
    
    // valueInterface is like value but returns interface{}
    func (d *decodeState) valueInterface() (val any) {
    	switch d.opcode {
    	default:
    		panic(phasePanicMsg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  4. src/net/lookup_test.go

    }
    
    func srvString(srvs []*SRV) string {
    	var buf strings.Builder
    	sep := ""
    	fmt.Fprintf(&buf, "[")
    	for _, srv := range srvs {
    		fmt.Fprintf(&buf, "%s%s:%d:%d:%d", sep, srv.Target, srv.Port, srv.Priority, srv.Weight)
    		sep = " "
    	}
    	fmt.Fprintf(&buf, "]")
    	return buf.String()
    }
    
    func TestLookupPort(t *testing.T) {
    	// See https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. src/cmd/link/link_test.go

    everywhere. Fog up the river, where it flows among green aits and meadows; fog down the river, where it rolls defiled among the tiers of shipping and the waterside pollutions of a great (and dirty) city. Fog on the Essex marshes, fog on the Kentish heights. Fog creeping into the cabooses of collier-brigs; fog lying out on the yards and hovering in the rigging of great ships; fog drooping on the gunwales of barges and small boats. Fog in the eyes and throats of ancient Greenwich pensioners, wheezing...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  6. src/runtime/metrics_test.go

    	for i := 0; i < b.N; i++ {
    		start := time.Now()
    		metrics.Read(samples)
    		latencies = append(latencies, time.Since(start))
    	}
    	// Make sure to stop the timer before we wait! The load created above
    	// is very heavy-weight and not easy to stop, so we could end up
    	// confusing the benchmarking framework for small b.N.
    	b.StopTimer()
    	stop()
    
    	// Disable the default */op metrics.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  7. src/runtime/runtime2.go

    	// ability to execute user code).
    	//
    	// If you add to this list, add to the list
    	// of "okay during garbage collection" status
    	// in mgcmark.go too.
    	//
    	// TODO(austin): The _Gscan bit could be much lighter-weight.
    	// For example, we could choose not to run _Gscanrunnable
    	// goroutines found in the run queue, rather than CAS-looping
    	// until they become _Grunnable. And transitions like
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
Back to top