Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 81 for ababcd (0.12 sec)

  1. src/cmd/internal/obj/loong64/a.out.go

    	C_LAUTO
    	C_SEXT
    	C_LEXT
    	C_ZOREG
    	C_SOREG
    	C_LOREG
    	C_GOK
    	C_ADDR
    	C_TLS_LE
    	C_TLS_IE
    	C_GOTADDR
    	C_TEXTSIZE
    
    	C_NCLASS // must be the last
    )
    
    const (
    	AABSD = obj.ABaseLoong64 + obj.A_ARCHSPECIFIC + iota
    	AABSF
    	AADD
    	AADDD
    	AADDF
    	AADDU
    
    	AADDW
    	AAND
    	ABEQ
    	ABGEZ
    	ABLEZ
    	ABGTZ
    	ABLTZ
    	ABFPF
    	ABFPT
    
    	ABNE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/fmt/fmt_test.go

    	{"% 08x", []byte{0xab}, "000000ab"},
    	{"%#08x", []byte{0xab}, "00000xab"},
    	{"%# 08x", []byte{0xab}, "00000xab"},
    	{"%10x", []byte{0xab, 0xcd}, "      abcd"},
    	{"% 10x", []byte{0xab, 0xcd}, "     ab cd"},
    	{"%#10x", []byte{0xab, 0xcd}, "    0xabcd"},
    	{"%# 10x", []byte{0xab, 0xcd}, " 0xab 0xcd"},
    	{"%010x", []byte{0xab, 0xcd}, "000000abcd"},
    	{"% 010x", []byte{0xab, 0xcd}, "00000ab cd"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  3. pkg/kubelet/types/pod_status_test.go

    	}
    
    	for _, tc := range trueCases {
    		if !PodConditionByKubelet(tc) {
    			t.Errorf("Expect %q to be condition owned by kubelet.", tc)
    		}
    	}
    
    	falseCases := []v1.PodConditionType{
    		v1.PodConditionType("abcd"),
    		v1.PodConditionType(v1.PodReasonUnschedulable),
    	}
    
    	for _, tc := range falseCases {
    		if PodConditionByKubelet(tc) {
    			t.Errorf("Expect %q NOT to be condition owned by kubelet.", tc)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/compress/flate/deflate_test.go

    				if err != nil {
    					t.Errorf("i=%d, firstN=%d, flush=%t: NewWriter: %v", i, firstN, flush, err)
    					continue
    				}
    				for _, n := range tc {
    					want = append(want, abcabc[:n]...)
    					if _, err := w.Write(abcabc[:n]); err != nil {
    						t.Errorf("i=%d, firstN=%d, flush=%t: Write: %v", i, firstN, flush, err)
    						continue outer
    					}
    					if !flush {
    						continue
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  5. src/index/suffixarray/suffixarray_test.go

    		}
    		return out
    	})
    }
    
    // test tests an arbitrary suffix array construction function.
    // Generates many inputs, builds and checks suffix arrays.
    func test(t *testing.T, build func([]byte) []int) {
    	t.Run("ababab...", func(t *testing.T) {
    		// Very repetitive input has numLMS = len(x)/2-1
    		// at top level, the largest it can be.
    		// But maxID is only two (aba and ab$).
    		size := 100000
    		if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/util/internal/NameMatcherTest.groovy

        def "prefers exact match over camel case match"() {
            expect:
            matches("sName", "sName", "someName", "sNames")
            matches("so Name", "so Name", "some Name", "so name")
            matches("ABC", "ABC", "AaBbCc")
        }
    
        def "prefers exact match over kebab case match"() {
            expect:
            matches("sName", "sName", "some-name", "some-Name")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  7. internal/s3select/sql/parser_test.go

    		"extract(YEAR from '2018-01-09')",
    		"extract(month from '2018-01-09')",
    
    		"extract(hour from '2018-01-09')",
    		"extract(day from '2018-01-09')",
    		"substring('abcd' from 2 for 2)",
    		"substring('abcd' from 2)",
    		"substring('abcd' , 2 , 2)",
    
    		"substring('abcd' , 22 )",
    		"trim('  aab  ')",
    		"trim(leading from '  aab  ')",
    		"trim(trailing from '  aab  ')",
    		"trim(both from '  aab  ')",
    
    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. src/crypto/x509/name_constraints_test.go

    			{
    				bad: []string{"ip:2000:abcd::/32"},
    			},
    		},
    		intermediates: [][]constraintsSpec{
    			{
    				{},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"ip:2000:abcd::"},
    		},
    		expectedError: "\"2000:abcd::\" is excluded",
    	},
    
    	// #36: IPv6 constraints do not permit IPv4 addresses.
    	{
    		roots: []constraintsSpec{
    			{
    				ok: []string{"ip:2000:abcd::/32"},
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/bootstraptoken/v1/utils_test.go

    		{token: "Abcdef.1234567890123456", expectedError: true, bts: nil},  // invalid token id
    		{token: "123456.AABBCCDDEEFFGGHH", expectedError: true, bts: nil},  // invalid token secret
    		{token: "123456.AABBCCD-EEFFGGHH", expectedError: true, bts: nil},  // invalid character
    		{token: "abc*ef.1234567890123456", expectedError: true, bts: nil},  // invalid character
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  10. hack/verify-api-groups.sh

    # groups_without_codegen is the list of group we EXPECT to not have the client generated for
    # them.  This happens for types that aren't served from the API server
    groups_without_codegen=(
    	"abac"
    	"imagepolicy"
    	"admission"
    )
    client_gen_file="${KUBE_ROOT}/staging/src/k8s.io/code-generator/cmd/client-gen/main.go"
    
    for group_dirname in "${group_dirnames[@]}"; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 13 09:26:16 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top