Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 139 for canonicalized (0.2 sec)

  1. src/main/java/jcifs/SmbResourceLocator.java

         * the original.
         *
         * @return The canonicalized URL of this SMB resource.
         */
        String getCanonicalURL ();
    
    
        /**
         * @return The canonicalized UNC path of this SMB resource (relative to it's share)
         */
        String getUNCPath ();
    
    
        /**
         * @return The canonicalized URL path (relative to the server/domain)
         */
        String getURLPath ();
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.6K bytes
    - Viewed (0)
  2. src/net/http/header.go

    // The key is case insensitive; it is canonicalized by
    // [CanonicalHeaderKey].
    func (h Header) Add(key, value string) {
    	textproto.MIMEHeader(h).Add(key, value)
    }
    
    // Set sets the header entries associated with key to the
    // single element value. It replaces any existing values
    // associated with key. The key is case insensitive; it is
    // canonicalized by [textproto.CanonicalMIMEHeaderKey].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. doc/next/6-stdlib/2-unique.md

    ### New unique package
    
    The new [unique] package provides facilities for
    canonicalizing values (like "interning" or "hash-consing").
    
    Any value of comparable type may be canonicalized with the new
    `Make[T]` function, which produces a reference to a canonical copy of
    the value in the form of a `Handle[T]`.
    Two `Handle[T]` are equal if and only if the values used to produce the
    handles are equal, allowing programs to deduplicate values and reduce
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 566 bytes
    - Viewed (0)
  4. src/net/textproto/header_test.go

    		if s := CanonicalMIMEHeaderKey(tt.in); s != tt.out {
    			t.Errorf("CanonicalMIMEHeaderKey(%q) = %q, want %q", tt.in, s, tt.out)
    		}
    	}
    }
    
    // Issue #34799 add a Header method to get multiple values []string, with canonicalized key
    func TestMIMEHeaderMultipleValues(t *testing.T) {
    	testHeader := MIMEHeader{
    		"Set-Cookie": {"cookie 1", "cookie 2"},
    	}
    	values := testHeader.Values("set-cookie")
    	n := len(values)
    	if n != 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 17 18:21:01 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/parse.go

    // The resulting tag is canonicalized using the canonicalization type c.
    func (c CanonType) Parse(s string) (t Tag, err error) {
    	defer func() {
    		if recover() != nil {
    			t = Tag{}
    			err = language.ErrSyntax
    		}
    	}()
    
    	tt, err := language.Parse(s)
    	if err != nil {
    		return makeTag(tt), err
    	}
    	tt, changed := canonicalize(c, tt)
    	if changed {
    		tt.RemakeString()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. buildscripts/checkdeps.sh

    	# Iterate down a (possible) chain of symlinks
    	while [ -L "$TARGET_FILE" ]; do
    		TARGET_FILE=$(env readlink $TARGET_FILE)
    		cd $(dirname $TARGET_FILE)
    		TARGET_FILE=$(basename $TARGET_FILE)
    	done
    
    	# Compute the canonicalized name by finding the physical path
    	# for the directory we're in and appending the target file.
    	PHYS_DIR=$(pwd -P)
    	RESULT=$PHYS_DIR/$TARGET_FILE
    	echo $RESULT
    }
    
    ## FIXME:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DarwinFileWatcherRegistryFactory.java

         * Therefore, we disable file system watching when we try to watch a directory whose parent is a symlink.
         *
         * Note that the project directory is canonicalized by Gradle, so the project directory can always be watched.
         */
        private static void validateLocationToWatch(File location) {
            try {
                String canonicalPath = location.getCanonicalPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalInvalidatableVirtualFileSystemConnection.java

         *
         * <p>The daemons will use this information to update the retained file system state.
         *
         * <p>The paths which are passed in need to be absolute, canonicalized paths.
         * For a delete, the deleted path should be passed.
         * For a rename, the old and the new path should be passed.
         * When creating a new file, the path to the file should be passed.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/podcgroupns_test.go

    			},
    			expectPodUID:      "2c48913c-b29f-11e7-9350-020968147796",
    			expectContainerID: "9bca8d63d5fa610783847915bcff0ecac1273e5b4bed3f6fa1b07350e0135961",
    		},
    		{
    			name: "pod UID canonicalized",
    			cgroupPaths: []string{
    				"/user.slice",
    				"/kubepods/pod2c48913c_b29f_11e7_9350_020968147796/9bca8d63d5fa610783847915bcff0ecac1273e5b4bed3f6fa1b07350e0135961",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/str/path.go

    //
    // HasFilePathPrefix is case-sensitive (except for volume names) even if the
    // filesystem is not, does not apply Unicode normalization even if the
    // filesystem does, and assumes that all path separators are canonicalized to
    // filepath.Separator (as returned by filepath.Clean).
    func HasFilePathPrefix(s, prefix string) bool {
    	sv := filepath.VolumeName(s)
    	pv := filepath.VolumeName(prefix)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top