Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 532 for _abc (0.06 sec)

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

            value   | escaped
            ''      | ''
            'abc'   | 'abc'
            'a\n\t' | 'a\n\t'
            /a\b/   | /a\\b/
        }
    
        def "escapes value for inclusion in a string"() {
            expect:
            new TemplateValue(value).groovyString == escaped
    
            where:
            value         | escaped
            ''            | ''
            'abc'         | 'abc'
            'a\n\t\r\b\f' | /a\n\t\r\b\f/
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/path/filepath/match_test.go

    type MatchTest struct {
    	pattern, s string
    	match      bool
    	err        error
    }
    
    var matchTests = []MatchTest{
    	{"abc", "abc", true, nil},
    	{"*", "abc", true, nil},
    	{"*c", "abc", true, nil},
    	{"a*", "a", true, nil},
    	{"a*", "abc", true, nil},
    	{"a*", "ab/c", false, nil},
    	{"a*/b", "abc/b", true, nil},
    	{"a*/b", "a/c/b", false, nil},
    	{"a*b*c*d*e*/f", "axbxcxdxe/f", true, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/PatternMatcherFactoryTest.java

            assertThat(matcher, matchesFile("abc"));
            assertThat(matcher, matchesFile("a", "abc", "a"));
            assertThat(matcher, matchesFile("q", "abc", "r", "abc"));
            assertThat(matcher, matchesFile("q", "r", "abc"));
            assertThat(matcher, matchesFile("abc", "q", "r"));
            assertThat(matcher, matchesFile("q", "r", "abc", "q", "r"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/FileTransformerTest.java

            assertEquals(resultFile, file);
            FileUtil.writeBytes(file.getAbsolutePath(), "abc".getBytes());
    
            path = "foo1/hoge.html";
            file = fileTransformer.createFile(path);
            resultFile = new File(fileTransformer.baseDir, path);
            assertEquals(resultFile, file);
            FileUtil.writeBytes(file.getAbsolutePath(), "abc".getBytes());
    
            path = "foo1/foo2/hoge.html";
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/BuildOptionSetTest.groovy

            def args = parser.parse("--some-option", "abc", "--some-flag")
            def bean = converter.convert(args, new Bean())
    
            then:
            bean.flag
            bean.prop == "abc"
        }
    
        def "can convert properties"() {
            def converter = set.propertiesConverter()
    
            when:
            def bean = converter.convert(["some.option": "abc", "some.flag": "true"], new Bean())
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cgroup_manager_linux_test.go

    	}
    
    	abc := NewCgroupName(ab, "c")
    
    	expectedABC := CgroupName([]string{"a", "", "b", "c"})
    	if !reflect.DeepEqual(abc, expectedABC) {
    		t.Errorf("Expected %d%+v; got %d%+v", len(expectedABC), expectedABC, len(abc), abc)
    	}
    
    	_ = NewCgroupName(ab, "d")
    
    	if !reflect.DeepEqual(abc, expectedABC) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/WindowsInstallationSupplierTest.groovy

                "8.0",
                "9.0-abc"
            ]
            registry.getStringValue(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, "SOFTWARE\\AdoptOpenJDK\\JDK\\8.0\\hotspot\\MSI", "Path") >> "c:\\jdk8"
            registry.getStringValue(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, "SOFTWARE\\AdoptOpenJDK\\JDK\\9.0-abc\\hotspot\\MSI", "Path") >> "d:\\jdk9"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 22:14:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. istioctl/pkg/util/handlers/handlers_test.go

    		wantNamespace string
    	}{
    		{
    			name:          "foo-abc.istio-system",
    			wantPodName:   "foo-abc",
    			wantNamespace: "istio-system",
    		},
    		{
    			name:          "foo-abc",
    			wantPodName:   "foo-abc",
    			wantNamespace: "test",
    		},
    		{
    			name:          "Deployment/foo.istio-system",
    			wantPodName:   "foo-abc",
    			wantNamespace: "istio-system",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 18:17:49 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. src/bytes/bytes_test.go

    	}
    }
    
    var cutTests = []struct {
    	s, sep        string
    	before, after string
    	found         bool
    }{
    	{"abc", "b", "a", "c", true},
    	{"abc", "a", "", "bc", true},
    	{"abc", "c", "ab", "", true},
    	{"abc", "abc", "", "", true},
    	{"abc", "", "", "abc", true},
    	{"abc", "d", "abc", "", false},
    	{"", "d", "", "", false},
    	{"", "", "", "", true},
    }
    
    func TestCut(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
Back to top