Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 4,651 for provider3 (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    ----
    
    In this example, we configure the `greet` task `destination` property as a closure/provider, which is evaluated with
    the link:{groovyDslPath}/org.gradle.api.Project.html#org.gradle.api.Project:file(java.lang.Object)[Project.file(java.lang.Object)] method to turn the return value of the closure/provider into a `File` object at the last minute.
    Note that we specify the `greetingFile` property value _after_ the task configuration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. docs/sts/client-grants.md

    ## Introduction
    
    Returns a set of temporary security credentials for applications/clients who have been authenticated through client credential grants provided by identity provider. Example providers include KeyCloak, Okta etc.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/report/AmbiguousBindingReporter.java

        private static final Comparator<Provider> PROVIDER_COMPARATOR = new Comparator<Provider>() {
            @Override
            public int compare(Provider o1, Provider o2) {
                return o1.getPath().compareTo(o2.getPath());
            }
        };
    
        private final String referenceType;
        private final String referenceDescription;
        private final List<Provider> providers;
    
        public static class Provider {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/AggregateTestResultsProvider.java

    public class AggregateTestResultsProvider implements TestResultsProvider {
        private final Iterable<TestResultsProvider> providers;
        private Multimap<Long, DelegateProvider> classOutputProviders;
    
        public AggregateTestResultsProvider(Iterable<TestResultsProvider> providers) {
            this.providers = providers;
        }
    
        @Override
        public void visitClasses(final Action<? super TestClassResult> visitor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Instead, you can connect the `Provider` returned by link:{groovyDslPath}/org.gradle.api.provider.ProviderFactory.html#org.gradle.api.provider.ProviderFactory:systemProperty(java.lang.String)[providers.systemProperty()] or
    link:{groovyDslPath}/org.gradle.api.provider.ProviderFactory.html#org.gradle.api.provider.ProviderFactory:environmentVariable(java.lang.String)[providers.environmentVariable()] to task properties.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugins.go

    }
    
    // getPlugin creates an instance of the named plugin.  It returns `false` if
    // the name is not known. The error is returned only when the named provider was
    // known but failed to initialize.  The config parameter specifies the io.Reader
    // handler of the configuration file for the cloud provider, or nil for no configuration.
    func (ps *Plugins) getPlugin(name string, config io.Reader) (Interface, bool, error) {
    	ps.lock.Lock()
    	defer ps.lock.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    		"The file containing configuration for encryption providers to be used for storing secrets in etcd")
    
    	fs.BoolVar(&s.EncryptionProviderConfigAutomaticReload, "encryption-provider-config-automatic-reload", s.EncryptionProviderConfigAutomaticReload,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/etcd_test.go

    			wantReadyzChecks:     []string{"etcd", "kms-provider-0", "kms-provider-1", "etcd-readiness"},
    			wantLivezChecks:      []string{"etcd"},
    		},
    		{
    			name:                 "two kms-providers+reload, expect single kms healthz check, no kms livez check",
    			encryptionConfigPath: "testdata/encryption-configs/multiple-kms-providers.yaml",
    			reload:               true,
    			wantHealthzChecks:    []string{"etcd", "kms-providers"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	for _, testCase := range testCases {
    		t.Run(testCase.name, func(t *testing.T) {
    			cacheSize := int32(1000)
    			for _, resource := range testCase.config.Resources {
    				for _, provider := range resource.Providers {
    					if provider.KMS != nil {
    						provider.KMS.CacheSize = &cacheSize
    					}
    				}
    			}
    
    			ctx, cancel := context.WithCancel(context.Background())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise-plugin-performance/build.gradle.kts

        val projectRootDir = project.rootDir
        val pluginInfoDir = project.providers.gradleProperty("enterprisePluginInfoDir")
            .orElse(projectRootDir.resolve("incoming").path)
            .map { projectRootDir.resolve(it) }
    
        // Provides a system property required by `AbstractBuildScanPluginPerformanceTest`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top