Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 197 for _abc (0.12 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/regexp/syntax/parse_test.go

    	{`\^`, `lit{^}`},
    	{`\$`, `lit{$}`},
    	{`\\`, `lit{\}`},
    	{`[ace]`, `cc{0x61 0x63 0x65}`},
    	{`[abc]`, `cc{0x61-0x63}`},
    	{`[a-z]`, `cc{0x61-0x7a}`},
    	{`[a]`, `lit{a}`},
    	{`\-`, `lit{-}`},
    	{`-`, `lit{-}`},
    	{`\_`, `lit{_}`},
    	{`abc`, `str{abc}`},
    	{`abc|def`, `alt{str{abc}str{def}}`},
    	{`abc|def|ghi`, `alt{str{abc}str{def}str{ghi}}`},
    
    	// Posix and Perl extensions
    	{`[[:lower:]]`, `cc{0x61-0x7a}`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParserTest.groovy

            and:
            noImports()
    
            where:
            include       | macro
            'A()'         | 'A'
            'A( )'        | 'A'
            'ABC( )'      | 'ABC'
            '_A$2( )'     | '_A$2'
            'abc( )'      | 'abc'
            'a12  \t(\t)' | 'a12'
        }
    
        def "finds macro function call include with parameters"() {
            when:
            sourceFile << """
        #include ${include}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/base/StringsTest.java

        // Identical valid surrogate pairs.
        assertEquals(
            "abc\uD8AB\uDCAB", Strings.commonPrefix("abc\uD8AB\uDCABdef", "abc\uD8AB\uDCABxyz"));
        // Differing valid surrogate pairs.
        assertEquals("abc", Strings.commonPrefix("abc\uD8AB\uDCABdef", "abc\uD8AB\uDCACxyz"));
        // One invalid pair.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultFileCollectionFactoryTest.groovy

            'closure'          | ({ ['abc', 'def'] } as Object[])
            'collection(list)' | ['abc', 'def']
            'array'            | (['abc', 'def'] as Object[])
            'FileCollection'   | fileCollectionOf(tmpDir.file('abc'), tmpDir.file('def'))
            'Callable'         | (({ ['abc', 'def'] } as Callable<Object>) as Object[])
            'Provider'         | providerReturning(['abc', 'def'])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  10. 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)
Back to top