Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 135 for roots (0.04 sec)

  1. pkg/spiffe/spiffe.go

    		return err
    	}
    	rootCertPool, ok := v.certPools[trustDomain]
    	if !ok {
    		return fmt.Errorf("no cert pool found for trust domain %s", trustDomain)
    	}
    
    	_, err = peerCert.Verify(x509.VerifyOptions{
    		Roots:         rootCertPool,
    		Intermediates: intCertPool,
    	})
    	return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    `cppCompile__Variant__` (e.g. `cppCompileDebug` and `cppCompileRelease`) extends `main__Variant__Implementation`::
    Used for compiling the application.
    This configuration contains the compile include roots of the application and is therefore used when invoking the {cpp} compiler to compile it.
    
    `nativeLink__Variant__` (e.g. `nativeLinkDebug` and `nativeLinkRelease`) extends `main__Variant__Implementation`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractSourceIncrementalCompilationIntegrationTest.groovy

            where:
            type            | method
            "File"          | "file"
            "DirectoryTree" | "fileTree"
        }
    
        def "missing files are ignored as source roots"() {
            buildFile << """
                ${language.compileTaskName} {
                    source([
                        fileTree('missing-tree'),
                        file('missing-file')
                    ])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/modfile.go

    		// Calling rawGoModSummary implies that we are treating m as a module whose
    		// requirements aren't the roots of the module graph and can't be modified.
    		//
    		// If we are not in workspace mode, then the requirements of the main module
    		// are the roots of the module graph and we expect them to be kept consistent.
    		panic("internal error: rawGoModSummary called on a main module")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  5. src/math/big/prime.go

    	//
    	//	V(0) = 2
    	//	V(1) = P
    	//	V(k) = P V(k-1) - Q V(k-2).
    	//
    	// (Remember that due to method C above, P = b, Q = 1.)
    	//
    	// In general V(k) = α^k + β^k, where α and β are roots of x² - Px + Q.
    	// Crandall and Pomerance (p.147) observe that for 0 ≤ j ≤ k,
    	//
    	//	V(j+k) = V(j)V(k) - V(k-j).
    	//
    	// So in particular, to quickly double the subscript:
    	//
    	//	V(2k) = V(k)² - 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  6. src/runtime/preempt.go

    //    for a preemption request.
    //
    // 3. Asynchronous safe-points occur at any instruction in user code
    //    where the goroutine can be safely paused and a conservative
    //    stack and register scan can find stack roots. The runtime can
    //    stop a goroutine at an async safe-point using a signal.
    //
    // At both blocked and synchronous safe-points, a goroutine's CPU
    // state is minimal and the garbage collector has complete information
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. src/crypto/tls/boring_test.go

    	if runtime.GOOS == "nacl" || runtime.GOARCH == "arm" || runtime.GOOS == "js" {
    		t.Skipf("skipping on %s/%s because key generation takes too long", runtime.GOOS, runtime.GOARCH)
    	}
    
    	// Set up some roots, intermediate CAs, and leaf certs with various algorithms.
    	// X_Y is X signed by Y.
    	R1 := boringCert(t, "R1", boringRSAKey(t, 2048), nil, boringCertCA|boringCertFIPSOK)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. src/cmd/doc/main.go

    		}
    		if d.importPath == pkg || strings.HasSuffix(d.importPath, pkgSuffix) {
    			return d.dir, true
    		}
    	}
    }
    
    var buildCtx = build.Default
    
    // splitGopath splits $GOPATH into a list of roots.
    func splitGopath() []string {
    	return filepath.SplitList(buildCtx.GOPATH)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client.go

    			if err := c.config.EncryptedClientHelloRejectionVerify(c.connectionStateLocked()); err != nil {
    				c.sendAlert(alertBadCertificate)
    				return err
    			}
    		} else {
    			opts := x509.VerifyOptions{
    				Roots:         c.config.RootCAs,
    				CurrentTime:   c.config.time(),
    				DNSName:       c.serverName,
    				Intermediates: x509.NewCertPool(),
    			}
    
    			for _, cert := range certs[1:] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/list/list.go

            Goroot         bool     // is this package in the Go root?
            Standard       bool     // is this package part of the standard Go library?
            Stale          bool     // would 'go install' do anything for this package?
            StaleReason    string   // explanation for Stale==true
            Root           string   // Go root or Go path dir containing this package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top