Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 210 for b0Bundle (0.26 sec)

  1. pilot/pkg/security/authz/model/model.go

    	}
    
    	return &m, nil
    }
    
    // MigrateTrustDomain replaces the trust domain in source principal based on the trust domain aliases information.
    func (m *Model) MigrateTrustDomain(tdBundle trustdomain.Bundle) {
    	for _, p := range m.principals {
    		for _, r := range p.rules {
    			if r.key == attrSrcPrincipal {
    				if len(r.values) != 0 {
    					r.values = tdBundle.ReplaceTrustDomainAliases(r.values)
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/options/options.go

    	EnableLogsHandler        bool
    	EventTTL                 time.Duration
    	MaxConnectionBytesPerSec int64
    
    	ProxyClientCertFile string
    	ProxyClientKeyFile  string
    
    	// PeerCAFile is the ca bundle used by this kube-apiserver to verify peer apiservers'
    	// serving certs when routing a request to the peer in the case the request can not be served
    	// locally due to version skew.
    	PeerCAFile string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    The following steps are typical for creating a custom Gradle distribution:
    
    1. Implement logic for downloading and repackaging a Gradle distribution.
    2. Define one or many initialization scripts with the desired logic.
    3. Bundle the initialization scripts with the Gradle distribution.
    4. Upload the Gradle distribution archive to a HTTP server.
    5. Change the Wrapper files of all projects to point to the URL of the custom Gradle distribution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    2. The *subproject* is called *app* and is defined with `include("app")` in the `settings.gradle` file.
    
    The root project can be in the top-level directory or have its own directory.
    
    A build:
    
    - Represents a bundle of related software that you can build, test, and/or release together.
    - Can optionally include other builds (i.e. additional software such as libraries, plugins, build-time tools, etc).
    
    A project:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/feature_variants.adoc

    - the configuration `mongodbSupportRuntimeElements`, used by consumers to fetch the artifacts and runtime dependencies of this feature
    
    A feature should have a _source set_ with the same name.
    Gradle will create a `Jar` task to bundle the classes built from the feature source set, using a classifier corresponding to the kebab-case name of the feature.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    ----
    
    It is a common practice to implement any custom build logic (like plugins and task types) that is more complex in nature as external classes in a standalone project. The main driver behind this approach is bundle the compiled code into a JAR file, publish it to a binary repository and reuse it across various projects.
    
    [[sub:test-kit-classpath-injection]]
    == Getting the plugin-under-test into the test build
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. pkg/scheduler/apis/config/types.go

    	// KeyData takes precedence over KeyFile
    	KeyData []byte `datapolicy:"security-key"`
    	// CAData holds PEM-encoded bytes (typically read from a root certificates bundle).
    	// CAData takes precedence over CAFile
    	CAData []byte
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/types.go

    type KubeletX509Authentication struct {
    	// clientCAFile is the path to a PEM-encoded certificate bundle. If set, any request presenting a client certificate
    	// signed by one of the authorities in the bundle is authenticated with a username corresponding to the CommonName,
    	// and groups corresponding to the Organization in the client certificate.
    	ClientCAFile string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. security/pkg/pki/ca/ca.go

    		return nil, fmt.Errorf("failed to create CA KeyCertBundle (%v)", err)
    	}
    
    	// Validate that the passed in signing cert can be used as CA.
    	// The check can't be done inside `KeyCertBundle`, since bundle could also be used to
    	// validate workload certificates (i.e., where the leaf certificate is not a CA).
    	b, err := os.ReadFile(fileBundle.SigningCertFile)
    	if err != nil {
    		return nil, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    * You cannot add version catalog bundles directly.
    Instead, use the `bundle` method on each configuration.
    ** Kotlin and Groovy: `implementation(libs.bundles.testing)` becomes `implementation.bundle(libs.bundles.testing)`
    * You cannot use providers for non-`Dependency` types directly.
    Instead, map them to a `Dependency` using the `DependencyFactory`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top