Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 616 for _abc (3.29 sec)

  1. test/char_lit1.go

    	_ = '\U0000dddd'  // ERROR "Unicode|unicode"
    	_ = '\udfff' // ERROR "Unicode|unicode"
    	_ = '\ue000' // ok
    	_ = '\U0010ffff'  // ok
    	_ = '\U00110000'  // ERROR "Unicode|unicode"
    	_ = "abc\U0010ffffdef"  // ok
    	_ = "abc\U00110000def"  // ERROR "Unicode|unicode"
    	_ = '\Uffffffff'  // ERROR "Unicode|unicode"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 05 18:46:43 UTC 2021
    - 822 bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/CopySpecMatchingTest.groovy

        def canMatchFiles() {
            given:
            FileCopyDetails details1 = details('path/abc.txt')
            FileCopyDetails details2 = details('path/bcd.txt')
    
            Action matchingAction = Mock()
    
            when:
            copySpec.filesMatching("**/a*", matchingAction)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 28 12:39:32 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. 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)
  4. test/fixedbugs/issue15992.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    )
    
    func f(a []byte) ([]byte, []byte) {
    	return a, []byte("abc")
    }
    
    func g(a []byte) ([]byte, string) {
    	return a, "abc"
    }
    
    func h(m map[int]int) (map[int]int, int) {
    	return m, 0
    }
    
    func main() {
    	a := []byte{1, 2, 3}
    	n := copy(f(a))
    	fmt.Println(n, a)
    
    	b := []byte{1, 2, 3}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 11 06:06:20 UTC 2020
    - 593 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top