Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 287 for canonicalized (0.45 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. tensorflow/c/experimental/saved_model/core/tf_concrete_function_loading_test.cc

      for (int i = 0; i < num_inputs; ++i) {
        signature->add_input_arg();
      }
      for (int i = 0; i < num_outputs; ++i) {
        signature->add_output_arg();
      }
      return func;
    }
    
    // A SavedConcreteFunction whose canonicalized input signature
    // has less inputs than its corresponding FunctionDef should cause an error.
    TEST_F(SavedConcreteFunctionLoadingTest, TooFewInputsInSavedConcreteFunction) {
      // `saved` has 1 input
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/cmd/vendor/golang.org/x/text/language/language.go

    		}
    	}
    	if c&DeprecatedRegion != 0 {
    		if r := t.RegionID.Canonicalize(); r != t.RegionID {
    			changed = true
    			t.RegionID = r
    		}
    	}
    	return t, changed
    }
    
    // Canonicalize returns the canonicalized equivalent of the tag.
    func (c CanonType) Canonicalize(t Tag) (Tag, error) {
    	// First try fast path.
    	if t.isCompact() {
    		if _, changed := canonicalize(c, compact.Tag(t).Tag()); !changed {
    			return t, nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top