Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 197 for _abc (0.94 sec)

  1. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/metadata/ExternalResourceMetaDataCompareTest.groovy

            given:
            configureMetadata(local, "abc", null, -1)
            configureMetadataForEtagMatch(remote, "abc")
    
            when:
            compare(local, remote)
    
            then:
            unchanged
        }
    
        def "non matching etags, no mod date, but matching content length does not match"() {
            given:
            configureMetadata(local, "abc", null, 10)
            configureMetadataForEtagMatch(remote, "cde")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  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. testing/integ-test/src/integTest/groovy/org/gradle/integtests/StdioIntegrationTest.groovy

                    super.connect(snk)
                    write(TextUtil.toPlatformLineSeparators("abc\n123").bytes)
                    close()
                }
            })
    
            when:
            run "echo"
    
            then:
            output.contains("[abc][123]")
        }
    
        def "task can read stdin when stdin has unbounded length"() {
            given:
            buildFile << '''
    task echo {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top