Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 304 for setValues (0.15 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/credentials/DefaultHttpHeaderCredentials.java

        public void setName(String name) {
            this.name = name;
        }
    
        @Internal
        @Override
        public String getValue() {
            return value;
        }
    
        @Override
        public void setValue(String value) {
            this.value = value;
        }
    
        @Override
        public String toString() {
            return String.format("Credentials [header: %s]", name);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ArrayTable.java

            public V getValue() {
              return ArrayMap.this.getValue(index);
            }
    
            @Override
            @ParametricNullness
            public V setValue(@ParametricNullness V value) {
              return ArrayMap.this.setValue(index, value);
            }
          };
        }
    
        @Override
        Iterator<Entry<K, V>> entryIterator() {
          return new AbstractIndexedListIterator<Entry<K, V>>(size()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXShellScriptBuildPhase.java

            for (int i = 0; i < inputPaths.size(); i++) {
                inputPathsArray.setValue(i, new NSString(inputPaths.get(i)));
            }
            s.addField("inputPaths", inputPathsArray);
    
            NSArray outputPathsArray = new NSArray(outputPaths.size());
            for (int i = 0; i < outputPaths.size(); i++) {
                outputPathsArray.setValue(i, new NSString(outputPaths.get(i)));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Table.java

       * {@code put()} or {@code putAll()}, or {@code setValue()} on its entries.
       *
       * <p>In contrast, the maps returned by {@code rowMap().get()} have the same behavior as those
       * returned by {@link #row}. Those maps may support {@code setValue()}, {@code put()}, and {@code
       * putAll()}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ConfigurableFileCollectionExtensions.kt

        this
    
    
    /**
     * Property delegate for [ConfigurableFileCollection] instances.
     *
     * Example: `var aFileCollection by project.files()`
     */
    operator fun ConfigurableFileCollection.setValue(receiver: Any?, property: KProperty<*>, value: Iterable<*>) =
        setFrom(value)
    
    
    /**
     * Sets the ConfigurableFileCollection to contain the source paths of passed collection.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Table.java

       * {@code put()} or {@code putAll()}, or {@code setValue()} on its entries.
       *
       * <p>In contrast, the maps returned by {@code rowMap().get()} have the same behavior as those
       * returned by {@link #row}. Those maps may support {@code setValue()}, {@code put()}, and {@code
       * putAll()}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/internal/EnumJavadocOptionFileOptionTest.groovy

            when:
            enumOption.write(writerContextMock)
    
            then:
            0 * writerContextMock._
        }
    
        def testWriteNonNullValue() throws IOException {
            enumOption.setValue(JavadocMemberLevel.PUBLIC)
    
            when:
            enumOption.write(writerContextMock)
    
            then:
            1 * writerContextMock.writeOption("public")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/collections/AbstractIterationOrderRetainingElementSource.java

                while (i < backingList.size()) {
                    Element<T> candidate = backingList.get(i);
                    if (candidate.isRealized()) {
                        List<T> collected = candidate.getValues();
                        int j = nextSubIndex + 1;
                        while (j < collected.size()) {
                            T value = collected.get(j);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 20:04:06 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/push_transpose_through_ewise.cc

          return failure();
        }
    
        auto perm1_value = llvm::dyn_cast<DenseElementsAttr>(perm1.getValue())
                               .getValues<int32_t>();
        auto perm2_value = llvm::dyn_cast<DenseElementsAttr>(perm2.getValue())
                               .getValues<int32_t>();
    
        llvm::SmallVector<int32_t> perm1_arr(perm1_value.begin(),
                                             perm1_value.end());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/AbstractJavadocOptionFileOption.java

        }
    
        @Override
        public final String getOption() {
            return option;
        }
    
        @Override
        public T getValue() {
            return value;
        }
    
        @Override
        public void setValue(T value) {
            this.value = value;
        }
    
        @Override
        public abstract JavadocOptionFileOptionInternal<T> duplicate();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top