Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 292 for Flash (0.05 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/errors.go

    	}
    
    	name = "Unknown"
    	obj := a.GetObject()
    	if obj != nil {
    		accessor, err := meta.Accessor(obj)
    		if err != nil {
    			// not all object have ObjectMeta.  If we don't, return a name with a slash (always illegal)
    			return "Unknown/errorGettingName", resource, nil
    		}
    
    		// this is necessary because name object name generation has not occurred yet
    		if len(accessor.GetName()) > 0 {
    			name = accessor.GetName()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 26 19:40:51 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  2. src/internal/filepathlite/path.go

    	// Invariants:
    	//	reading from path; r is index of next byte to process.
    	//	writing to buf; w is index of next byte to write.
    	//	dotdot is index in buf where .. must stop, either because
    	//		it is the leading slash or it is a leading ../../.. prefix.
    	n := len(path)
    	out := lazybuf{path: path, volAndPath: originalPath, volLen: volLen}
    	r, dotdot := 0, 0
    	if rooted {
    		out.append(Separator)
    		r, dotdot = 1, 1
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/ntlm/NTLMCredentialsTest.groovy

            then:
            ntlmCredentials.domain == 'DOMAIN'
            ntlmCredentials.username == 'username'
            ntlmCredentials.password == 'password'
        }
    
        def "uses domain when encoded in username with forward slash"() {
            credentials.username >> "domain/username"
            credentials.password >> "password"
    
            when:
            def ntlmCredentials = new NTLMCredentials(credentials)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. src/embed/embed.go

    // many patterns. The patterns are interpreted relative to the package directory
    // containing the source file. The path separator is a forward slash, even on
    // Windows systems. Patterns may not contain ‘.’ or ‘..’ or empty path elements,
    // nor may they begin or end with a slash. To match everything in the current
    // directory, use ‘*’ instead of ‘.’. To allow for naming files with spaces in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. src/io/fs/fs.go

    //
    // Path names passed to open are UTF-8-encoded,
    // unrooted, slash-separated sequences of path elements, like “x/y/z”.
    // Path names must not contain an element that is “.” or “..” or the empty string,
    // except for the special case that the root directory is named “.”.
    // Paths must not start or end with a slash: “/x” and “x/” are invalid.
    //
    // Note that paths are slash-separated on all systems, even Windows.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 15 21:21:41 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/cmd/buildid/buildid.go

    	if err != nil {
    		log.Fatal(err)
    	}
    	matches, hash, err := buildid.FindAndHash(f, id, 0)
    	f.Close()
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	// <= go 1.7 doesn't embed the contentID or actionID, so no slash is present
    	if !strings.Contains(id, "/") {
    		log.Fatalf("%s: build ID is a legacy format...binary too old for this tool", file)
    	}
    
    	newID := id[:strings.LastIndex(id, "/")] + "/" + buildid.HashToString(hash)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/exec_windows.go

    // This function returns "" (2 double quotes) if s is empty.
    // Alternatively, these transformations are done:
    //   - every back slash (\) is doubled, but only if immediately
    //     followed by double quote (");
    //   - every double quote (") is escaped by back slash (\);
    //   - finally, s is wrapped with double quotes (arg -> "arg"),
    //     but only if there is space or tab inside s.
    func EscapeArg(s string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. src/net/http/routing_tree_test.go

    	})
    
    	// A pattern ending in {$} should only match URLS with a trailing slash.
    	pat1 := "/a/b/{$}"
    	test(buildTree(pat1), []testCase{
    		{"GET", "", "/a/b", "", nil},
    		{"GET", "", "/a/b/", pat1, nil},
    		{"GET", "", "/a/b/c", "", nil},
    		{"GET", "", "/a/b/c/d", "", nil},
    	})
    
    	// A pattern ending in a single wildcard should not match a trailing slash URL.
    	pat2 := "/a/b/{w}"
    	test(buildTree(pat2), []testCase{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SmbResourceLocator.java

         * the root URL <code>smb://</code> is also <code>smb://</code>. If this
         * <tt>SmbFile</tt> refers to a workgroup, server, share, or directory,
         * the name will include a trailing slash '/' so that composing new
         * <tt>SmbFile</tt>s will maintain the trailing slash requirement.
         *
         * @return The last component of the URL associated with this SMB
         *         resource or <code>smb://</code> if the resource is <code>smb://</code>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.6K bytes
    - Viewed (0)
  10. src/cmd/covdata/tool_test.go

    	t.Logf("%% output: %s\n", string(b))
    	if err != nil {
    		t.Fatalf("clash merge failed: %v", err)
    	}
    
    	// Ask for a textual report from the two dirs. Here we have
    	// to report the mode clash.
    	out = "-o=" + filepath.Join(ccoutdir, "file.txt")
    	args = append([]string{}, "textfmt", ins, out)
    	if debugtrace {
    		t.Logf("clash textfmt command is %s %v\n", s.tool, args)
    	}
    	cmd = testenv.Command(t, s.tool, args...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top