Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 77 for Roots (0.23 sec)

  1. src/cmd/link/internal/ld/deadcode.go

    		d.mark(d.ldr.Lookup(name, 0), 0)
    		if abiInternalVer != 0 {
    			// Also mark any Go functions (internal ABI).
    			d.mark(d.ldr.Lookup(name, abiInternalVer), 0)
    		}
    	}
    
    	// All dynamic exports are roots.
    	for _, s := range d.ctxt.dynexp {
    		if d.ctxt.Debugvlog > 1 {
    			d.ctxt.Logf("deadcode start dynexp: %s<%d>\n", d.ldr.SymName(s), d.ldr.SymVersion(s))
    		}
    		d.mark(s, 0)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

          // Skip users in other blocks.
          if (user->getBlock() != op->getBlock()) continue;
    
          // Skip users is in the `dst_root` or `src_root` clusters, if we'll merge
          // roots they'll become a single cluster and will not violate the
          // dominance property after that.
          auto it = member_ids.find(user);
          if (it != member_ids.end() && (FindRoot(it->getSecond()) == dst_root ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

            where:
            method | path
            "dir"  | "output-file.txt"
            "dirs" | "output-file.txt"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/15679")
        def "fileTrees with regular file roots cannot be used as output files"() {
            enableProblemsApiCheck()
            expectReindentedValidationMessage()
            buildScript """
                task myTask {
                    inputs.file file('input.txt')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_client_test.go

    	if err != nil {
    		t.Fatalf("failed to parse test issuer")
    	}
    	roots := x509.NewCertPool()
    	roots.AddCert(issuer)
    	clientConfig := &Config{
    		MaxVersion:         ver,
    		ClientSessionCache: NewLRUClientSessionCache(32),
    		ServerName:         "example.golang",
    		RootCAs:            roots,
    	}
    	serverConfig := testConfig.Clone()
    	serverConfig.MaxVersion = ver
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  5. 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)
  6. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    	rootPool.AddCert(root)
    
    	intermediatePool := x509.NewCertPool()
    	for _, c := range intermediates {
    		intermediatePool.AddCert(c)
    	}
    
    	verifyOptions := x509.VerifyOptions{
    		Roots:         rootPool,
    		Intermediates: intermediatePool,
    		KeyUsages:     []x509.ExtKeyUsage{x509.ExtKeyUsageAny},
    	}
    
    	if _, err := cert.Verify(verifyOptions); err != nil {
    		return err
    	}
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. 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)
  8. src/runtime/mgc.go

    // gcphase == _GCmark.
    var gcBlackenEnabled uint32
    
    const (
    	_GCoff             = iota // GC not running; sweeping in background, write barrier disabled
    	_GCmark                   // GC marking roots and workbufs: allocate black, write barrier ENABLED
    	_GCmarktermination        // GC mark termination: allocate black, P's help GC, write barrier ENABLED
    )
    
    //go:nosplit
    func setGCPhase(x uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top