Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 3,660 for pats (0.05 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparatorTest.groovy

        }
    
        def "leading zeros in numeric parts are ignored"() {
            expect:
            compare("01.0", "1.0") == 0
            compare("1.0", "01.0") == 0
            compare("001.2.003", "0001.02.3") == 0
        }
    
        // original Ivy behavior - should we change it?
        def "versions with extra trailing zero parts are considered larger"() {
            expect:
            compare(larger, smaller) > 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. pkg/config/host/names.go

    	result := make(Names, 0, len(hosts))
    	for _, host := range hosts {
    		if strings.Contains(host, "/") {
    			parts := strings.Split(host, "/")
    			if parts[0] != namespace && parts[0] != "*" {
    				continue
    			}
    			// strip the namespace
    			host = parts[1]
    		}
    		result = append(result, Name(host))
    	}
    	return result
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. pkg/volume/util/device_util_linux.go

    	return ""
    }
    
    // findDeviceForPath Find the underlying disk for a linked path such as /dev/disk/by-path/XXXX or /dev/mapper/XXXX
    // will return sdX or hdX etc, if /dev/sdX is passed in then sdX will be returned
    func findDeviceForPath(path string, io IoUtil) (string, error) {
    	devicePath, err := io.EvalSymlinks(path)
    	if err != nil {
    		return "", err
    	}
    	// if path /dev/hdX split into "", "dev", "hdX" then we will
    	// return just the last part
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/model/generator.go

    	if strings.HasPrefix(value, "[") && strings.HasSuffix(value, "]") {
    		m := matcher.MetadataListMatcher(parts[0], parts[1:], matcher.StringMatcher(strings.Trim(value, "[]")), false)
    		return permissionMetadata(m), nil
    	}
    	m := matcher.MetadataStringMatcher(parts[0], parts[1], matcher.StringMatcher(value))
    	return permissionMetadata(m), nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. docs/zh/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    Sebastián Ramírez <******@****.***> 1652313976 -0500
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. docs/ko/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    김명기 <******@****.***> 1707659385 +0900
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 11 13:49:45 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. src/cmd/trace/jsontrace_test.go

    // E.g. if e.Name is "G42 main.cpu10", this returns "main.cpu10".
    func parseGoroutineName(e *format.Event) string {
    	parts := strings.SplitN(e.Name, " ", 2)
    	if len(parts) != 2 || !strings.HasPrefix(parts[0], "G") {
    		return ""
    	}
    	return parts[1]
    }
    
    // filterBlocked returns an event filter that returns true if the event's
    // "blocked" argument is equal to blocked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/net/HttpHeadersTest.java

          return specialCases.get(constantName);
        }
        List<String> parts = Lists.newArrayList();
        for (String part : SPLITTER.split(constantName)) {
          if (!uppercaseAcronyms.contains(part)) {
            part = part.charAt(0) + Ascii.toLowerCase(part.substring(1));
          }
          parts.add(part);
        }
        return JOINER.join(parts);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:08:08 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/AnnotationProcessorDetector.java

                for (String line : lines) {
                    List<String> parts = Splitter.on(',').splitToList(line);
                    IncrementalAnnotationProcessorType type = parseProcessorType(parts);
                    types.put(parts.get(0), type);
                }
                return types;
            }
    
            private IncrementalAnnotationProcessorType parseProcessorType(List<String> parts) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/schema-extra-example.md

        ```
    
    ## `examples` in JSON Schema - OpenAPI
    
    When using any of:
    
    * `Path()`
    * `Query()`
    * `Header()`
    * `Cookie()`
    * `Body()`
    * `Form()`
    * `File()`
    
    you can also declare a group of `examples` with additional information that will be added to their **JSON Schemas** inside of **OpenAPI**.
    
    ### `Body` with `examples`
    
    Here we pass `examples` containing one example of the data expected in `Body()`:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top