Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 1,085 for Trailing (0.31 sec)

  1. src/internal/fuzz/encoding_test.go

    byte('☃')`,
    			reject: true,
    		},
    		{
    			desc: "extra newline",
    			in: `go test fuzz v1
    string("has extra newline")
    `,
    			want: `go test fuzz v1
    string("has extra newline")`,
    		},
    		{
    			desc: "trailing spaces",
    			in: `go test fuzz v1
    string("extra")
    []byte("spacing")  
        `,
    			want: `go test fuzz v1
    string("extra")
    []byte("spacing")`,
    		},
    		{
    			desc: "float types",
    			in: `go test fuzz v1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 00:20:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. cmd/signature-v4-utils.go

    			extractedSignedHeaders.Set(header, strconv.FormatInt(r.ContentLength, 10))
    		default:
    			return nil, ErrUnsignedHeaders
    		}
    	}
    	return extractedSignedHeaders, ErrNone
    }
    
    // Trim leading and trailing spaces and replace sequential spaces with one space, following Trimall()
    // in http://docs.aws.amazon.com/general/latest/gr/sigv4-create-canonical-request.html
    func signV4TrimAll(input string) string {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/proxy/transport.go

    	if strings.HasPrefix(url.Path, t.PathPrepend) {
    		return url.String()
    	}
    	url.Path = path.Join(t.PathPrepend, url.Path)
    	if strings.HasSuffix(origPath, "/") {
    		// Add back the trailing slash, which was stripped by path.Join().
    		url.Path += "/"
    	}
    
    	return url.String()
    }
    
    // rewriteHTML scans the HTML for tags with url-valued attributes, and updates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. src/internal/diff/diff.go

    	// Loop over matches to consider,
    	// expanding each match to include surrounding lines,
    	// and then printing diff chunks.
    	// To avoid setup/teardown cases outside the loop,
    	// tgs returns a leading {0,0} and trailing {len(x), len(y)} pair
    	// in the sequence of matches.
    	var (
    		done  pair     // printed up to x[:done.x] and y[:done.y]
    		chunk pair     // start lines of current chunk
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 14:13:04 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    # 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 ;; #(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/get.go

    		// ensure non-empty subpaths correctly reflect a leading slash
    		if len(p) > 0 && !strings.HasPrefix(p, "/") {
    			p = "/" + p
    		}
    
    		// ensure subpaths correctly reflect the presence of a trailing slash on the original request
    		if strings.HasSuffix(requestInfo.Path, "/") && !strings.HasSuffix(p, "/") {
    			p += "/"
    		}
    
    		newQuery[subpathKey] = []string{p}
    		query = newQuery
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/io/Files.java

          }
        }
      }
    
      /**
       * Reads the first line from a file. The line does not include line-termination characters, but
       * does include other leading and trailing whitespace.
       *
       * @param file the file to read from
       * @param charset the charset used to decode the input stream; see {@link StandardCharsets} for
       *     helpful predefined constants
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. src/time/example_test.go

    	// If the layout digits are 0s, the fractional second is of the specified
    	// width. Note that the output has a trailing zero.
    	do("0s for fraction", "15:04:05.00000", "11:06:39.12340")
    
    	// If the fraction in the layout is 9s, trailing zeros are dropped.
    	do("9s for fraction", "15:04:05.99999999", "11:06:39.1234")
    
    	// Output:
    	// default format: 2015-02-25 11:06:39 -0800 PST
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/io/CharStreams.java

          copy(r, sb);
        }
        return sb;
      }
    
      /**
       * Reads all of the lines from a {@link Readable} object. The lines do not include
       * line-termination characters, but do include other leading and trailing whitespace.
       *
       * <p>Does not close the {@code Readable}. If reading files or resources you should use the {@link
       * Files#readLines} and {@link Resources#readLines} methods.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/vcstest/git/vgotest1.txt

    echo 'module "github.com/vgotest1/v2"'
    cp stdout go.mod
    git add go.mod
    git commit -m 'say v2 in root go.mod'
    
    git checkout --detach HEAD
    at 2018-02-19T17:51:24-05:00
    	# README.md at this commit lacked a trailing newline, so 'git apply' can't
    	# seem to apply it correctly as a patch. Instead, we use 'echo -e' to write
    	# the exact contents.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 7.9K bytes
    - Viewed (0)
Back to top