Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 1,085 for Trailing (0.99 sec)

  1. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    			return -1
    		}
    		i = p
    		info, p = lastRuneStart(fd, b[:i])
    		if p == -1 { // incomplete UTF-8 encoding or non-starter bytes without a starter
    			return i
    		}
    	}
    	if p+int(info.size) != i { // trailing non-starter bytes: illegal UTF-8
    		return i
    	}
    	if info.BoundaryAfter() {
    		return i
    	}
    	ss := streamSafe(0)
    	v := ss.backwards(info)
    	for i = p; i >= 0 && v != ssStarter; i = p {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/workcmd/use.go

    			continue
    		}
    
    		// Add or remove entries for any subdirectories that still exist.
    		// If the root itself is a symlink to a directory,
    		// we want to follow it (see https://go.dev/issue/50807).
    		// Add a trailing separator to force that to happen.
    		fsys.Walk(str.WithFilePathSeparator(useDir), func(path string, info fs.FileInfo, err error) error {
    			if err != nil {
    				return err
    			}
    
    			if !info.IsDir() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  3. platforms/jvm/ear/src/integTest/resources/org/gradle/plugins/ear/application_1_3.dtd

    Microsystems, Inc.//DTD J2EE Application 1.3//EN" "http://java.sun.com/dtd/application_1_3.dtd"> --> <!-- The following conventions apply to all J2EE deployment descriptor elements unless indicated otherwise. - In elements that contain PCDATA, leading and trailing whitespace in the data may be ignored. - In elements whose value is an "enumerated type", the value is case sensitive. - In elements that specify a pathname to a file within the same JAR file, relative filenames (i.e., those not starting with "/")...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. gradlew

    # Attempt to set APP_HOME
    
    # Resolve links: $0 may be a link
    app_path=$0
    
    # Need this for daisy-chained symlinks.
    while
        APP_HOME=${app_path%"${app_path##*/}"}  # leaves a trailing /; empty if no leading path
        [ -h "$app_path" ]
    do
        ls=$( ls -ld "$app_path" )
        link=${ls#*' -> '}
        case $link in             #(
          /*)   app_path=$link ;; #(
          *)    app_path=$APP_HOME$link ;;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 24 09:00:26 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go

    // in accordance to the total, if it's an int value it's treated as a simple value and
    // if it is a string value which is either non-numeric or numeric but lacking a trailing '%' it returns an error.
    func GetScaledValueFromIntOrPercent(intOrPercent *IntOrString, total int, roundUp bool) (int, error) {
    	if intOrPercent == nil {
    		return 0, errors.New("nil value for IntOrString")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modindex/scan.go

    	fsys.Trace("indexModule", modroot)
    	var packages []*rawPackage
    
    	// If the root itself is a symlink to a directory,
    	// we want to follow it (see https://go.dev/issue/50807).
    	// Add a trailing separator to force that to happen.
    	root := str.WithFilePathSeparator(modroot)
    	err := fsys.Walk(root, func(path string, info fs.FileInfo, err error) error {
    		if err := moduleWalkErr(root, path, info, err); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Com64", argLength: 1},
    
    	{name: "Ctz8", argLength: 1},         // Count trailing (low order) zeroes (returns 0-8)
    	{name: "Ctz16", argLength: 1},        // Count trailing (low order) zeroes (returns 0-16)
    	{name: "Ctz32", argLength: 1},        // Count trailing (low order) zeroes (returns 0-32)
    	{name: "Ctz64", argLength: 1},        // Count trailing (low order) zeroes (returns 0-64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. cmd/os_unix.go

    		if strings.HasPrefix(baseDir, dirPath) {
    			return nil
    		}
    	}
    
    	// Slow path: make sure parent exists and then call Mkdir for path.
    	i := len(dirPath)
    	for i > 0 && os.IsPathSeparator(dirPath[i-1]) { // Skip trailing path separator.
    		i--
    	}
    
    	j := i
    	for j > 0 && !os.IsPathSeparator(dirPath[j-1]) { // Scan backward over element.
    		j--
    	}
    
    	if j > 1 {
    		// Create parent.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Splitter.java

        return new Splitter(strategy, omitEmptyStrings, trimmer, maxItems);
      }
    
      /**
       * Returns a splitter that behaves equivalently to {@code this} splitter, but automatically
       * removes leading and trailing {@linkplain CharMatcher#whitespace whitespace} from each returned
       * substring; equivalent to {@code trimResults(CharMatcher.whitespace())}. For example, {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/printer_test.go

    	dup("package p; type _[P *T | T | struct{} | T] struct{}"),
    	dup("package p; type _[P <-chan int] struct{}"),
    	dup("package p; type _[P *T | struct{} | T] struct{}"),
    
    	// a trailing comma always indicates a (possibly invalid) type parameter list (blank after type parameter list and type)
    	dup("package p; type _[P *T,] struct{}"),
    	dup("package p; type _[P *T | T,] struct{}"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 17:08:18 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top