Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 15 of 15 for patternKey (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/CopyRestTestsTask.java

    import org.gradle.api.tasks.OutputDirectory;
    import org.gradle.api.tasks.SkipWhenEmpty;
    import org.gradle.api.tasks.TaskAction;
    import org.gradle.api.tasks.util.PatternFilterable;
    import org.gradle.api.tasks.util.PatternSet;
    import org.gradle.internal.Factory;
    
    import java.io.File;
    import java.util.Map;
    import java.util.function.Function;
    import java.util.stream.Collectors;
    import javax.inject.Inject;
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jul 20 21:05:16 GMT 2021
    - 7.7K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/rest/compat/RestCompatTestTransformTask.java

    import org.gradle.api.tasks.OutputDirectory;
    import org.gradle.api.tasks.SkipWhenEmpty;
    import org.gradle.api.tasks.TaskAction;
    import org.gradle.api.tasks.util.PatternFilterable;
    import org.gradle.api.tasks.util.PatternSet;
    import org.gradle.internal.Factory;
    
    import java.io.File;
    import java.io.IOException;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Collections;
    import java.util.HashMap;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 30 16:30:48 GMT 2021
    - 22.3K bytes
    - Click Count (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.java

      }
    
      @Override
      public boolean containsValue(@Nullable Object value) {
        if (value == null) {
          return false;
        }
    
        // This implementation is patterned after ConcurrentHashMap, but without the locking. The only
        // way for it to return a false negative would be for the target value to jump around in the map
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 89.9K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

      }
    
      @Override
      public boolean containsValue(@Nullable Object value) {
        if (value == null) {
          return false;
        }
    
        // This implementation is patterned after ConcurrentHashMap, but without the locking. The only
        // way for it to return a false negative would be for the target value to jump around in the map
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 89.9K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/cache/LocalCache.java

      @Override
      public boolean containsValue(@Nullable Object value) {
        // does not impact recency ordering
        if (value == null) {
          return false;
        }
    
        // This implementation is patterned after ConcurrentHashMap, but without the locking. The only
        // way for it to return a false negative would be for the target value to jump around in the map
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 143.5K bytes
    - Click Count (0)
Back to Top