Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for roots (0.07 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

                contextualLabel == "Property \'output\' is not writable because \'${outputFile.absolutePath}\' is not a directory"
                details == "Expected the root of the file tree \'${outputFile.absolutePath}\' to be a directory but it\'s a file"
                solutions == [ 'Make sure that the root of the file tree \'output\' is configured to a directory' ]
                additionalData.asMap == [
                    'typeName' : 'org.gradle.api.DefaultTask',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_server.go

    			c.sendAlert(alertBadCertificate)
    		}
    		return errors.New("tls: client didn't provide a certificate")
    	}
    
    	if c.config.ClientAuth >= VerifyClientCertIfGiven && len(certs) > 0 {
    		opts := x509.VerifyOptions{
    			Roots:         c.config.ClientCAs,
    			CurrentTime:   c.config.time(),
    			Intermediates: x509.NewCertPool(),
    			KeyUsages:     []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
    		}
    
    		for _, cert := range certs[1:] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. cmd/sts-handlers.go

    		_, err := certificate.Verify(x509.VerifyOptions{
    			KeyUsages: []x509.ExtKeyUsage{
    				x509.ExtKeyUsageClientAuth,
    			},
    			Roots: globalRootCAs,
    		})
    		if err != nil {
    			writeSTSErrorResponse(ctx, w, ErrSTSInvalidClientCertificate, err)
    			return
    		}
    	} else {
    		// Technically, there is no security argument for verifying the key usage
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. src/runtime/chan.go

    	// Ensure the value being sent is kept alive until the
    	// receiver copies it out. The sudog has a pointer to the
    	// stack object, but sudogs aren't considered as roots of the
    	// stack tracer.
    	KeepAlive(ep)
    
    	// someone woke us up.
    	if mysg != gp.waiting {
    		throw("G waiting list is corrupted")
    	}
    	gp.waiting = nil
    	gp.activeStackChans = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	Service *ServiceReference `json:"service,omitempty" protobuf:"bytes,1,opt,name=service"`
    
    	// caBundle is a PEM encoded CA bundle which will be used to validate the webhook's server certificate.
    	// If unspecified, system trust roots on the apiserver are used.
    	// +optional
    	CABundle []byte `json:"caBundle,omitempty" protobuf:"bytes,2,opt,name=caBundle"`
    }
    
    // ServiceReference holds a reference to Service.legacy.k8s.io
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    		if _, ok := kept[cur]; ok {
    			g.Nodes = append(g.Nodes, cur)
    			continue
    		}
    
    		// If a node has no parents, then delete all of the in edges of its
    		// children to make them each roots of their own trees.
    		if len(cur.In) == 0 {
    			for _, outEdge := range cur.Out {
    				delete(outEdge.Dest.In, cur)
    			}
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. istioctl/cmd/root.go

    const (
    	FlagCharts = "charts"
    )
    
    // ConfigAndEnvProcessing uses spf13/viper for overriding CLI parameters
    func ConfigAndEnvProcessing() error {
    	configPath := filepath.Dir(root.IstioConfig)
    	baseName := filepath.Base(root.IstioConfig)
    	configType := filepath.Ext(root.IstioConfig)
    	configName := baseName[0 : len(baseName)-len(configType)]
    	if configType != "" {
    		configType = configType[1:]
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. cni/pkg/cmd/root.go

    John Howard <******@****.***> 1718209595 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/container_manager_linux.go

    	// allocatable of the node
    	cm.nodeInfo = node
    
    	if localStorageCapacityIsolation {
    		rootfs, err := cm.cadvisorInterface.RootFsInfo()
    		if err != nil {
    			return fmt.Errorf("failed to get rootfs info: %v", err)
    		}
    		for rName, rCap := range cadvisor.EphemeralStorageCapacityFromFsInfo(rootfs) {
    			cm.capacity[rName] = rCap
    		}
    	}
    
    	// Ensure that node allocatable configuration is valid.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    	tagRootLabelKeys := dropEmptyStrings(strings.Split(cfg.TagRoot, ","))
    	tagLeafLabelKeys := dropEmptyStrings(strings.Split(cfg.TagLeaf, ","))
    	rootm, leafm := addLabelNodes(prof, tagRootLabelKeys, tagLeafLabelKeys, cfg.Unit)
    	warnNoMatches(cfg.TagRoot == "" || rootm, "TagRoot", ui)
    	warnNoMatches(cfg.TagLeaf == "" || leafm, "TagLeaf", ui)
    }
    
    // dropEmptyStrings filters a slice to only non-empty strings
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top