Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 557 for genValue (0.26 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/AbstractMapTester.java

      }
    
      protected final V v0() {
        return e0().getValue();
      }
    
      protected final K k1() {
        return e1().getKey();
      }
    
      protected final V v1() {
        return e1().getValue();
      }
    
      protected final K k2() {
        return e2().getKey();
      }
    
      protected final V v2() {
        return e2().getValue();
      }
    
      protected final K k3() {
        return e3().getKey();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/FileSystemPublishArtifact.java

        }
    
        @Override
        public String getName() {
            return getValue().getName();
        }
    
        @Override
        public String getExtension() {
            return getValue().getExtension();
        }
    
        @Override
        public String getType() {
            return "";
        }
    
        @Override
        public String getClassifier() {
            return getValue().getClassifier();
        }
    
        @Override
        public File getFile() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/google/AbstractMultimapTester.java

      }
    
      protected final V v0() {
        return e0().getValue();
      }
    
      protected final K k1() {
        return e1().getKey();
      }
    
      protected final V v1() {
        return e1().getValue();
      }
    
      protected final K k2() {
        return e2().getKey();
      }
    
      protected final V v2() {
        return e2().getValue();
      }
    
      protected final K k3() {
        return e3().getKey();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ForwardingMapEntry.java

          Entry<?, ?> that = (Entry<?, ?>) object;
          return Objects.equal(this.getKey(), that.getKey())
              && Objects.equal(this.getValue(), that.getValue());
        }
        return false;
      }
    
      /**
       * A sensible definition of {@link #hashCode()} in terms of {@link #getKey()} and {@link
       * #getValue()}. If you override either of these methods, you may wish to override {@link
       * #hashCode()} to forward to this implementation.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 19 19:28:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/google/AbstractBiMapTester.java

        for (Entry<K, V> entry : expected) {
          assertEquals(
              "Wrong key for value " + entry.getValue(),
              entry.getKey(),
              getMap().inverse().get(entry.getValue()));
        }
      }
    
      @Override
      protected void expectMissing(Entry<K, V>... entries) {
        super.expectMissing(entries);
        for (Entry<K, V> entry : entries) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolveConfigurationResolutionBuildOperationDetails.java

                    } else if (property.getValue() instanceof File) {
                        propertyValue = ((File) property.getValue()).getAbsolutePath();
                    } else if (property.getValue() instanceof URI) {
                        propertyValue = ((URI) property.getValue()).toASCIIString();
                    } else {
                        propertyValue = property.getValue();
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/ConfigureDelegate.java

                if (result.isFound()) {
                    return result.getValue();
                }
    
                if (!isAlreadyConfiguring) {
                    // Try to configure element
                    result = _configure(name, params);
                    if (result.isFound()) {
                        return result.getValue();
                    }
                }
    
                // try the owner
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:25:34 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/utils/validators.cc

      const auto &elements = mlir::cast<ArrayAttr>(attr).getValue();
      if (elements.size() != 4 ||
          std::any_of(elements.begin(), elements.end(),
                      [](Attribute e) { return !mlir::isa<IntegerAttr>(e); }))
        return false;
    
      if (mlir::cast<IntegerAttr>(elements.front()).getValue() != 1 ||
          mlir::cast<IntegerAttr>(elements.back()).getValue() != 1)
        return false;
      return true;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/lower_variable_ops_to_ml_program.cc

      if (!state) {
        return nullptr;
      }
      auto ops = state->getValue().ops;
      if (ops.size() != 1) {
        return nullptr;
      }
      Operation* source = *ops.begin();
      return source;
    }
    
    Attribute GetInitialValue(Operation* source) {
      if (auto global = dyn_cast<tf_saved_model::GlobalTensorOp>(source)) {
        if (global.getValue()) {
          return *global.getValue();
        }
      }
      return nullptr;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 23:53:00 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/internal/PathJavadocOptionFileOptionTest.groovy

            final File fileTwo = new File("fileTwo")
    
            pathOption.getValue().add(fileOne)
            pathOption.getValue().add(fileTwo)
    
            when:
            pathOption.write(writerContextMock)
    
            then:
            1 * writerContextMock.writePathOption(optionName, pathOption.getValue(), joinBy)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top