Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 167 for setAttr (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    To fix this problem, you must remove the annotation, create a getter for the property you want to use and annotate the getter instead.
    
    [[mutable_type_with_setter]]
    == Mutable type with setter
    
    This error indicates that a property of "mutable" type is also providing a setter.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalInputsIntegrationTest.groovy

                    }
                }
    
                task copy(type: MyCopy) {
                    inputDirectory = file("input")
                    nonIncrementalInput = file("nonIncremental.txt")
                    outputDirectory.${setter}(file("build/output"))
                }
            """
            def inputFilePath = "in/some/input.txt"
            def nonIncrementalInput = file("nonIncremental.txt")
            nonIncrementalInput.text = "original"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 12:52:29 UTC 2022
    - 27.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/JavaPropertyReflectionUtil.java

            PropertyMutator mutator = writeablePropertyIfExists(target, property, valueType);
            if (mutator != null) {
                return mutator;
            }
            throw new NoSuchPropertyException(String.format("Could not find setter method for property '%s' %s on class %s.",
                property, valueType == null ? "accepting null value" : "of type " + valueType.getSimpleName(), target.getSimpleName()));
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

                invalidPropertyNames.add(propertyName);
            } else {
                propDesc.setReadMethod(readMethod);
            }
        }
    
        /**
         * setterメソッドを準備します。
         *
         * @param writeMethod
         *            setterメソッド
         * @param propertyName
         *            プロパティ名
         */
        protected void setupWriteMethod(final Method writeMethod, final String propertyName) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        if (isWindows()) {
          return; // TODO: b/136041958 - Running very slowly on Windows CI.
        }
        final CyclicBarrier barrier =
            new CyclicBarrier(
                6 // for the setter threads
                    + 50 // for the listeners
                    + 50 // for the blocking get threads,
                    + 1); // for the main thread
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

            }
            testNg.addListener((Object) adaptListener(new TestNGTestResultProcessorAdapter(resultProcessor, idGenerator, clock)));
            testNg.run();
        }
    
        /**
         * The setter for {@code configFailurePolicy} has a different signature depending on TestNG version.
         * This method uses reflection to detect the API and calls the version with the correct signature.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_launch_util.h

      void FillAllocationDescription(AllocationDescription* proto) const override {
        proto->set_requested_bytes(static_cast<int64_t>(expected_size_));
        proto->set_allocator_name(allocator_->Name());
        proto->set_ptr(reinterpret_cast<uintptr_t>(data()));
        if (allocator_->TracksAllocationSizes()) {
          auto ab = static_cast<int64_t>(allocator_->AllocatedSize(data()));
          proto->set_allocated_bytes(ab);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtVariableLikeSymbol.kt

        KaSymbolWithKind {
    
        public abstract val hasGetter: Boolean
        public abstract val hasSetter: Boolean
    
        public abstract val getter: KaPropertyGetterSymbol?
        public abstract val setter: KaPropertySetterSymbol?
        public abstract val backingFieldSymbol: KaBackingFieldSymbol?
    
        public abstract val hasBackingField: Boolean
    
        public abstract val isDelegatedProperty: Boolean
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publication/DefaultIvyPublicationTest.groovy

            }
    
            then:
            publication.artifacts == [ivyArtifact] as Set
            publication.publishableArtifacts.files.files == [ivyDescriptorFile, artifactFile] as Set
        }
    
        def "can use setter to replace existing artifacts set on configuration"() {
            given:
            def publication = createPublication()
            def ivyArtifact1 = createArtifact()
            def ivyArtifact2 = createArtifact()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

                        is KaConstructorSymbol -> "<constructor>"
                        is KaPropertyGetterSymbol -> callableId ?: "<getter>"
                        is KaPropertySetterSymbol -> callableId ?: "<setter>"
                        is KaAnonymousFunctionSymbol -> "<anonymous function>"
                        else -> error("unexpected symbol kind in KaCall: ${this@with::class}")
                    }
                )
                append("(")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top