Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 19 of 19 for patternKey (0.1 seconds)

  1. fastapi/utils.py

    
    def is_body_allowed_for_status_code(status_code: int | str | None) -> bool:
        if status_code is None:
            return True
        # Ref: https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#patterned-fields-1
        if status_code in {
            "default",
            "1XX",
            "2XX",
            "3XX",
            "4XX",
            "5XX",
        }:
            return True
        current_status_code = int(status_code)
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 11 18:41:21 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  2. 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)
  3. 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)
  4. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

        protected void mergePatternSet(
                PatternSet target, PatternSet source, boolean sourceDominant, Map<Object, Object> context) {
            mergePatternSet_Includes(target, source, sourceDominant, context);
            mergePatternSet_Excludes(target, source, sourceDominant, context);
        }
    
        protected void mergePatternSet_Includes(
                PatternSet target, PatternSet source, boolean sourceDominant, Map<Object, Object> context) {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Apr 03 11:21:39 GMT 2025
    - 99.2K bytes
    - Click Count (0)
  5. api/maven-api-model/src/main/mdo/maven.mdo

              </code>
            </codeSegment>
          </codeSegments>
        </class>
        <class>
          <name>FileSet</name>
          <version>3.0.0+</version>
          <superClass>PatternSet</superClass>
          <description>A PatternSet for files.</description>
          <fields>
            <field>
              <name>directory</name>
              <version>3.0.0+</version>
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 17 09:48:21 GMT 2026
    - 133.5K bytes
    - Click Count (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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
    - 148.9K bytes
    - Click Count (0)
Back to Top