Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for a_b (0.03 sec)

  1. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/NamespaceBuilderTest.groovy

            "-"        | ""
            ":a"       | "a"
            ":abc"     | "abc"
            ":a:b:c"   | "a_b_c"
            ":a:b:c:"  | "a_b_c"
            "a-b-c"    | "a_b_c"
            "-a-b-c-"  | "a_b_c"
            "::a::b::" | "a_b"
            "a b c"    | "a_b_c"
            "  a b c " | "a_b_c"
            "~abc"     | "abc"
            "~a~b~c~"  | "a_b_c"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    		"-", "a-", "-a", "1-", "-1",
    		"_", "a_", "_a", "a_b", "1_", "_1", "1_2",
    		".", "a.", ".a", "a..b", "1.", ".1", "1..2",
    		" ", "a ", " a", "a b", "1 ", " 1", "1 2",
    		"A.a", "aB.a", "ab.A", "A1.a", "a1.A",
    		"A.1", "aB.1", "A1.1", "1A.1",
    		"0.A", "01.A", "012.A", "1A.a", "1a.A",
    		"A.B.C.D.E", "AA.BB.CC.DD.EE", "a.B.c.d.e", "aa.bB.cc.dd.ee",
    		"a@b", "a,b", "a_b", "a;b",
    		"a:b", "a%b", "a?b", "a$b",
    		strings.Repeat("a", 254),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. pkg/apis/policy/validation/validation_test.go

    					t.Errorf("expected errors but didn't one for %v", tc.pdbStatus)
    				}
    			})
    		}
    	}
    }
    
    func TestIsValidSysctlPattern(t *testing.T) {
    	valid := []string{
    		"a.b.c.d",
    		"a",
    		"a_b",
    		"a-b",
    		"abc",
    		"abc.def",
    		"*",
    		"a.*",
    		"*",
    		"abc*",
    		"a.abc*",
    		"a.b.*",
    		"a/b/c/d",
    		"a/*",
    		"a/b/*",
    		"a.b/c*",
    		"a.b/c.d",
    		"a/b.c/d",
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/tests/make_test_graphs.py

        y0 += 1
        z = math_ops.matmul(x, y, name='x_y_prod')
        a = array_ops.concat([x0, y1], axis=0, name='concat_x0_y1')
        b = array_ops.concat([y0, x1], axis=0, name='concat_y0_x1')
        x = math_ops.matmul(a, b, name='a_b')
        y = math_ops.add(x, z)
      array_ops.identity(y, name='result')
    
    
    def tftop_k(_):
      x = array_ops.placeholder(dtypes.int32, shape=[5], name='x')
      output = nn_ops.top_k(x, 2, name='values')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilderTest.groovy

            model.getBundle("my").components == ["foo.bar", "foo.baz", "foo.qux"]
    
            model.getBundle("a.b").is(model.getBundle("a-b"))
            model.getBundle("a.b").is(model.getBundle("a_b"))
        }
    
        def "can use arbitrary separators when referencing versions"() {
            builder.version("my-v1", "1.0")
            builder.version("my_v2", "1.0")
            builder.version("my.v3") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 17 22:25:43 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/GUtilTest.groovy

            toConstant("four or so Words") == "FOUR_OR_SO_WORDS"
            toConstant("trailing-") == "TRAILING"
            toConstant("a") == "A"
            toConstant("A") == "A"
            toConstant("aB") == "A_B"
            toConstant("ABC") == "ABC"
            toConstant("ABCThing") == "ABC_THING"
            toConstant("ABC Thing") == "ABC_THING"
            toConstant("123-project") == "123_PROJECT"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  7. src/mime/encodedword_test.go

    		{"=?ISO-8859-1?Q?a?= b", "a b"},
    		{"=?ISO-8859-1?Q?a?= =?ISO-8859-1?Q?b?=", "ab"},
    		{"=?ISO-8859-1?Q?a?=  =?ISO-8859-1?Q?b?=", "ab"},
    		{"=?ISO-8859-1?Q?a?= \r\n\t =?ISO-8859-1?Q?b?=", "ab"},
    		{"=?ISO-8859-1?Q?a_b?=", "a b"},
    	}
    
    	for _, test := range tests {
    		dec := new(WordDecoder)
    		s, err := dec.DecodeHeader(test.src)
    		if err != nil {
    			t.Errorf("DecodeHeader(%q): %v", test.src, err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 7K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation_test.go

    		t.Errorf("expected failure")
    	}
    }
    
    func TestIsValidSysctlName(t *testing.T) {
    	valid := []string{
    		"a.b.c.d",
    		"a",
    		"a_b",
    		"a-b",
    		"abc",
    		"abc.def",
    		"a/b/c/d",
    		"a/b.c",
    	}
    	invalid := []string{
    		"",
    		"*",
    		"รค",
    		"a_",
    		"_",
    		"__",
    		"_a",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top