Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 200 for oldValues (0.34 sec)

  1. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/ImmutableCollections.java

            }
    
            @Override
            public boolean remove(Object key, Object value) {
                throw uoe();
            }
    
            @Override
            public boolean replace(Object key, Object oldValue, Object newValue) {
                throw uoe();
            }
    
            @Override
            public Object replace(Object key, Object value) {
                throw uoe();
            }
    
            @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/HashBiMap.java

            }
    
            @Override
            @ParametricNullness
            public V setValue(@ParametricNullness V value) {
              V oldValue = delegate.value;
              int valueHash = smearedHash(value);
              if (valueHash == delegate.valueHash && Objects.equal(value, oldValue)) {
                return value;
              }
              checkArgument(seekByValue(value, valueHash) == null, "value already present: %s", value);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

                processEnvironment.maybeSetProcessDir(originalUserDir);
                for (String envVar : changedEnvVars) {
                    String oldValue = originalEnv.get(envVar);
                    if (oldValue != null) {
                        processEnvironment.maybeSetEnvironmentVariable(envVar, oldValue);
                    } else {
                        processEnvironment.maybeRemoveEnvironmentVariable(envVar);
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/Bytes.java

        }
    
        @Override
        public Byte set(int index, Byte element) {
          checkElementIndex(index, size());
          byte oldValue = array[start + index];
          // checkNotNull for GWT (do not optimize)
          array[start + index] = checkNotNull(element);
          return oldValue;
        }
    
        @Override
        public List<Byte> subList(int fromIndex, int toIndex) {
          int size = size();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultFlatDirArtifactRepository.java

                // Service calls have no effect, no need to register them
                return this;
            }
    
            @Override
            public boolean isUpToDate(String s, @Nullable Long oldValue) {
                // Nothing accessible, always up to date
                return true;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/Bytes.java

        }
    
        @Override
        public Byte set(int index, Byte element) {
          checkElementIndex(index, size());
          byte oldValue = array[start + index];
          // checkNotNull for GWT (do not optimize)
          array[start + index] = checkNotNull(element);
          return oldValue;
        }
    
        @Override
        public List<Byte> subList(int fromIndex, int toIndex) {
          int size = size();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/MapMakerInternalMap.java

      }
    
      @CanIgnoreReturnValue
      @Override
      public boolean replace(K key, @CheckForNull V oldValue, V newValue) {
        checkNotNull(key);
        checkNotNull(newValue);
        if (oldValue == null) {
          return false;
        }
        int hash = hash(key);
        return segmentFor(hash).replace(key, hash, oldValue, newValue);
      }
    
      @CheckForNull
      @CanIgnoreReturnValue
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. src/net/http/client_test.go

    		c, _ := r.Cookie("Cycle")
    		switch c.Value {
    		case "0":
    			want = map[string][]string{
    				"Cookie1": {"OldValue1a", "OldValue1b"},
    				"Cookie2": {"OldValue2"},
    				"Cookie3": {"OldValue3a", "OldValue3b"},
    				"Cookie4": {"OldValue4"},
    				"Cycle":   {"0"},
    			}
    			SetCookie(w, &Cookie{Name: "Cycle", Value: "1", Path: "/"})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

                    data.set(key, value);
                }
    
                @Override
                public <T> boolean replace(@Nonnull Key<T> key, @Nullable T oldValue, @Nullable T newValue) {
                    return data.set(key, oldValue, newValue);
                }
    
                @Nullable
                @Override
                @SuppressWarnings("unchecked")
                public <T> T get(@Nonnull Key<T> key) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

      }
    
      @CanIgnoreReturnValue
      @Override
      public boolean replace(K key, @CheckForNull V oldValue, V newValue) {
        checkNotNull(key);
        checkNotNull(newValue);
        if (oldValue == null) {
          return false;
        }
        int hash = hash(key);
        return segmentFor(hash).replace(key, hash, oldValue, newValue);
      }
    
      @CheckForNull
      @CanIgnoreReturnValue
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
Back to top