Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 531 for _abc (0.06 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/library/regex.go

    //	<string>.findAll(<string>, <int>) <list <string>>
    //
    // Examples:
    //
    //	"abc 123".find('[0-9]*') // returns '123'
    //	"abc 123".find('xyz') // returns ''
    //	"123 abc 456".findAll('[0-9]*') // returns ['123', '456']
    //	"123 abc 456".findAll('[0-9]*', 1) // returns ['123']
    //	"123 abc 456".findAll('xyz') // returns []
    func Regex() cel.EnvOption {
    	return cel.Lib(regexLib)
    }
    
    var regexLib = &regex{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

          MockResponse(socketPolicy = ResetStreamAtStart(ErrorCode.REFUSED_STREAM.httpCode)),
        )
        server.enqueue(MockResponse(body = "abc"))
    
        val request = Request(server.url("/"))
        val response = client.newCall(request).execute()
        assertThat(response.body.string()).isEqualTo("abc")
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(0)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  3. internal/ioutil/ioutil_test.go

    		expected string
    	}{
    		{bytes.NewBuffer([]byte("")), 0, ""},
    		{bytes.NewBuffer([]byte("")), 1, ""},
    		{bytes.NewBuffer([]byte("abc")), 0, "abc"},
    		{bytes.NewBuffer([]byte("abc")), 1, "bc"},
    		{bytes.NewBuffer([]byte("abc")), 2, "c"},
    		{bytes.NewBuffer([]byte("abc")), 3, ""},
    		{bytes.NewBuffer([]byte("abc")), 4, ""},
    	}
    	for i, testCase := range testCases {
    		r := NewSkipReader(testCase.src, testCase.skipLen)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. pkg/apis/autoscaling/v1/defaults_test.go

    					Annotations: map[string]string{
    						autoscaling.HorizontalPodAutoscalerConditionsAnnotation: "abc",
    						autoscaling.MetricSpecsAnnotation:                       "abc",
    						autoscaling.BehaviorSpecsAnnotation:                     "abc",
    						autoscaling.MetricStatusesAnnotation:                    "abc",
    					},
    				},
    			},
    			test: "test random value for Annotations",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/JavaSystemPropertiesHttpTimeoutSettingsTest.groovy

            expect:
            settings.connectionTimeoutMs == DEFAULT_CONNECTION_TIMEOUT
    
            where:
            timeout << ["", "abc"]
        }
    
        def "uses default value if provided socket timeout is not valid"() {
            System.setProperty(SOCKET_TIMEOUT_SYSTEM_PROPERTY, timeout)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. security/pkg/util/jwtutil_test.go

    		"65xiNg"
    
    	// oneAudString includes one `aud` claim "abc" of type string.
    	oneAudString = "header.eyJhdWQiOiJhYmMiLCJleHAiOjQ3MzI5OTQ4MDEsImlhdCI6MTU3OTM5NDgwMSwiaXNzIjoidGVzdC1pc3N1ZXItMUBpc3Rpby5pbyIsInN1YiI6InN1Yi0xIn0.signature" // nolint: lll
    
    	// twoAudList includes two `aud` claims ["abc", "xyz"] of type []string.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:11 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. pkg/apis/autoscaling/v2beta1/defaults_test.go

    					Annotations: map[string]string{
    						autoscaling.HorizontalPodAutoscalerConditionsAnnotation: "abc",
    						autoscaling.MetricSpecsAnnotation:                       "abc",
    						autoscaling.BehaviorSpecsAnnotation:                     "abc",
    						autoscaling.MetricStatusesAnnotation:                    "abc",
    					},
    				},
    			},
    			test: "test random value for Annotations",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. test/typeparam/genembed.go

    	a := A[int]{B: B[int]{3}}
    	var i getter[int] = &a
    
    	if got, want := doGet(i), 3; got != want {
    		panic(fmt.Sprintf("got %v, want %v", got, want))
    	}
    
    	as := A[string]{B: B[string]{"abc"}}
    	if got, want := doGet2[string](&as), "abc"; got != want {
    		panic(fmt.Sprintf("got %v, want %v", got, want))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 901 bytes
    - Viewed (0)
  9. cmd/object-handlers-common_test.go

    	testCases := []struct {
    		etag              string
    		canonicalizedETag string
    	}{
    		{
    			etag:              "\"\"\"",
    			canonicalizedETag: "",
    		},
    		{
    			etag:              "\"\"\"abc\"",
    			canonicalizedETag: "abc",
    		},
    		{
    			etag:              "abcd",
    			canonicalizedETag: "abcd",
    		},
    		{
    			etag:              "abcd\"\"",
    			canonicalizedETag: "abcd",
    		},
    	}
    	for _, test := range testCases {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSupportedTypesIntegrationTest.groovy

            "DirectoryProperty"           | "objects.directoryProperty()"         | "file('abc')"        | new File('abc')
            "DirectoryProperty"           | "objects.directoryProperty()"         | "null"               | "null"
            "RegularFileProperty"         | "objects.fileProperty()"              | "file('abc')"        | new File('abc')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top