Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,457 for providedBy (0.31 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainer.go

    }
    
    // WithCommand adds the given value to the Command field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the Command field.
    func (b *EphemeralContainerApplyConfiguration) WithCommand(values ...string) *EphemeralContainerApplyConfiguration {
    	for i := range values {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podspec.go

    }
    
    // WithVolumes adds the given value to the Volumes field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the Volumes field.
    func (b *PodSpecApplyConfiguration) WithVolumes(values ...*VolumeApplyConfiguration) *PodSpecApplyConfiguration {
    	for i := range values {
    		if values[i] == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 19:22:42 UTC 2022
    - 23.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/DependencyInjectingInstantiatorTest.groovy

            result instanceof HasDefaultConstructor
        }
    
        def "injects provided parameters into constructor"() {
            when:
            def result = instantiator.newInstance(HasInjectConstructor, "string", 12)
    
            then:
            result.param1 == "string"
            result.param2 == 12
        }
    
        def "injects missing parameters from provided service registry"() {
            given:
            services.find(String) >> "string"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 04:41:06 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. fastapi/security/http.py

                    """
                ),
            ] = None,
            auto_error: Annotated[
                bool,
                Doc(
                    """
                    By default, if the HTTP Basic authentication is not provided (a
                    header), `HTTPBasic` will automatically cancel the request and send the
                    client an error.
    
                    If `auto_error` is set to `False`, when the HTTP Basic authentication
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 15:29:38 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    // performing (init or join) and by the configuration options you are going to use (defaults or advanced customization).
    //
    // If some configuration types are not provided, or provided only partially, kubeadm will use default values; defaults
    // provided by kubeadm includes also enforcing consistency of values across components when required (e.g.
    // cluster-cidr flag on controller manager and clusterCIDR on kube-proxy).
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper.go

    	return lhsIndex < rhsIndex
    }
    
    // RESTMapping returns a struct representing the resource path and conversion interfaces a
    // RESTClient should use to operate on the provided group/kind in order of versions. If a version search
    // order is not provided, the search order provided to DefaultRESTMapper will be used to resolve which
    // version should be used to access the named group/kind.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 01:55:47 UTC 2021
    - 16.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509.go

    // VerifyOptions, and converts valid certificate chains into user.Info using the provided UserConversion
    func New(opts x509.VerifyOptions, user UserConversion) *Authenticator {
    	return NewDynamic(StaticVerifierFn(opts), user)
    }
    
    // NewDynamic returns a request.Authenticator that verifies client certificates using the provided
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 01:31:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainercommon.go

    }
    
    // WithCommand adds the given value to the Command field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the Command field.
    func (b *EphemeralContainerCommonApplyConfiguration) WithCommand(values ...string) *EphemeralContainerCommonApplyConfiguration {
    	for i := range values {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionConstraintsFeatureInteractionIntegrationTest.groovy

                        module('org:foo:1.0') {
                            module('org:baz:2.0')
                        }
                    }
                }
            }
        }
    
        def "an ancestor provided versions is not a version conflict"() {
            given:
            repository {
                'org:foo:1.0'()
                'org:foo:2.0'()
                'org:bar:1.0' {
                    dependsOn 'org:foo:2.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/PublishedCapabilitiesIntegrationTest.groovy

       Cannot select module with conflict on capability 'cglib:cglib:3.2.5' also provided by [cglib:cglib:3.2.5(runtime)]""")
            failure.assertHasCause("""Module 'cglib:cglib' has been rejected:
       Cannot select module with conflict on capability 'cglib:cglib:3.2.5' also provided by [cglib:cglib-nodep:3.2.5(runtime)]""")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top