Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for a_b (0.07 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. 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)
  3. 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)
  4. 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)
Back to top