Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for Classes (0.17 sec)

  1. src/internal/trace/traceviewer/static/webcomponents.min.js

    path";continue}"\\"==y&&c("\\ is an invalid code point."),l="file"==this._scheme?"file host":"authority ignore slashes";break;case"authority first slash":if("/"!=y){c("Expected '/', got: "+y),l="authority ignore slashes";continue}l="authority second slash";break;case"authority second slash":if(l="authority ignore slashes","/"!=y){c("Expected '/', got: "+y);continue}break;case"authority ignore slashes":if("/"!=y&&"\\"!=y){l="authority";continue}c("Expected authority, got: "+y);break;case"authority":if("@"==y){v&&(c("@...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  2. src/net/http/server.go

    //
    // Normally a wildcard matches only a single path segment,
    // ending at the next literal slash (not %2F) in the request URL.
    // But if the "..." is present, then the wildcard matches the remainder of the URL path, including slashes.
    // (Therefore it is invalid for a "..." wildcard to appear anywhere but at the end of a pattern.)
    // The match for a wildcard can be obtained by calling [Request.PathValue] with the wildcard's name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

                    share = null;
                    unc = "\\";
                }
            }
            return unc;
        }
    /**
     * Retuns the Windows UNC style path with backslashs intead of forward slashes.
     *
     * @return  The UNC path.
     */
        public String getUncPath() {
            getUncPath0();
            if( share == null ) {
                return "\\\\" + url.getHost();
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    		return nil
    	}
    
    	// Note that we use path, not path/filepath even though a domain socket path is a file path.  We don't want the
    	// Pilot output to depend on which OS Pilot is run on, so we always use Unix-style forward slashes.
    	if !path.IsAbs(addr) || strings.HasSuffix(addr, "/") {
    		return fmt.Errorf("%s is not an absolute path to a file", addr)
    	}
    	return nil
    }
    
    // ValidateGateway checks gateway specifications
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.4.md

    * Node disk pressure should induce image gc ([#29880](https://github.com/kubernetes/kubernetes/pull/29880), [@derekwaynecarr](https://github.com/derekwaynecarr))
    * oidc authentication plugin: don't trim issuer URLs with trailing slashes ([#29860](https://github.com/kubernetes/kubernetes/pull/29860), [@ericchiang](https://github.com/ericchiang))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  6. fastapi/routing.py

                    """
                ),
            ] = None,
            redirect_slashes: Annotated[
                bool,
                Doc(
                    """
                    Whether to detect and redirect slashes in URLs when the client doesn't
                    use the same format.
                    """
                ),
            ] = True,
            default: Annotated[
                Optional[ASGIApp],
                Doc(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  7. src/database/sql/sql_test.go

    		}
    		if time.Until(deadline) < pollDuration {
    			return false
    		}
    		time.Sleep(pollDuration)
    	}
    }
    
    // waitForFree checks db.numFreeConns until either it equals want or
    // the maxWait time elapses.
    func waitForFree(t *testing.T, db *DB, want int) {
    	var numFree int
    	if !waitCondition(t, func() bool {
    		numFree = db.numFreeConns()
    		return numFree == want
    	}) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Maps.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Static utility methods pertaining to {@link Map} instances (including instances of {@link
     * SortedMap}, {@link BiMap}, etc.). Also see this class's counterparts {@link Lists}, {@link Sets}
     * and {@link Queues}.
     *
     * <p>See the Guava User Guide article on <a href=
     * "https://github.com/google/guava/wiki/CollectionUtilitiesExplained#maps">{@code Maps}</a>.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Maps.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Static utility methods pertaining to {@link Map} instances (including instances of {@link
     * SortedMap}, {@link BiMap}, etc.). Also see this class's counterparts {@link Lists}, {@link Sets}
     * and {@link Queues}.
     *
     * <p>See the Guava User Guide article on <a href=
     * "https://github.com/google/guava/wiki/CollectionUtilitiesExplained#maps">{@code Maps}</a>.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  10. src/net/http/serve_test.go

    		// relative to the current path
    		{"foobar.com/baz", "/qux/foobar.com/baz"},
    		// relative to the current path (+ going upwards)
    		{"../quux/foobar.com/baz", "/quux/foobar.com/baz"},
    		// incorrect number of slashes
    		{"///foobar.com/baz", "/foobar.com/baz"},
    
    		// Verifies we don't path.Clean() on the wrong parts in redirects:
    		{"/foo?next=http://bar.com/", "/foo?next=http://bar.com/"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top