Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 197 for _abc (0.04 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParserTest.groovy

            "1.2-beta_3+0000" | "1.2"       | true
            "1.2b3"           | "1.2"       | true
            "1-alpha"         | "1"         | true
            "abc.1-3"         | "abc.1"     | true
            "123"             | "123"       | false
            "abc"             | "abc"       | false
            "a.b.c.1.2"       | "a.b.c.1.2" | false
            "1b2.1.2.3"       | "1"         | true
            "b1-2-3.3"        | "b"         | true
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/GUtilTest.groovy

            toWords("two,words") == "two words"
            toWords("trailing-") == "trailing"
            toWords("a") == "a"
            toWords("aB") == "a b"
            toWords("ABC") == "abc"
            toWords("ABCThing") == "abc thing"
            toWords("ABC Thing") == "abc thing"
            toWords("123Thing") == "123 thing"
            toWords(".") == ""
            toWords("_") == ""
        }
    
        def "flattens maps and arrays"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/ServerTruncatesRequestTest.kt

          MockResponse(
            body = "abc",
            socketPolicy = DoNotReadRequestBody(ErrorCode.NO_ERROR.httpCode),
          ),
        )
    
        val call =
          client.newCall(
            Request(
              url = server.url("/"),
              body = SlowRequestBody,
            ),
          )
    
        call.execute().use { response ->
          assertThat(response.body.string()).isEqualTo("abc")
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top