Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,660 for pats (0.05 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/util/Path.java

        /**
         * Appends the supplied path to this path, returning the new path.
         * The resulting path with be absolute or relative based on the path being appended _to_.
         * It makes no difference if the _appended_ path is absolute or relative.
         *
         * <pre>
         * path(':a:b').append(path(':c:d')) == path(':a:b:c:d')
         * path(':a:b').append(path('c:d')) == path(':a:b:c:d')
         * path('a:b').append(path(':c:d')) == path('a:b:c:d')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 13:03:23 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. tools/bug-report/pkg/util/path/path.go

    func FromString(path string) Path {
    	path = filepath.Clean(path)
    	path = strings.TrimPrefix(path, pathSeparator)
    	path = strings.TrimSuffix(path, pathSeparator)
    	pv := splitEscaped(path, []rune(pathSeparator)[0])
    	var r []string
    	for _, str := range pv {
    		if str != "" {
    			str = strings.ReplaceAll(str, escapedPathSeparator, pathSeparator)
    			// Is str of the form node[expr], convert to "node", "[expr]"?
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:55:53 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Path.java

        @Override
        public String toString() {
            return "Path{" + "url='" + url + "\'" + "}";
        }
    
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
            if (!(o instanceof Path)) {
                return false;
            }
            Path path = (Path) o;
            return Objects.equal(canonicalUrl, path.canonicalUrl);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. pkg/test/util/yml/parts.go

    func SplitString(yamlText string) []string {
    	out := make([]string, 0)
    	parts := splitRegex.Split(yamlText, -1)
    	for _, part := range parts {
    		part := strings.TrimSpace(part)
    		if len(part) > 0 {
    			out = append(out, part)
    		}
    	}
    	return out
    }
    
    // JoinString joins the given yaml parts into a single multipart document.
    func JoinString(parts ...string) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/path-params.md

    }
    ```
    
    ## Path parameters containing paths
    
    Let's say you have a *path operation* with a path `/files/{file_path}`.
    
    But you need `file_path` itself to contain a *path*, like `home/johndoe/myfile.txt`.
    
    So, the URL for that file would be something like: `/files/home/johndoe/myfile.txt`.
    
    ### OpenAPI support
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. src/compress/bzip2/testdata/pass-sawtooth.bz2

    pass-sawtooth...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 03 02:53:34 UTC 2016
    - 2K bytes
    - Viewed (0)
  7. docs/es/docs/tutorial/path-params.md

    ```JSON
    {
      "model_name": "alexnet",
      "message": "Deep Learning FTW!"
    }
    ```
    
    ## Parámetros de path parameters que contienen paths
    
    Digamos que tienes una *operación de path* con un path `/files/{file_path}`.
    
    Pero necesitas que el mismo `file_path` contenga un path como `home/johndoe/myfile.txt`.
    
    Entonces, la URL para ese archivo sería algo como: `/files/home/johndoe/myfile.txt`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

      /**
       * The elements in this map would pass the UNDER test, but are known not to be public suffixes and
       * are thus excluded from consideration. Since it refers to elements in UNDER of the same type,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 21 21:04:43 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

      /**
       * The elements in this map would pass the UNDER test, but are known not to be public suffixes and
       * are thus excluded from consideration. Since it refers to elements in UNDER of the same type,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 21 21:04:43 UTC 2024
    - 72.4K bytes
    - Viewed (1)
  10. docs/en/docs/tutorial/path-operation-configuration.md

    # Path Operation Configuration
    
    There are several parameters that you can pass to your *path operation decorator* to configure it.
    
    !!! warning
        Notice that these parameters are passed directly to the *path operation decorator*, not to your *path operation function*.
    
    ## Response Status Code
    
    You can define the (HTTP) `status_code` to be used in the response of your *path operation*.
    
    You can pass directly the `int` code, like `404`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top