Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 304 for setValues (0.32 sec)

  1. guava-tests/test/com/google/common/collect/MapsTest.java

        try {
          entry.setValue("four");
          fail("UnsupportedOperationException expected");
        } catch (UnsupportedOperationException expected) {
        }
        @SuppressWarnings("unchecked")
        Entry<Integer, String> entry2 = (Entry<Integer, String>) entries.toArray()[0];
        try {
          entry2.setValue("four");
          fail("UnsupportedOperationException expected");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

          for (uint64_t i = 0; i < block_rank; i++) {
            int64_t paddings_sum =
                paddings.getValues<APInt>()[{i, 0}].getSExtValue() +
                paddings.getValues<APInt>()[{i, 1}].getSExtValue();
            int64_t block_shape_i =
                block_shape.getValues<APInt>()[i].getSExtValue();
            padded_shape[i + 1] = (paddings_sum + input_shape[i + 1]);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/ApiMemberWriter.java

            }
        }
    
        private void writeAnnotationValues(AnnotationMember annotation, AnnotationVisitor annotationVisitor) {
            for (AnnotationValue<?> value : annotation.getValues()) {
                writeAnnotationValue(annotationVisitor, value);
            }
            annotationVisitor.visitEnd();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/ApplicationServiceRegistration.kt

            operator fun getValue(thisRef: R, desc: KProperty<*>): T =
                thisRef.getUserData(key) ?: error("A user data key with a default value should guarantee a non-null value.")
    
            operator fun setValue(thisRef: R, desc: KProperty<*>, value: T) {
                thisRef.putUserData(key, value)
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 16 11:53:35 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/WbDependentModule.java

            attributes.put("deploy-path", deployPath);
            attributes.put("handle", handle);
            Node node = parentNode.appendNode("dependent-module", attributes);
            node.appendNode("dependency-type").setValue("uses");
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
            if (!getClass().equals(o.getClass())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/LinkedListMultimap.java

       * multimap, {@link Entry#getValue} returns the value from the multimap, which may change over
       * time, and {@link Entry#setValue} modifies that value. Removing the mapping from the multimap
       * does not alter the value returned by {@code getValue()}, though a subsequent {@code setValue()}
       * call won't update the multimap but will lead to a revised value being returned by {@code
       * getValue()}.
       */
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.cc

    LogicalResult LowerPackIntoConcatReshape::matchAndRewrite(
        TFL::PackOp pack_op, PatternRewriter& rewriter) const {
      // Pack op should have same shape type.
      SmallVector<Value, 5> pack_inputs(pack_op.getValues());
      auto input_type = mlir::dyn_cast<RankedTensorType>(pack_inputs[0].getType());
      if (!input_type) return failure();
    
      // Figure out output shapes.
      SmallVector<int64_t, 4> concat_out_shape;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/ElementSourceSpec.groovy

                return type
            }
    
            @Override
            protected Value<T> calculateOwnValue(ValueConsumer consumer) {
                return Value.of(value)
            }
    
            void setValue(T value) {
                T previousValue = this.value
                this.value = value
                changingValue.handle(previousValue)
            }
    
            @Override
            void onValueChange(Action<T> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 10:08:46 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/LinkedListMultimap.java

       * multimap, {@link Entry#getValue} returns the value from the multimap, which may change over
       * time, and {@link Entry#setValue} modifies that value. Removing the mapping from the multimap
       * does not alter the value returned by {@code getValue()}, though a subsequent {@code setValue()}
       * call won't update the multimap but will lead to a revised value being returned by {@code
       * getValue()}.
       */
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/profiles/ProfilesConversionUtils.java

                if (profileProp != null) {
                    ActivationProperty prop = new ActivationProperty();
    
                    prop.setName(profileProp.getName());
                    prop.setValue(profileProp.getValue());
    
                    activation.setProperty(prop);
                }
    
                ActivationOS profileOs = profileActivation.getOs();
    
                if (profileOs != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top