Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 524 for getValve (0.16 sec)

  1. guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

            assertSame(entry.getValue(), cache.asMap().putIfAbsent(entry.getKey(), newValue));
            Object newKey = new Object();
            assertNull(cache.asMap().putIfAbsent(newKey, entry.getValue()));
            // this getUnchecked() call shouldn't be a cache miss; verified below
            assertEquals(entry.getValue(), cache.getUnchecked(entry.getKey()));
            assertEquals(entry.getValue(), cache.getUnchecked(newKey));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java

          return null;
        }
        alertListenerIfPresent(key, oldValue.getValue(), RemovalCause.REPLACED);
        return oldValue.getValue();
      }
    
      @CanIgnoreReturnValue
      @Override
      public V remove(Object key) {
        Timestamped<V> stamped = cachingHashMap.remove(key);
        if (stamped != null) {
          V value = stamped.getValue();
          // `key` was in the cache, so it's a K.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 27 19:19:19 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/passes/raise_to_tf.cc

          Builder builder(signature.getContext());
          if (auto attr = attrs.lookup(attr_key.getValue())) {
            output_types->push_back(
                UnrankedTensorType::get(mlir::cast<TypeAttr>(attr).getValue()));
          } else if (Type element_type =
                         GetFixedElementType(attr_key.getValue(), builder)) {
            output_types->push_back(UnrankedTensorType::get(element_type));
          } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

                    try {
                        list.add(new LabelTypePattern(labelType.getValue(), includedPaths, excludedPaths));
                    } catch (final Exception e) {
                        logger.warn("Failed to create a matching pattern of a label: {}, includedPaths:{}, excludedPaths:{}",
                                labelType.getValue(), includedPaths, excludedPaths, e);
                    }
                }
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/SnapshotSerializer.java

                encoder.writeSmallInt(INTEGER_SNAPSHOT);
                encoder.writeInt(integerSnapshot.getValue());
            } else if (snapshot instanceof LongValueSnapshot) {
                LongValueSnapshot longSnapshot = (LongValueSnapshot) snapshot;
                encoder.writeSmallInt(LONG_SNAPSHOT);
                encoder.writeLong(longSnapshot.getValue());
            } else if (snapshot instanceof ShortValueSnapshot) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tpu_device_propagation.cc

        auto arg_device_attr =
            func.getArgAttrOfType<StringAttr>(arg.getArgNumber(), kFuncDeviceAttr);
        if (!arg_device_attr || arg_device_attr.getValue().empty() ||
            !tensorflow::IsTPUDevice(arg_device_attr.getValue()))
          continue;
        value_to_device.insert({arg, arg_device_attr.getValue()});
      }
    }
    
    // Propagates devices from operation operands to results. Updating the device of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/TreeRangeSet.java

        if (ceilingEntry != null
            && ceilingEntry.getValue().isConnected(range)
            && !ceilingEntry.getValue().intersection(range).isEmpty()) {
          return true;
        }
        Entry<Cut<C>, Range<C>> priorEntry = rangesByLowerBound.lowerEntry(range.lowerBound);
        return priorEntry != null
            && priorEntry.getValue().isConnected(range)
            && !priorEntry.getValue().intersection(range).isEmpty();
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/java/archives/internal/DefaultManifestTest.groovy

            noBlankLinesJavaManifest.mainAttributes.getValue('Manifest-Version') == '1.0'
            noBlankLinesJavaManifest.mainAttributes.getValue('Some-Main-Attribute') == 'someValue'
            noBlankLinesJavaManifest.mainAttributes.getValue('Name') == 'someSection'
            noBlankLinesJavaManifest.mainAttributes.getValue('Some-Section-Attribute') == 'some other value'
            noBlankLinesJavaManifest.entries.isEmpty()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 15.1K bytes
    - Viewed (0)
Back to top