Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 304 for setValues (0.18 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r44/CustomParameter.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r44;
    
    public interface CustomParameter {
    
        void setValue(String str);
    
        String getValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 754 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/reduce.h

        // Check that the iota init is zero.
        DenseElementsAttr iota_init;
        if (!matchPattern(reduce_op.getInitValues().back(), m_Constant(&iota_init)))
          return failure();
        if (iota_init.getValues<APInt>()[0] != 0) return failure();
    
        // Verify that the second argument is an Iota op along the same dimension
        // as the reduction.
        Value iota = reduce_op.getInputs().back();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/registry/value.go

    // under key k to value and DWORD.
    func (k Key) SetDWordValue(name string, value uint32) error {
    	return k.setValue(name, DWORD, (*[4]byte)(unsafe.Pointer(&value))[:])
    }
    
    // SetQWordValue sets the data and type of a name value
    // under key k to value and QWORD.
    func (k Key) SetQWordValue(name string, value uint64) error {
    	return k.setValue(name, QWORD, (*[8]byte)(unsafe.Pointer(&value))[:])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. platforms/core-runtime/cli/src/main/java/org/gradle/cli/AbstractPropertiesCommandLineConverter.java

        @Override
        public Map<String, String> convert(ParsedCommandLine options, Map<String, String> properties) throws CommandLineArgumentException {
            for (String keyValueExpression : options.option(getPropertyOption()).getValues()) {
                int pos = keyValueExpression.indexOf("=");
                if (pos < 0) {
                    properties.put(keyValueExpression, "");
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/AnnotationMember.java

        private final boolean visible;
    
        public AnnotationMember(String name, boolean visible) {
            super(name);
            this.visible = visible;
        }
    
        public SortedSet<AnnotationValue<?>> getValues() {
            return ImmutableSortedSet.copyOf(values);
        }
    
        public void addValue(AnnotationValue<?> value) {
            values.add(value);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/HashBiMapTest.java

          assertEquals(2 * i, (int) inverse.get(2 * i - 1));
        }
        Set<Entry<Integer, Integer>> entries = bimap.entrySet();
        for (Entry<Integer, Integer> entry : entries) {
          entry.setValue(entry.getValue() + 2 * N);
        }
        for (int i = 0; i < N; i++) {
          assertEquals(2 * N + 2 * i - 1, (int) bimap.get(2 * i));
        }
      }
    
      public void testBiMapEntrySetIteratorRemove() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ForwardingMapEntry.java

      @Override
      @ParametricNullness
      public V getValue() {
        return delegate().getValue();
      }
    
      @Override
      @ParametricNullness
      @CanIgnoreReturnValue
      public V setValue(@ParametricNullness V value) {
        return delegate().setValue(value);
      }
    
      @Override
      public boolean equals(@CheckForNull Object object) {
        return delegate().equals(object);
      }
    
      @Override
      public int hashCode() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 19 19:28:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ForwardingMapEntry.java

      @Override
      @ParametricNullness
      public V getValue() {
        return delegate().getValue();
      }
    
      @Override
      @ParametricNullness
      @CanIgnoreReturnValue
      public V setValue(@ParametricNullness V value) {
        return delegate().setValue(value);
      }
    
      @Override
      public boolean equals(@CheckForNull Object object) {
        return delegate().equals(object);
      }
    
      @Override
      public int hashCode() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 19 19:28:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PropertyStateExtensions.kt

    
    /**
     * Property delegate for [Property] instances.
     *
     * Example: `var someProperty by somePropertyState`
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/internal/StringJavadocOptionFileOptionTest.groovy

            then:
            0 * writerContextMock._
        }
    
        def testWriteNoneNullValue() throws IOException {
            final String testValue = "testValue"
            stringOption.setValue(testValue)
    
            when:
            stringOption.write(writerContextMock)
    
            then:
            1 * writerContextMock.writeValueOption(optionName, testValue)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top