Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 470 for setters (0.26 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Managed.java

     * <p>
     * Managed types declare their structure as properties, via getter and setter methods.
     * Getter and setter methods are expected to conform to the well-known Java Bean naming conventions.
     * A read/write “name” property would be expressed via the following methods:
     * <pre>
     * void setName(String name);
     * String getName();
     * </pre>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/action/BuildActionSerializerTest.groovy

            result instanceof ExecuteBuildAction
            result.startParameter."${buildOptionName}" == expectedValue
    
            where:
            // Check all mutable boolean properties (must manually check for setters as many of them return StartParameter)
            buildOptionName << Introspector.getBeanInfo(StartParameterInternal).propertyDescriptors
                .findAll { it.propertyType == boolean }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/PropertyAccessorTypeTest.groovy

            when:
            // Exercise setters
            bean.url = 'lower-case'
            bean.URL = 'upper-case'
            bean.cCompiler = 'lower-case first char'
            bean.CCompiler = 'upper-case first char'
            bean.cppCompiler = 'cppCompiler'
            bean.CPPCompiler = 'CPPCompiler'
            bean.a = 'some a'
            bean.b = 'some b'
    
            then:
            // Exercise getters
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStore.java

                // Do we have an 'is'-getter as well as a 'get'-getter?
                if (previouslySeenBuilder != null) {
                    // It is okay to have redundant generated 'is'-getters
                    if (generatedMethodDetector.test(metadataBuilder.getter)) {
                        continue;
                    }
                    // The 'is'-getter is ignored, we can skip it in favor of the 'get'-getter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  5. pkg/controller/garbagecollector/graph.go

    // nodes. The multi-threaded GarbageCollector.attemptToDeleteItem() reads the nodes.
    // WARNING: node has different locks on different fields. setters and getters
    // use the respective locks, so the return values of the getters can be
    // inconsistent.
    type node struct {
    	identity objectReference
    	// dependents will be read by the orphan() routine, we need to protect it with a lock.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 13:37:56 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/utils/lstm_utils.h

    // projection, bias and layer norm scale. The weight, projection, bias and
    // layer norm scale all need to be RankedTensorType.
    // This class overrides the layer norm coefficient setters from the base class.
    class ConvertLayerNormalizedLSTMCellSimpleToFusedLSTM
        : public ConvertLSTMCellSimpleToFusedLSTM {
     public:
      explicit ConvertLayerNormalizedLSTMCellSimpleToFusedLSTM(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultMetadataProvider.java

         * to the complete type ({@link ComponentMetadata}) which provides more than what we want to expose in those
         * rules. In particular, the builder exposes setters, that we don't want on the component metadata type.
         */
        private static class SimpleComponentMetadataBuilder implements ComponentMetadataBuilder {
            private final ModuleVersionIdentifier id;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenSessionBuilderSupplier.java

         * Maven-based resolution. In more detail, this method configures settings relevant for the processing of dependency
         * graphs, most other settings remain at their generic default value. Use the various setters to further configure
         * the session with authentication, mirror, proxy and other information required for your environment. At least,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/MavenSessionBuilderSupplier.java

         * Maven-based resolution. In more detail, this method configures settings relevant for the processing of dependency
         * graphs, most other settings remain at their generic default value. Use the various setters to further configure
         * the session with authentication, mirror, proxy and other information required for your environment. At least,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/binding/DefaultStructBindingsStoreTest.groovy

        }
    
        def "fails when abstract property has only setter"() {
            when:
            extract(TypeWithAbstractWriteOnlyProperty)
            then:
            def ex = thrown InvalidManagedTypeException
            ex.message == """Type ${fullyQualifiedNameOf(TypeWithAbstractWriteOnlyProperty)} is not a valid managed type:
    - Property 'z' is not valid: it must both have an abstract getter and a setter"""
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
Back to top