Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,132 for genValue (0.28 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/DirectorySnapshot.java

            AtomicBoolean alreadyFoundASymlink = new AtomicBoolean(false);
            children.stream()
                .map(child -> child.getValue().relocate(targetPath + File.separatorChar + child.getPath(), interner)
                    .map(relocatedSnapshot -> new ChildMap.Entry<FileSystemLocationSnapshot>(child.getPath(), relocatedSnapshot)))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/FileValueSnapshot.java

            if (value instanceof File) {
                File file = (File) value;
                if (file.getPath().equals(getValue())) {
                    return this;
                }
            }
            return snapshotter.snapshot(value);
        }
    
        @Override
        public void appendToHasher(Hasher hasher) {
            hasher.putString(getValue());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/ParameterUtil.java

                    configConfigMap.put(key.substring(CONFIG_PREFIX.length()), entry.getValue());
                } else if (key.startsWith(CLIENT_PREFIX)) {
                    clientConfigMap.put(key.substring(CLIENT_PREFIX.length()), entry.getValue());
                } else if (key.startsWith(XPATH_PREFIX)) {
                    xpathConfigMap.put(key.substring(XPATH_PREFIX.length()), entry.getValue());
                } else if (key.startsWith(META_PREFIX)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/registration/InstrumentationTransformRegisterer.java

                InstrumentationAnalysisTransform.class,
                spec -> {
                    spec.getFrom().attribute(INSTRUMENTED_ATTRIBUTE, NOT_INSTRUMENTED.getValue());
                    spec.getTo().attribute(INSTRUMENTED_ATTRIBUTE, ANALYZED_ARTIFACT.getValue());
                    spec.parameters(params -> {
                        params.getBuildService().set(service);
                        params.getContextId().set(contextId);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/CoercingStringValueSnapshot.java

            if (type.isInstance(getValue())) {
                return type.cast(this);
            }
            if (type.isEnum()) {
                return type.cast(Enum.valueOf(Cast.uncheckedNonnullCast(type.asSubclass(Enum.class)), getValue()));
            }
            if (Named.class.isAssignableFrom(type)) {
                return type.cast(instantiator.named(type.asSubclass(Named.class), getValue()));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.cc

      if (replicate_attr.getValue().empty())
        return op.emitOpError()
               << "has an empty '" << kReplicationInfoAttr << "' attribute.";
      if (failed(IsValidDeviceTypeOrEmpty(compile_attr))) {
        return op.emitOpError() << "has invalid '" << kCompileDeviceTypeAttr
                                << "' value '" << compile_attr.getValue() << "'";
      }
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/AbstractStringBasedModelInterpolator.java

                ValueSource basedirValueSource = new PrefixedValueSourceWrapper(
                        new AbstractValueSource(false) {
                            @Override
                            public Object getValue(String expression) {
                                if ("basedir".equals(expression)) {
                                    return projectDir.toAbsolutePath().toString();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/DenseImmutableTable.java

          int columnIndex = requireNonNull(columnKeyToIndex.get(columnKey));
          V existingValue = values[rowIndex][columnIndex];
          checkNoDuplicate(rowKey, columnKey, existingValue, cell.getValue());
          values[rowIndex][columnIndex] = cell.getValue();
          rowCounts[rowIndex]++;
          columnCounts[columnIndex]++;
          cellRowIndices[i] = rowIndex;
          cellColumnIndices[i] = columnIndex;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. 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)
Back to top