Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 for selectgo (1.19 sec)

  1. src/runtime/pprof/pprof_test.go

    `},
    		{
    			name: "select recv async",
    			f:    blockSelectRecvAsync,
    			stk: []string{
    				"runtime.selectgo",
    				"runtime/pprof.blockSelectRecvAsync",
    				"runtime/pprof.TestBlockProfile",
    			},
    			re: `
    [0-9]+ [0-9]+ @( 0x[[:xdigit:]]+)+
    #	0x[0-9a-f]+	runtime\.selectgo\+0x[0-9a-f]+	.*runtime/select.go:[0-9]+
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

        }
    
        public void restart(ComponentState selected) {
            // Restarting this configuration after conflict resolution.
            // If this configuration belongs to the select version, queue ourselves up for traversal.
            // If not, then remove our incoming edges, which triggers them to be moved across to the selected configuration
            if (component == selected) {
                if (!evicted) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		expectEvents(t, events,
    			Event{Type: "service", ID: "selector.com", Namespace: selector.Namespace},
    			Event{Type: "service", ID: "updated.com", Namespace: selector.Namespace},
    			Event{Type: "eds cache", ID: "selector.com", Namespace: selector.Namespace},
    			Event{Type: "xds full", ID: "selector.com,updated.com"},
    		)
    	})
    
    	t.Run("add dns service entry", func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    	return mg.g.RequiredBy(m)
    }
    
    // Selected returns the selected version of the module with the given path.
    //
    // If no version is selected, Selected returns version "none".
    func (mg *ModuleGraph) Selected(path string) (version string) {
    	return mg.g.Selected(path)
    }
    
    // WalkBreadthFirst invokes f once, in breadth-first order, for each module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      optional string namespace = 2;
    
      // selector can be used to match multiple param objects based on their labels.
      // Supply selector: {} to match all resources of the ParamKind.
      //
      // If multiple params are found, they are all evaluated with the policy expressions
      // and the results are ANDed together.
      //
      // One of `name` or `selector` must be set, but `name` and `selector` are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// selector can be used to match multiple param objects based on their labels.
    	// Supply selector: {} to match all resources of the ParamKind.
    	//
    	// If multiple params are found, they are all evaluated with the policy expressions
    	// and the results are ANDed together.
    	//
    	// One of `name` or `selector` must be set, but `name` and `selector` are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

    The only attribute distinguishing these variants is 'extra'. Add this attribute to the consumer's configuration to resolve the ambiguity:
      - Value: 'extra 2' selects variant: 'bar'
      - Value: 'extra' selects variant: 'foo'"""
        }
    
        /**
         * If a configuration defines attributes, and that the target project declares configurations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

        (SelectOp (TFL_LogicalNotOp $condition), $input1, $input2),
        (SelectOp $condition, $input2, $input1)>;
    
      // Fuse select(broadcast_to(input, shape), x, y) -> selectV2(input, x, y)
      // Also, fuse selectv2(broadcast_to(input, shape), x, y) -> selectV2(input, x, y)
      // It is safe to perform this transform here because-
      // the shapes of `pre_broadcast` and `dim` must be broadcast
      // compatible for the `broadcast_to` op to be valid.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	svcPorts []corev1.ServicePort, selector map[string]string, t *testing.T,
    ) {
    	service := &corev1.Service{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:        name,
    			Namespace:   namespace,
    			Annotations: annotations,
    		},
    		Spec: corev1.ServiceSpec{
    			ClusterIP: "10.0.0.1", // FIXME: generate?
    			Ports:     svcPorts,
    			Selector:  selector,
    			Type:      corev1.ServiceTypeClusterIP,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/types.go

    	Replicas *int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"`
    
    	// Label selector for pods. Existing ReplicaSets whose pods are
    	// selected by this will be the ones affected by this deployment.
    	// It must match the pod template's labels.
    	Selector *metav1.LabelSelector `json:"selector" protobuf:"bytes,2,opt,name=selector"`
    
    	// Template describes the pods that will be created.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
Back to top