Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 86 for Roots (0.14 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    		return nil, fmt.Errorf("oidc: Client and CAContentProvider are mutually exclusive")
    	}
    
    	client := opts.Client
    
    	if client == nil {
    		var roots *x509.CertPool
    		var err error
    		if opts.CAContentProvider != nil {
    			// TODO(enj): make this reload CA data dynamically
    			roots, err = certutil.NewPoolFromBytes(opts.CAContentProvider.CurrentCABundleContent())
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    `cppCompileTest__Variant__` (e.g. `cppCompileTest`) extends `test__Variant__ExecutableImplementation`::
    Used for compiling the unit test.
    This configuration contains the compile include roots of the unit test and is therefore used when invoking the {cpp} compiler to compile it.
    
    `nativeLinkTest__Variant__` (e.g. `nativeLinkTest`) extends `test__Variant__ExecutableImplementation`::
    Used for linking the unit test.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	// Must be absent/empty if TCPTransport.URL is prefixed with http://
    	// If absent while TCPTransport.URL is prefixed with https://, default to system trust roots.
    	// +optional
    	CABundle string
    
    	// clientKey is the file location of the client key to authenticate with the konnectivity server
    	// Must be absent/empty if TCPTransport.URL is prefixed with http://
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/swift_application_plugin.adoc

    `swiftCompile__Variant__` (e.g. `swiftCompileDebug` and `swiftCompileRelease`) 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 Swift 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.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/go.go

    				nerrors++
    				return
    			}
    
    			// Mark exported symbols and also add them to
    			// the lists used for roots in the deadcode pass.
    			if f[0] == "cgo_export_static" {
    				if ctxt.LinkMode == LinkExternal && !l.AttrCgoExportStatic(s) {
    					// Static cgo exports appear
    					// in the exported symbol table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top