Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 304 for setValues (0.24 sec)

  1. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/internal/FileJavadocOptionFileOptionTest.groovy

            then:
            0 * writerContextMock._
        }
    
        def testWriteNonNullValue() throws IOException {
            final File testValue = new File("dummyTestFileValue")
            fileOption.setValue(testValue)
    
            when:
            fileOption.write(writerContextMock)
    
            then:
            1 * writerContextMock.writeValueOption(optionName, testValue.absolutePath)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomAttributePointer.java

        }
    
        @Override
        public boolean isCollection() {
            return false;
        }
    
        @Override
        public boolean isLeaf() {
            return true;
        }
    
        @Override
        public void setValue(Object value) {
            throw new UnsupportedOperationException();
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/rules/JacocoLimitImpl.java

        @Override
        public void setCounter(String counter) {
            this.counter = counter;
        }
    
        @Override
        public String getValue() {
            return value;
        }
    
        @Override
        public void setValue(String value) {
            this.value = value;
        }
    
        @Override
        public BigDecimal getMinimum() {
            return minimum;
        }
    
        @Override
        public void setMinimum(BigDecimal minimum) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

        }
    
        public static class WithInvalidSomeOptionMethod {
            @OptionValues("someOption")
            List<String> getValues(String someParam) { return Arrays.asList("something") }
        }
    
        public static class WithDuplicateSomeOptions {
            @OptionValues("someOption")
            List<String> getValues() { return Arrays.asList("something") }
    
            @OptionValues("someOption")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 33.4K bytes
    - Viewed (0)
  5. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/AbstractOptions.java

            }
        }
    
        private void setProperty(String property, Object value) {
            JavaPropertyReflectionUtil.writeableProperty(getClass(), property, value == null ? null : value.getClass()).setValue(this, value);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/DefaultBuildControllerTest.groovy

            def parameter = new CustomParameter() {
                @Override
                String getValue() {
                    return "myValue"
                }
    
                @Override
                void setValue(String value) {}
            }
    
            given:
            _ * workerThreadRegistry.workerThread >> true
            _ * modelController.locateBuilderForDefaultTarget("some.model", true) >> modelScope
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:30 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // Get iterators to the tensors.
      const auto input_values_it = input_tensor.getValues<float>().begin();
      const auto weights_values_ptr = weights_tensor.getValues<float>().begin();
      auto weights_row_it = weights_values_ptr;
      // The 'else' case could be nullptr, but the types don't match.
      auto bias_values_it =
          has_bias ? bias_tensor.getValues<float>().begin() : input_values_it;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PropertyDelegate.kt

    }
    
    
    /**
     * Provides efficient access to a mutable dynamic property.
     */
    interface MutablePropertyDelegate : PropertyDelegate {
        operator fun <T> setValue(receiver: Any?, property: KProperty<*>, value: T)
    }
    
    
    internal
    fun propertyDelegateFor(dynamicLookupRoutine: DynamicLookupRoutine, target: Any, property: KProperty<*>): PropertyDelegate =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

                javadoc {
                    options {
                        addMultilineStringsOption("addMultilineStringsOption").setValue([
                            "a",
                            "b",
                            "c"
                        ])
                        addStringsOption("addStringsOption", " ").setValue([
                            "a",
                            "b",
                            "c"
                        ])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/credentials/CredentialsToStringSpec.groovy

            def credentials = new DefaultHttpHeaderCredentials()
            credentials.setName(UUID.randomUUID().toString())
            credentials.setValue(secretValue)
            return credentials
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top