Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 98 for Trailing (0.32 sec)

  1. security/pkg/pki/testdata/cert-chain-trailing-line.pem

    sschepens <******@****.***> 1717506007 -0300
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/mux/pathrecorder.go

    }
    
    // HandlePrefix is like Handle, but matches for anything under the path.  Like a standard golang trailing slash.
    func (m *PathRecorderMux) HandlePrefix(path string, handler http.Handler) {
    	if !strings.HasSuffix(path, "/") {
    		panic(fmt.Sprintf("%q must end in a trailing slash", path))
    	}
    
    	m.lock.Lock()
    	defer m.lock.Unlock()
    	m.trackCallers(path)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 01:52:15 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/internal/syscall/unix/constants.go

    //go:build unix
    
    package unix
    
    const (
    	R_OK = 0x4
    	W_OK = 0x2
    	X_OK = 0x1
    
    	// NoFollowErrno is the error returned from open/openat called with
    	// O_NOFOLLOW flag, when the trailing component (basename) of the path
    	// is a symbolic link.
    	NoFollowErrno = noFollowErrno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 434 bytes
    - Viewed (0)
  4. src/internal/trace/raw/doc.go

    is identified via unicode.IsSpace.
    
    Some events have additional data on following lines. There are two such
    special cases.
    
    The first special case consists of events with trailing byte-oriented data.
    The trailer begins on the following line from the event. That line consists
    of a single argument 'data' and a Go-quoted string representing the byte data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/net/http/routing_tree.go

    	// Again, by construction, patterns with a single wildcard must be more specific than
    	// those with a multi wildcard.
    	// We skip this step if the segment is a trailing slash, because single wildcards
    	// don't match trailing slashes.
    	if seg != "/" {
    		if n, m := n.emptyChild.matchPath(rest, append(matches, seg)); n != nil {
    			return n, m
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      //
      // A pathname with multiple consecutive separators may occur either through
      // user error or as a result of some scripts or APIs that generate a pathname
      // with a trailing separator. On other platforms the same API or script
      // may NOT generate a pathname with a trailing "/". Then elsewhere that
      // pathname may have another "/" and pathname components added to it,
      // without checking for the separator already being there.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. src/os/path_unix.go

    	dirname := "."
    
    	// Remove all but one leading slash.
    	for len(path) > 1 && path[0] == '/' && path[1] == '/' {
    		path = path[1:]
    	}
    
    	i := len(path) - 1
    
    	// Remove trailing slashes.
    	for ; i > 0 && path[i] == '/'; i-- {
    		path = path[:i]
    	}
    
    	// if no slashes in path, base is path
    	basename := path
    
    	// Remove leading directory path
    	for i--; i >= 0; i-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. src/math/big/floatmarsh.go

    	if x.form == finite {
    		// add space for mantissa and exponent
    		n = int((x.prec + (_W - 1)) / _W) // required mantissa length in words for given precision
    		// actual mantissa slice could be shorter (trailing 0's) or longer (unused bits):
    		// - if shorter, only encode the words present
    		// - if longer, cut off unused words when encoding in bytes
    		//   (in practice, this should never happen since rounding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/events/YesNoQuestionPromptEventTest.groovy

    class YesNoQuestionPromptEventTest extends Specification {
        def "formats prompt"() {
            def event = new YesNoQuestionPromptEvent(123, "question?")
    
            expect:
            event.prompt == "question? [yes, no] " // trailing space
        }
    
        def "accepts valid input"() {
            def event = new YesNoQuestionPromptEvent(123, "question?")
    
            expect:
            def result = event.convert(input)
            result.response == expected
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. src/internal/filepathlite/path_windows.go

    func isReservedName(name string) bool {
    	// Device names can have arbitrary trailing characters following a dot or colon.
    	base := name
    	for i := 0; i < len(base); i++ {
    		switch base[i] {
    		case ':', '.':
    			base = base[:i]
    		}
    	}
    	// Trailing spaces in the last path element are ignored.
    	for len(base) > 0 && base[len(base)-1] == ' ' {
    		base = base[:len(base)-1]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top