Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 242 for getg (0.73 sec)

  1. pkg/proxy/endpointschangetracker.go

    	// DeletedUDPEndpoints identifies UDP endpoints that have just been deleted.
    	// Existing conntrack NAT entries pointing to these endpoints must be deleted to
    	// ensure that no further traffic for the Service gets delivered to them.
    	DeletedUDPEndpoints []ServiceEndpoint
    
    	// NewlyActiveUDPServices identifies UDP Services that have just gone from 0 to
    	// non-0 endpoints. Existing conntrack entries caching the fact that these
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/compilability_check_util.h

    // using xla::ComputationDataHandle, which is just a symbolic handle that
    // xla::ComputationBuilder assigns. How does this handle gets assigned for
    // constant arguments? Even constant arguments get an _Arg node in the graph
    // instantiated for Function compilation. The tf2xla kernel for constant _Arg
    // nodes takes the constant value, converts it to XlaLiteral, and feeds it
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    			ResourceRules: []flowcontrol.ResourcePolicyRule{
    				resourceRule(
    					[]string{"get", "create", "update"},
    					[]string{corev1.GroupName},
    					[]string{"endpoints"},
    					[]string{flowcontrol.NamespaceEvery},
    					false),
    			},
    		},
    	)
    	// TODO(#80289): Get rid of this rule once we get rid of support for
    	//   using endpoints and configmaps objects for leader election.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

        // WARMUP_MAX), but the tests assume no values get evicted. Even with a maximumSize of 100, one
        // of the values gets evicted. With weak keys, we use identity equality, which means using
        // System.identityHashCode, which means the assignment of keys to segments is nondeterministic,
        // so more than (maximumSize / #segments) keys could get assigned to the same segment, which
        // would cause one to be evicted.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/staticdata/data.go

    		base.Fatalf("expected func name: %v", n)
    	}
    	s := n.Sym()
    
    	// funcsymsmu here serves to protect not just mutations of funcsyms (below),
    	// but also the package lookup of the func sym name,
    	// since this function gets called concurrently from the backend.
    	// There are no other concurrent package lookups in the backend,
    	// except for the types package, which is protected separately.
    	// Reusing funcsymsmu to also cover this package lookup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/aggregate/controller_test.go

    func TestGetService(t *testing.T) {
    	aggregateCtl := buildMockController()
    
    	// Get service from mockAdapter1
    	svc := aggregateCtl.GetService(mock.HelloService.Hostname)
    	if svc == nil {
    		t.Fatal("Fail to get service")
    	}
    	if svc.Hostname != mock.HelloService.Hostname {
    		t.Fatal("Returned service is incorrect")
    	}
    
    	// Get service from mockAdapter2
    	svc = aggregateCtl.GetService(mock.WorldService.Hostname)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go

    		if err != nil {
    			strictErrs = append(strictErrs, err)
    		}
    	}
    
    	var strictJSONErrs []error
    	if u, isUnstructured := into.(runtime.Unstructured); isUnstructured {
    		// Unstructured is a custom unmarshaler that gets delegated
    		// to, so in order to detect strict JSON errors we need
    		// to unmarshal directly into the object.
    		m := map[string]interface{}{}
    		strictJSONErrs, err = kjson.UnmarshalStrict(data, &m)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 16:08:07 UTC 2022
    - 12K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/etcd/local.go

    }
    
    func prepareAndWriteEtcdStaticPod(manifestDir string, patchesDir string, cfg *kubeadmapi.ClusterConfiguration, endpoint *kubeadmapi.APIEndpoint, nodeName string, initialCluster []etcdutil.Member, isDryRun bool) error {
    	// gets etcd StaticPodSpec, actualized for the current ClusterConfiguration and the new list of etcd members
    	spec := GetEtcdPodSpec(cfg, endpoint, nodeName, initialCluster)
    
    	var usersAndGroups *users.UsersAndGroups
    	var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  9. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector.go

    func NewEgressSelectorWithMap(m map[EgressType]utilnet.DialFunc) *EgressSelector {
    	if m == nil {
    		m = make(map[EgressType]utilnet.DialFunc)
    	}
    	return &EgressSelector{
    		egressToDialer: m,
    	}
    }
    
    // Lookup gets the dialer function for the network context.
    // This is configured for the Kubernetes API Server at startup.
    func (cs *EgressSelector) Lookup(networkContext NetworkContext) (utilnet.DialFunc, error) {
    	if cs.egressToDialer == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. src/runtime/testdata/testprog/gc.go

    	// face of varying environments.
    	debug.SetGCPercent(100)
    
    	// Set GOMAXPROCS to 1 to minimize the amount of memory held in the page cache,
    	// and to reduce the chance that the background scavenger gets scheduled.
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(1))
    
    	// Allocate allocTotal bytes of memory in allocChunk byte chunks.
    	// Alternate between whether the chunk will be held live or will be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
Back to top