Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,423 for Trailing (0.65 sec)

  1. ci/official/envs/nightly_upload

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    # IMPORTANT: trailing slash is required on GCS URIs, as it tells gcloud to
    # pretend the path is a directory.
    # 1. Upload nightlies
    TFCI_ARTIFACT_FINAL_GCS_ENABLE=1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 19 19:07:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/SubVersionSelectorTest.groovy

        def "never needs metadata"() {
            expect:
            !requiresMetadata("1+")
            !requiresMetadata("1.2.3+")
        }
    
        def "accepts candidate versions that literally match the selector up until the trailing '+'"() {
            expect:
            accept("1+", "11")
            accept("1.+", "1.2")
            accept("1.2.3+", "1.2.3.11")
            !accept("1+", "2")
            !accept("1.+", "11")
            !accept("1.2.3+", "1.2")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/escape/UnicodeEscaper.java

        int destIndex = 0;
        int unescapedChunkStart = 0;
    
        while (index < end) {
          int cp = codePointAt(s, index, end);
          if (cp < 0) {
            throw new IllegalArgumentException("Trailing high surrogate at end of input");
          }
          // It is possible for this to return null because nextEscapeIndex() may
          // (for performance reasons) yield some false positives but it must never
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/escape/UnicodeEscaper.java

        int destIndex = 0;
        int unescapedChunkStart = 0;
    
        while (index < end) {
          int cp = codePointAt(s, index, end);
          if (cp < 0) {
            throw new IllegalArgumentException("Trailing high surrogate at end of input");
          }
          // It is possible for this to return null because nextEscapeIndex() may
          // (for performance reasons) yield some false positives but it must never
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  5. src/internal/bytealg/indexbyte_arm64.s

    	// relevant byte matched the requested character and bit 1 is
    	// not used (faster than using a 32bit syndrome). Since the bits
    	// in the syndrome reflect exactly the order in which things occur
    	// in the original string, counting trailing zeros allows to
    	// identify exactly which byte has matched.
    
    	CBZ	R2, fail
    	MOVD	R0, R11
    	// Magic constant 0x40100401 allows us to identify
    	// which lane matches the requested byte.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 3.3K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/ytab.go

    // to index ycover table like `ycover[args[i]+yt.args[i]]`.
    // This means that args should contain values that already
    // multiplied by Ymax.
    func (yt *ytab) match(args []int) bool {
    	// Trailing Yxxx check is required to avoid a case
    	// where shorter arg list is matched.
    	// If we had exact yt.args length, it could be `yt.argc != len(args)`.
    	if len(args) < len(yt.args) && yt.args[len(args)] != Yxxx {
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 06 15:40:03 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  7. 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)
  8. src/go/format/format.go

    // correct Go source file, or a list of Go declarations or statements.
    //
    // If src is a partial source file, the leading and trailing space of src
    // is applied to the result (such that it has the same leading and trailing
    // space as src), and the result is indented by the same amount as the first
    // line of src containing code. Imports are not sorted for partial source files.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. 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)
  10. src/go/printer/example_test.go

    	// line breaks where they were present in the source.
    	var buf bytes.Buffer
    	printer.Fprint(&buf, fset, funcAST.Body)
    
    	// Remove braces {} enclosing the function body, unindent,
    	// and trim leading and trailing white space.
    	s := buf.String()
    	s = s[1 : len(s)-1]
    	s = strings.TrimSpace(strings.ReplaceAll(s, "\n\t", "\n"))
    
    	// Print the cleaned-up body text to stdout.
    	fmt.Println(s)
    }
    
    func ExampleFprint() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 14:55:02 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top