Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 129 for abcdeff (0.32 sec)

  1. cluster/common.sh

    export KUBE_RELEASE_VERSION_DASHED_REGEX="v(0|[1-9][0-9]*)-(0|[1-9][0-9]*)-(0|[1-9][0-9]*)(-([a-zA-Z0-9]+)-(0|[1-9][0-9]*))?"
    
    # KUBE_CI_VERSION_REGEX matches things like "v1.2.3-alpha.4.56+abcdefg" and "v1.2.3-56+abcdefg"
    #
    # NOTE This must match the version_regex in build/common.sh
    #
    # TODO: KUBE_CI_VERSION_REGEX is used in hack/get-build.sh and KUBE_CI_VERSION_DASHED_REGEX is used in cluster/gce/util.sh,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriterTest.groovy

        }
    
        @Issue("https://github.com/gradle/gradle/issues/27891")
        def "can declare and sorts ignored keys"() {
            when:
            builder.addIgnoredKey(new IgnoredKey("ABCDEF", null))
            builder.addIgnoredKey(new IgnoredKey("012345", "test"))
            serialize()
    
            then:
            contents == """<?xml version="1.0" encoding="UTF-8"?>
    <verification-metadata>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  3. src/net/http/http_test.go

    	src := url.Values{
    		"a": {"1", "2", "3", "4", "5"},
    		"b": {"2", "2", "3", "4", "5"},
    		"c": {"3", "2", "3", "4", "5"},
    		"d": {"4", "2", "3", "4", "5"},
    		"e": {"1", "1", "2", "3", "4", "5", "6", "7", "abcdef", "l", "a", "b", "c", "d", "z"},
    		"j": {"1", "2"},
    		"m": nil,
    	}
    	for i := 0; i < b.N; i++ {
    		dst := url.Values{"a": {"b"}, "b": {"2"}, "c": {"3"}, "d": {"4"}, "j": nil, "m": {"x"}}
    		copyValues(dst, src)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 18:18:19 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/TreeTraverserTest.java

        assertThat(iterationOrder(ADAPTER.preOrderTraversal(h))).isEqualTo("hdabcegf");
      }
    
      public void testPostOrder() {
        assertThat(iterationOrder(ADAPTER.postOrderTraversal(h))).isEqualTo("abcdefgh");
      }
    
      public void testBreadthOrder() {
        assertThat(iterationOrder(ADAPTER.breadthFirstTraversal(h))).isEqualTo("hdegabcf");
      }
    
      public void testUsing() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. src/math/rand/rand_test.go

    	stddev      float64
    	closeEnough float64
    	maxError    float64
    }
    
    func nearEqual(a, b, closeEnough, maxError float64) bool {
    	absDiff := math.Abs(a - b)
    	if absDiff < closeEnough { // Necessary when one value is zero and one value is close to zero.
    		return true
    	}
    	return absDiff/max(math.Abs(a), math.Abs(b)) < maxError
    }
    
    var testSeeds = []int64{1, 1754801282, 1698661970, 1550503961}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/check_test.go

    	switch err := err.(type) {
    	case syntax.Error:
    		return err.Pos, err.Msg
    	case Error:
    		return err.Pos, err.Msg
    	default:
    		return nopos, err.Error()
    	}
    }
    
    // absDiff returns the absolute difference between x and y.
    func absDiff(x, y uint) uint {
    	if x < y {
    		return y - x
    	}
    	return x - y
    }
    
    // parseFlags parses flags from the first line of the given source if the line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/archive/tar/reader_test.go

    			testRead{0, "", io.EOF},
    		},
    	}, {
    		maker: makeSparse{makeReg{"abcde", 5}, sparseDatas{{0, 2}, {5, 3}}, 8},
    		tests: []testFnc{
    			testRemaining{8, 5},
    			testRead{3, "ab\x00", nil},
    			testRead{10, "\x00\x00cde", io.EOF},
    			testRemaining{0, 0},
    		},
    	}, {
    		maker: makeSparse{makeReg{"abcde", 5}, sparseDatas{{0, 2}, {5, 3}}, 8},
    		tests: []testFnc{
    			testRemaining{8, 5},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  8. src/regexp/syntax/parse_test.go

    	{`(?<name>a)`, `cap{name:lit{a}}`},
    
    	// Case-folded literals
    	{`[Aa]`, `litfold{A}`},
    	{`[\x{100}\x{101}]`, `litfold{Ā}`},
    	{`[Δδ]`, `litfold{Δ}`},
    
    	// Strings
    	{`abcde`, `str{abcde}`},
    	{`[Aa][Bb]cd`, `cat{strfold{AB}str{cd}}`},
    
    	// Factoring.
    	{`abc|abd|aef|bcx|bcy`, `alt{cat{lit{a}alt{cat{lit{b}cc{0x63-0x64}}str{ef}}}cat{str{bc}cc{0x78-0x79}}}`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  9. src/regexp/syntax/simplify_test.go

    	{`(?:a{1,})?`, `(?:a+)?`},
    	{``, `(?:)`},
    	{`a{0}`, `(?:)`},
    
    	// Character class simplification
    	{`[ab]`, `[ab]`},
    	{`[abc]`, `[a-c]`},
    	{`[a-za-za-z]`, `[a-z]`},
    	{`[A-Za-zA-Za-z]`, `[A-Za-z]`},
    	{`[ABCDEFGH]`, `[A-H]`},
    	{`[AB-CD-EF-GH]`, `[A-H]`},
    	{`[W-ZP-XE-R]`, `[E-Z]`},
    	{`[a-ee-gg-m]`, `[a-m]`},
    	{`[a-ea-ha-m]`, `[a-m]`},
    	{`[a-ma-ha-e]`, `[a-m]`},
    	{`[a-zA-Z0-9 -~]`, `[ -~]`},
    
    	// Empty character classes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/io/BaseEncodingTest.java

        // An 8n+{1,3,6} length string is never legal base32.
        assertFailsToDecode(base32(), "A", "Invalid input length 1");
        assertFailsToDecode(base32(), "ABC");
        assertFailsToDecode(base32(), "ABCDEF");
        // These have a combination of invalid length, unrecognized characters and wrong padding.
        assertFailsToDecode(base32(), "AB=C", "Unrecognized character: =");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 24.6K bytes
    - Viewed (0)
Back to top