Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,457 for providedBy (0.18 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionIntegrationTest.groovy

            'boolean'        | ['--myProp']                         | 'true'              | 'provided'
            'boolean'        | []                                   | 'false'             | 'not provided'
            'Double'         | ['--myProp=123']                     | '123'               | 'provided'
            'Double'         | ['--myProp=12.3']                    | '12.3'              | 'provided'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenScopesIntegrationTest.groovy

                .dependsOn(notRequired, scope: 'provided')
                .publish()
            def m6 = mavenRepo.module('test', 'test6', '1.0')
                .dependsOn(m3, scope: 'compile')
                .dependsOn(m4, scope: 'runtime')
                .dependsOn(notRequired, scope: 'test')
                .dependsOn(notRequired, scope: 'provided')
                .publish()
            mavenRepo.module('test', 'target', '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go

    	// EncoderForVersion returns an encoder that ensures objects being written to the provided
    	// serializer are in the provided group version.
    	EncoderForVersion(serializer Encoder, gv GroupVersioner) Encoder
    	// DecoderToVersion returns a decoder that ensures objects being read by the provided
    	// serializer are in the provided group version by default.
    	DecoderToVersion(serializer Decoder, gv GroupVersioner) Decoder
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 19K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/protobuf/protobuf.go

    const serializerIdentifier runtime.Identifier = "protobuf"
    
    // Decode attempts to convert the provided data into a protobuf message, extract the stored schema kind, apply the provided default
    // gvk, and then load that data into an object matching the desired schema kind or the provided into. If into is *runtime.Unknown,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 13:38:23 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/codec.go

    	target             schema.GroupVersion
    	acceptedGroupKinds []schema.GroupKind
    	coerce             bool
    }
    
    // NewMultiGroupVersioner returns the provided group version for any kind that matches one of the provided group kinds.
    // Kind may be empty in the provided group kind, in which case any kind will match.
    func NewMultiGroupVersioner(gv schema.GroupVersion, groupKinds ...schema.GroupKind) GroupVersioner {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 03:20:30 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionCandidateAssessor.java

                this.attribute = attribute;
                this.requested = requested;
                this.provided = provided;
            }
    
            public Attribute<T> getAttribute() {
                return attribute;
            }
    
            @Nullable
            public T getRequested() {
                return requested;
            }
    
            @Nullable
            public T getProvided() {
                return provided;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesUseCasesIntegrationTest.groovy

                    root(":", ":test:") {
                        module('cglib:cglib:3.2.5').selectedByRule('capability cglib is provided by cglib:cglib and cglib:cglib-nodep')
                        edge('cglib:cglib-nodep:3.2.5', 'cglib:cglib:3.2.5').selectedByRule('capability cglib is provided by cglib:cglib and cglib:cglib-nodep')
                    }
                }
            } else {
                def variant = 'runtime'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. LICENSE

    modification, are permitted provided that the following conditions are met:
    
    Redistributions of source code must retain the above copyright notice, this list of
    conditions and the following disclaimer. Redistributions in binary form must reproduce
    the above copyright notice, this list of conditions and the following disclaimer in
    the documentation and/or other materials provided with the distribution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. src/sync/atomic/doc.go

    // AndInt32 atomically performs a bitwise AND operation on *addr using the bitmask provided as mask
    // and returns the old value.
    // Consider using the more ergonomic and less error-prone [Int32.And] instead.
    func AndInt32(addr *int32, mask int32) (old int32)
    
    // AndUint32 atomically performs a bitwise AND operation on *addr using the bitmask provided as mask
    // and returns the old value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/DefaultResourceLockCoordinationService.java

        }
    
        /**
         * Attempts an atomic, blocking lock on the provided resource locks.
         */
        public static InternalTransformer<ResourceLockState.Disposition, ResourceLockState> lock(Iterable<? extends ResourceLock> resourceLocks) {
            return new AcquireLocks(resourceLocks, true);
        }
    
        /**
         * Attempts an atomic, blocking lock on the provided resource locks.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 17:16:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top