Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 532 for _abc (0.04 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptVisibilityIntegrationTest.groovy

            settingsFile << "include 'child1'"
            buildFile << """
    def getProp1() {
        return "abc"
    }
    
    @groovy.transform.Field
    String prop2
    
    @groovy.transform.Field
    String prop3 = "abc"
    
    int prop4 = 12
    
    prop2 = prop1
    
    assert prop1 == "abc"
    assert prop2 == "abc"
    assert prop3 == "abc"
    assert prop4 == 12
    """
            file("child1/build.gradle") << """
    try {
        prop1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. src/strconv/itoa_test.go

    		if s != test.out {
    			t.Errorf("FormatInt(%v, %v) = %v want %v",
    				test.in, test.base, s, test.out)
    		}
    		x := AppendInt([]byte("abc"), test.in, test.base)
    		if string(x) != "abc"+test.out {
    			t.Errorf("AppendInt(%q, %v, %v) = %q want %v",
    				"abc", test.in, test.base, x, test.out)
    		}
    
    		if test.in >= 0 {
    			s := FormatUint(uint64(test.in), test.base)
    			if s != test.out {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 15 21:09:39 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGProducesOldReportsIntegrationTest.groovy

            "reports.html.outputLocation = file('xyz')" | "reports.html.outputLocation = file('abc')"                                             | "abc"
            ""                                          | "reports.html.outputLocation = file('abc')"                                             | "abc"
            "reports.html.outputLocation = file('abc')" | "options.outputDirectory = file('xyz')"                                                 | "xyz"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. internal/s3select/sql/parser_test.go

    	cases := []string{
    		`select * from s3object where Name like 'abcd'`,
    		`select Name like 'abc' from s3object`,
    		`select * from s3object where Name not like 'abc'`,
    		`select * from s3object where Name like 'abc' escape 't'`,
    		`select * from s3object where Name like 'a\%' escape '?'`,
    		`select * from s3object where Name not like 'abc\' escape '?'`,
    		`select * from s3object where Name like 'a\%' escape LOWER('?')`,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/SocksProxyTest.kt

        server.enqueue(MockResponse.Builder().body("abc").build())
        server.enqueue(MockResponse.Builder().body("def").build())
        val client =
          clientTestRule.newClientBuilder()
            .proxy(socksProxy.proxy())
            .build()
        val request1 = Request.Builder().url(server.url("/")).build()
        val response1 = client.newCall(request1).execute()
        assertThat(response1.body.string()).isEqualTo("abc")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/IncludeDirectivesSerializerTest.groovy

            def macro4 = new MacroWithComplexExpression("FOUR", IncludeType.MACRO_FUNCTION, "abc", [new SimpleExpression("abc.h", IncludeType.QUOTED)])
            def macro5 = new MacroWithComplexExpression("FIVE", IncludeType.MACRO_FUNCTION, "abc", [new ComplexExpression(IncludeType.MACRO_FUNCTION, "macro", [new SimpleExpression("abc.h", IncludeType.QUOTED)])])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/matcher/string_test.go

    				},
    			},
    		},
    		{
    			name:   "suffix",
    			v:      "*-suffix",
    			prefix: "abc",
    			want:   StringMatcherRegex("abc.*-suffix"),
    		},
    		{
    			name:   "exact",
    			v:      "-exact",
    			prefix: "abc",
    			want: &matcher.StringMatcher{
    				MatchPattern: &matcher.StringMatcher_Exact{
    					Exact: "abc-exact",
    				},
    			},
    		},
    	}
    
    	for _, tc := range testCases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 17 22:42:11 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. 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)
Back to top