Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 5,586 for provider3 (0.22 sec)

  1. pilot/pkg/security/authz/builder/extauthz.go

    	}
    
    	provider := providers[0]
    	ret, found := resolved[provider]
    	if !found {
    		var li []string
    		for p := range resolved {
    			li = append(li, p)
    		}
    		return nil, fmt.Errorf("available providers are %v but found %q", li, provider)
    	} else if ret.err != nil {
    		return nil, fmt.Errorf("found errors in provider %s: %v", provider, ret.err)
    	}
    
    	return ret, nil
    }
    
    func buildExtAuthzHTTP(push *model.PushContext,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

        /**
         * Creates a {@link Provider} whose value is fetched from the environment variable with the given name.
         *
         * @param variableName The provider for the name of the environment variable; when the given provider has no value, the returned provider has no value.
         * @return The provider. Never returns null.
         * @since 6.1
         */
        Provider<String> environmentVariable(Provider<String> variableName);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/types.go

    // each exec credential provider. Kubelet reads this configuration from disk and enables
    // each provider as specified by the CredentialProvider type.
    type CredentialProviderConfig struct {
    	metav1.TypeMeta
    
    	// providers is a list of credential provider plugins that will be enabled by the kubelet.
    	// Multiple providers may match against a single image, in which case credentials
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tutorial/systemProperties/kotlin/build.gradle.kts

    // tag::system-properties[]
    // Using the Java API
    println(System.getProperty("system"))
    
    // Using the Gradle API, provides a lazy Provider<String>
    println(providers.systemProperty("system").get())
    // end::system-properties[]
    
    abstract class PrintValue : DefaultTask() {
        @get:Input abstract val inputValue: Property<String>
        @TaskAction fun action() { println(inputValue.get()) }
    }
    
    // tag::system-properties-task-inputs[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 653 bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/connection/ProviderOperationParameters.java

        /**
         * @return When null, use the provider's default Java home.
         */
        @Nullable
        File getJavaHome();
    
        /**
         * @return When null, use the provider's default JVM arguments. When empty, use no JVM arguments.
         */
        @Nullable
        List<String> getJvmArguments();
    
        /**
         * @return When null, use the provider's default environment variables. When empty, use no environment variables.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:46:37 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/WithSideEffectProviderTest.groovy

            def provider = Providers.internal(parent.flatMap { Providers.of(it * 2).withSideEffect(sideEffect2) })
    
            when:
            provider.calculateValue(ValueSupplier.ValueConsumer.IgnoreUnsafeRead)
            provider.calculateExecutionTimeValue()
    
            then:
            0 * _ // no side effects when calculating wrapped values
    
            when:
            counter.set(23)
            def unpackedValue = provider.get()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 06:53:07 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultFileCollectionFactoryTest.groovy

    import org.gradle.api.internal.file.collections.MinimalFileSet
    import org.gradle.api.internal.provider.MissingValueException
    import org.gradle.api.internal.provider.PropertyHost
    import org.gradle.api.internal.provider.Providers
    import org.gradle.api.internal.tasks.TaskDependencyInternal
    import org.gradle.api.provider.Provider
    import org.gradle.api.tasks.util.PatternFilterable
    import org.gradle.api.tasks.util.PatternSet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/tutorial/environmentVariables/groovy/build.gradle

    // tag::configuration[]
    // Using the Java API
    println System.getenv('ENVIRONMENTAL')
    
    // Using the Gradle API, provides a lazy Provider<String>
    println providers.environmentVariable('ENVIRONMENTAL').get()
    // end::configuration[]
    
    abstract class PrintValue extends DefaultTask {
        @Input abstract Property<String> getInputValue()
        @TaskAction void action() { println(inputValue.get()) }
    }
    
    // tag::execution[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 627 bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinComposableProvider.kt

         * compared to the naive sequential composite provider. Not all providers might be mergeable, or there might be multiple separate sets
         * of providers that can be merged individually, so the resulting provider may be a composite provider.
         */
        public fun merge(providers: List<P>): P
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinCompositeProviderFactory.kt

        public fun createFlattened(providers: List<P>): P =
            create(if (providers.size > 1) flatten(providers) else providers)
    
        public fun flatten(providers: List<P>): List<P> =
            providers.flatMap { provider ->
                // `KotlinCompositeProvider<P>` should always be a provider of type `P` itself, so the cast is legal. Still, suppressing the
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top