Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 132 for _abc (0.15 sec)

  1. tensorflow/compiler/aot/codegen_test.cc

          << "expected error: " << status.message() << " to contain: " << str;
    }
    
    TEST(ValidateCppIdent, Simple) {
      TF_EXPECT_OK(ValidateCppIdent("a", ""));
      TF_EXPECT_OK(ValidateCppIdent("abc", ""));
      TF_EXPECT_OK(ValidateCppIdent("_abc", ""));
      TF_EXPECT_OK(ValidateCppIdent("_abc123", ""));
      // Make sure we didn't skip a valid letter or digit
      string ident;
      for (char c = 'a'; c <= 'z'; c++) {
        ident.append(1, c);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 01 02:13:40 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/time/format_test.go

    	{RFC3339, "2006-01-02T15:04:05_abc", `parsing time "2006-01-02T15:04:05_abc" as "2006-01-02T15:04:05Z07:00": cannot parse "_abc" as "Z07:00"`},
    	{RFC3339, "2006-01-02T15:04:05Z_abc", `parsing time "2006-01-02T15:04:05Z_abc": extra text: "_abc"`},
    	// invalid second followed by optional fractional seconds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/DocumentHelperTest.java

            assertEquals("123 abc", documentHelper.getContent(null, responseData, " 123 abc ", dataMap));
            assertEquals("123 あいう", documentHelper.getContent(null, responseData, " 123 あいう ", dataMap));
            assertEquals("123 abc", documentHelper.getContent(null, responseData, " 123\nabc ", dataMap));
        }
    
        public void test_getContent_maxAlphanum() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/lang/StringUtilTest.java

            assertEquals("", StringUtil.substringToLast("abc", "c"));
            assertEquals("c", StringUtil.substringToLast("abc", "b"));
            assertEquals("c", StringUtil.substringToLast("abcbc", "b"));
            assertEquals("abc", StringUtil.substringToLast("abc", ""));
            assertEquals("abc", StringUtil.substringToLast("abc", null));
            assertEquals("abc", StringUtil.substringToLast("abc", "dddd"));
        }
    
        /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. cmd/object-api-utils_test.go

    		{"/abc/", "/abc"},
    
    		// Remove doubled slash
    		{"abc//def//ghi", "abc/def/ghi"},
    		{"//abc", "/abc"},
    		{"///abc", "/abc"},
    		{"//abc//", "/abc"},
    		{"abc//", "abc"},
    
    		// Remove . elements
    		{"abc/./def", "abc/def"},
    		{"/./abc/def", "/abc/def"},
    		{"abc/.", "abc"},
    
    		// Remove .. elements
    		{"abc/def/ghi/../jkl", "abc/def/jkl"},
    		{"abc/def/../ghi/../jkl", "abc/jkl"},
    		{"abc/def/..", "abc"},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. plugin/pkg/admission/certificates/ctbattest/admission_test.go

    						SignerName: "abc.com/xyz",
    					},
    				},
    				operation: admission.Update,
    			},
    			authzErr: errors.New("forced error"),
    			allowed:  false,
    		},
    		{
    			description:                      "should allow create if no signer name is specified",
    			clusterTrustBundleFeatureEnabled: true,
    			allowedName:                      "abc.com/xyz",
    			attributes: &testAttributes{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/path/filepath/path_test.go

    	{"/abc/", "/abc"},
    
    	// Remove doubled slash
    	{"abc//def//ghi", "abc/def/ghi"},
    	{"abc//", "abc"},
    
    	// Remove . elements
    	{"abc/./def", "abc/def"},
    	{"/./abc/def", "/abc/def"},
    	{"abc/.", "abc"},
    
    	// Remove .. elements
    	{"abc/def/ghi/../jkl", "abc/def/jkl"},
    	{"abc/def/../ghi/../jkl", "abc/jkl"},
    	{"abc/def/..", "abc"},
    	{"abc/def/../..", "."},
    	{"/abc/def/../..", "/"},
    	{"abc/def/../../..", ".."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleSupportedTypesIntegrationTest.groovy

            "DirectoryProperty"           | "objects.directoryProperty()"         | "file('abc')"        | new File('abc')
            "DirectoryProperty"           | "objects.directoryProperty()"         | "(File) null"        | "null"
            "RegularFileProperty"         | "objects.fileProperty()"              | "file('abc')"        | new File('abc')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:40:52 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. src/regexp/all_test.go

    	{"", "", "", ""},
    	{"", "x", "", "x"},
    	{"", "", "abc", "abc"},
    	{"", "x", "abc", "xaxbxcx"},
    
    	// Test empty input and/or replacement, with pattern that does not match the empty string.
    	{"b", "", "", ""},
    	{"b", "x", "", ""},
    	{"b", "", "abc", "ac"},
    	{"b", "x", "abc", "axc"},
    	{"y", "", "", ""},
    	{"y", "x", "", ""},
    	{"y", "", "abc", "abc"},
    	{"y", "x", "abc", "abc"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    		// Common ones
    		"Accept-Encoding", "Host", "If-Modified-Since", "X-Forwarded-For",
    		// Weirdo, but still conforming names
    		"a", "ab", "abc", "a1", "-a", "a-", "a-b", "a-1", "a--1--2--b", "--abc-123",
    		"A", "AB", "AbC", "A1", "-A", "A-", "A-B", "A-1", "A--1--2--B", "--123-ABC",
    	}
    	for _, val := range goodValues {
    		if msgs := IsHTTPHeaderName(val); len(msgs) != 0 {
    			t.Errorf("expected true for '%s': %v", val, msgs)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top