Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,423 for Trailing (0.16 sec)

  1. .editorconfig

    indent_style = space
    indent_size = 4
    
    # We recommend you to keep these unchanged
    end_of_line = lf
    charset = utf-8
    trim_trailing_whitespace = true
    insert_final_newline = true
    
    # Markdown files sometimes need trailing whitespaces.
    [*.md]
    trim_trailing_whitespace = false
    
    [*.{yml,yaml}]
    indent_size = 2
    
    [gradle/verification-metadata.xml]
    indent_size = 3
    
    [subprojects/launcher/src/main/resources/release-features.txt]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 11:48:19 UTC 2023
    - 643 bytes
    - Viewed (0)
  2. 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)
  3. src/archive/tar/strconv.go

    		b[len(s)] = 0
    	}
    
    	// Some buggy readers treat regular files with a trailing slash
    	// in the V7 path field as a directory even though the full path
    	// recorded elsewhere (e.g., via PAX record) contains no trailing slash.
    	if len(s) > len(b) && b[len(b)-1] == '/' {
    		n := len(strings.TrimRight(s[:len(b)-1], "/"))
    		b[n] = 0 // Replace trailing slash with NUL terminator
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:28:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/heading.go

    	peek := s
    	var n int
    	if peek.trimHeading(&n) {
    		s := peek.string()
    		s = trimRightSpaceTab(s)
    		// Remove trailing '#'s.
    		if t := strings.TrimRight(s, "#"); t != trimRightSpaceTab(t) || t == "" {
    			s = t
    		}
    		var id string
    		if p.HeadingIDs {
    			// Parse and remove ID attribute.
    			// It must come before trailing '#'s to more closely follow the spec:
    			//    The optional closing sequence of #s must be preceded by spaces or tabs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. src/net/http/routing_index.go

    	// For example, the key {1, "b"} would hold the patterns "/a/b" and "/a/b/c"
    	// but not "/a", "b/a", "/a/c" or "/a/{x}".
    	segments map[routingIndexKey][]*pattern
    	// All patterns that end in a multi wildcard (including trailing slash).
    	// We do not try to be clever about indexing multi patterns, because there
    	// are unlikely to be many of them.
    	multis []*pattern
    }
    
    type routingIndexKey struct {
    	pos int    // 0-based segment position
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 19 18:35:22 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/testdata/fallthrough.go

    		}
    
    	case 2:
    		{
    			fallthrough // ERROR fallthrough statement out of place
    		}
    
    	case 3:
    		for {
    			fallthrough // ERROR fallthrough statement out of place
    		}
    
    	case 4:
    		fallthrough // trailing empty statements are ok
    		;
    		;
    
    	case 5:
    		fallthrough
    
    	default:
    		fallthrough // ERROR cannot fallthrough final case in switch
    	}
    
    	fallthrough // ERROR fallthrough statement out of place
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 946 bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/mips64.s

    //
    // NOP
    //
    //	LNOP comma // asm doesn't support the trailing comma.
    //	{
    //		outcode(int($1), &nullgen, 0, &nullgen);
    //	}
    	NOP
    
    //	LNOP rreg comma // asm doesn't support the trailing comma.
    //	{
    //		outcode(int($1), &$2, 0, &nullgen);
    //	}
    	NOP R2
    
    //	LNOP freg comma // asm doesn't support the trailing comma.
    //	{
    //		outcode(int($1), &$2, 0, &nullgen);
    //	}
    	NOP	F2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. 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)
  9. src/path/path.go

    		}
    	}
    	return ""
    }
    
    // Base returns the last element of path.
    // Trailing slashes are removed before extracting the last element.
    // If the path is empty, Base returns ".".
    // If the path consists entirely of slashes, Base returns "/".
    func Base(path string) string {
    	if path == "" {
    		return "."
    	}
    	// Strip trailing slashes.
    	for len(path) > 0 && path[len(path)-1] == '/' {
    		path = path[0 : len(path)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 23 17:33:57 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. src/net/textproto/textproto.go

    	}
    	return id, nil
    }
    
    // TrimString returns s without leading and trailing ASCII space.
    func TrimString(s string) string {
    	for len(s) > 0 && isASCIISpace(s[0]) {
    		s = s[1:]
    	}
    	for len(s) > 0 && isASCIISpace(s[len(s)-1]) {
    		s = s[:len(s)-1]
    	}
    	return s
    }
    
    // TrimBytes returns b without leading and trailing ASCII space.
    func TrimBytes(b []byte) []byte {
    	for len(b) > 0 && isASCIISpace(b[0]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top