Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 115 for chain (0.07 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    === Other deprecations
    
     * You should no longer run Gradle versions older than 2.6 via the Tooling API.
     * You should no longer run any version of Gradle via an older version of the Tooling API than 3.0.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            assertTasksReady(finalizerDepBC, finalizerA)
            assertTasksReadyAndNoMoreToStart(finalizerB, finalizerC)
            assertAllWorkComplete()
        }
    
        def "dependency of finalizers in chain of finalizers are deferred"() {
            given:
            TaskInternal finalizerA = createTask("finalizerA", project, Async)
            TaskInternal finalizerB = createTask("finalizerB", project, Async)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  3. src/crypto/x509/x509.go

    //
    // It allows parsing and generating certificates, certificate signing
    // requests, certificate revocation lists, and encoded public and private keys.
    // It provides a certificate verifier, complete with a chain builder.
    //
    // The package targets the X.509 technical profile defined by the IETF (RFC
    // 2459/3280/5280), and as further restricted by the CA/Browser Forum Baseline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	CertFreeCertificateContext(ctx *CertContext) (err error) = crypt32.CertFreeCertificateContext
    //sys	CertVerifyCertificateChainPolicy(policyOID uintptr, chain *CertChainContext, para *CertChainPolicyPara, status *CertChainPolicyStatus) (err error) = crypt32.CertVerifyCertificateChainPolicy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // DER encoded X.509 certificates signed by keys in another keyring. Restrictions
    // for "asymmetric" include "builtin_trusted", "builtin_and_secondary_trusted",
    // "key_or_keyring:<key>", and "key_or_keyring:<key>:chain".
    //
    // As of Linux 4.12, only the "asymmetric" keyType defines type-specific
    // restrictions.
    //
    // See the full documentation at:
    // http://man7.org/linux/man-pages/man3/keyctl_restrict_keyring.3.html
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    // for use in error messages. When it completes, packages that
    // are part of the original root set have pkg.stack == nil,
    // and other packages have pkg.stack pointing at the next
    // package up the import stack in their minimal chain.
    // As a side effect, buildStacks also constructs ld.pkgs,
    // the list of all packages loaded.
    func (ld *loader) buildStacks() {
    	if len(ld.pkgs) > 0 {
    		panic("buildStacks")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    		return false
    	}
    	if f := dt.Field[0]; f.Name != "unused" || f.Type.Common().Name != "int" {
    		return false
    	}
    	return true
    }
    
    // baseBadPointerTypedef reports whether the base of a chain of typedefs is a bad typedef
    // as badPointerTypedef reports.
    func (c *typeConv) baseBadPointerTypedef(dt *dwarf.TypedefType) bool {
    	for {
    		if t, ok := dt.Type.(*dwarf.TypedefType); ok {
    			dt = t
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof_test.go

    	}
    }
    
    func func1(c chan int) { <-c }
    func func2(c chan int) { <-c }
    func func3(c chan int) { <-c }
    func func4(c chan int) { <-c }
    
    func TestGoroutineCounts(t *testing.T) {
    	// Setting GOMAXPROCS to 1 ensures we can force all goroutines to the
    	// desired blocking point.
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(1))
    
    	c := make(chan int)
    	for i := 0; i < 100; i++ {
    		switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  9. pkg/controller/replicaset/replica_set_test.go

    	fakePodControl := controller.FakePodControl{}
    	stopCh := make(chan struct{})
    	defer close(stopCh)
    	manager, informers := testNewReplicaSetControllerFromClient(t, client, stopCh, BurstReplicas)
    	manager.podControl = &fakePodControl
    
    	received := make(chan string)
    	manager.syncHandler = func(ctx context.Context, key string) error {
    		received <- key
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  10. plugin/pkg/admission/resourcequota/admission_test.go

    	return createHandlerWithConfig(kubeClient, informerFactory, nil, stopCh)
    }
    
    func createHandlerWithConfig(kubeClient kubernetes.Interface, informerFactory informers.SharedInformerFactory, config *resourcequotaapi.Configuration, stopCh chan struct{}) (*resourcequota.QuotaAdmission, error) {
    	if config == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
Back to top