Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 149 for selectA (0.16 sec)

  1. src/crypto/tls/tls_test.go

    			serverConfig.MaxVersion = VersionTLS12 // TLSUnique is not defined in TLS 1.3
    			srv := Server(sconn, serverConfig)
    			if err := srv.Handshake(); err != nil {
    				t.Error(err)
    				return
    			}
    			select {
    			case <-parentDone:
    				return
    			case serverTLSUniques <- srv.ConnectionState().TLSUnique:
    			}
    		}
    	}()
    
    	clientConfig := testConfig.Clone()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def visitedArtifactSet = Mock(VisitedArtifactSet)
            def selectedArtifactSet = Mock(SelectedArtifactSet)
    
            given:
            _ * visitedArtifactSet.select(_) >> selectedArtifactSet
            _ * selectedArtifactSet.visitDependencies(_) >> { TaskDependencyResolveContext visitor -> visitor.add(artifactTaskDependencies) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	foo4Meta.SetLabels(testLabels)
    
    	objs := ([]runtime.Object{foo3, foo4})
    
    	assignFn(objs)
    	filtered := []runtime.Object{objs[1]}
    
    	selector := labels.SelectorFromSet(labels.Set(testLabels))
    	options := &metainternalversion.ListOptions{LabelSelector: selector}
    	listObj, err := t.storage.(rest.Lister).List(ctx, options)
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      );
    
      let results = (outs
        Res<TF_FloatTensor, [{0-D.}]>:$output
      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
    }
    
    def TF_SelectOp : TF_Op<"Select", [Pure]> {
      let summary = "Selects elements from `x` or `y`, depending on `condition`.";
    
      let description = [{
    The `x`, and `y` tensors must all have the same shape, and the
    output will also have that shape.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    				s.values[v.ID].rematerializeable = v.rematerializeable()
    				s.orig[v.ID] = v
    			}
    			// Note: needReg is false for values returning Tuple types.
    			// Instead, we mark the corresponding Selects as needReg.
    		}
    	}
    	s.computeLive()
    
    	s.endRegs = make([][]endReg, f.NumBlocks())
    	s.startRegs = make([][]startReg, f.NumBlocks())
    	s.spillLive = make([][]ID, f.NumBlocks())
    	s.sdom = f.Sdom()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    	// SupportedProtos is set only if the Application-Layer Protocol
    	// Negotiation Extension is being used (see RFC 7301, Section 3.1).
    	//
    	// Servers can select a protocol by setting Config.NextProtos in a
    	// GetConfigForClient return value.
    	SupportedProtos []string
    
    	// SupportedVersions lists the TLS versions supported by the client.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    			for i := 0; i < len(newItems); i++ {
    				select {
    				case toProcess <- newItems[i]:
    				case <-workersExited:
    					klog.V(4).InfoS("workers already exited, and there are some items waiting to be processed", "queued/finished", i, "total", processedItems+len(newItems))
    					// Try to propagate an error from the workers if possible.
    					select {
    					case err := <-errs:
    						return nil, err
    					default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  8. istioctl/pkg/describe/describe.go

    			if err != nil {
    				return err
    			}
    
    			matchingServices := make([]corev1.Service, 0, len(svcs.Items))
    			for _, svc := range svcs.Items {
    				if len(svc.Spec.Selector) > 0 {
    					svcSelector := klabels.SelectorFromSet(svc.Spec.Selector)
    					if svcSelector.Matches(podLabels) {
    						matchingServices = append(matchingServices, svc)
    					}
    				}
    			}
    			// Validate Istio's "Service association" requirement
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  9. cmd/xl-storage.go

    			r.Exists = true
    			r.Error = fmt.Sprintf("max size (%d) exceeded: %d", req.MaxSize, len(data))
    			select {
    			case <-ctx.Done():
    				return ctx.Err()
    			case resp <- r:
    				continue
    			}
    		}
    		found++
    		r.Exists = true
    		r.Data = data
    		r.Modtime = mt
    		select {
    		case <-ctx.Done():
    			return ctx.Err()
    		case resp <- r:
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

    }
    
    // Mode for the ingress controller.
    enum ingressControllerMode {
      // Unspecified Istio ingress controller.
      UNSPECIFIED = 0;
      // Selects all Ingress resources, with or without Istio annotation.
      DEFAULT = 1;
      // Selects only resources with istio annotation.
      STRICT = 2;
      // No ingress or sync.
      OFF = 3;
    }
    
    // Controls whether Istio policy is applied to Pilot.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top