Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 162 for abcdg (0.1 sec)

  1. 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)
  2. platforms/software/signing/src/test/resources/2.txt

    abcd...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4 bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/signing/src/test/resources/1.txt

    abcd...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4 bytes
    - Viewed (0)
  5. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/RegExpPatternStepTest.java

            assertFalse(step.matches("abcd"));
            assertFalse(step.matches("abd"));
            assertFalse(step.matches("a"));
        }
    
        @Test public void testMultiCharWildcard() {
            RegExpPatternStep step = new RegExpPatternStep("a*c", true);
            assertTrue(step.matches("abc"));
            assertTrue(step.matches("abrac"));
            assertFalse(step.matches("abcd"));
            assertFalse(step.matches("ab"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/btree/BTreeIndexedCacheTest.java

            cache.put("key_1", "abcd");
            cache.put("key_2", "abcd");
            cache.put("key_3", "abcd");
            cache.put("key_4", "abcd");
            cache.put("key_5", "abcd");
    
            long len = cacheFile.length();
            assertTrue(len > 0L);
    
            cache.put("key_1", "1234");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  8. src/strings/strings_test.go

    	{"xab"[:2], "ab", -1},
    	{"", "abc", -1},
    	{"xbc", "abc", -1},
    	{"abc", "abc", 0},
    	{"xabc", "abc", 1},
    	{"xabc"[:3], "abc", -1},
    	{"xabxc", "abc", -1},
    	{"", "abcd", -1},
    	{"xbcd", "abcd", -1},
    	{"abcd", "abcd", 0},
    	{"xabcd", "abcd", 1},
    	{"xyabcd"[:5], "abcd", -1},
    	{"xbcqq", "abcqq", -1},
    	{"abcqq", "abcqq", 0},
    	{"xabcqq", "abcqq", 1},
    	{"xyabcqq"[:6], "abcqq", -1},
    	{"xabxcqq", "abcqq", -1},
    	{"xabcqxq", "abcqq", -1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. src/testing/iotest/writer_test.go

    package iotest
    
    import (
    	"strings"
    	"testing"
    )
    
    var truncateWriterTests = []struct {
    	in    string
    	want  string
    	trunc int64
    	n     int
    }{
    	{"hello", "", -1, 5},
    	{"world", "", 0, 5},
    	{"abcde", "abc", 3, 5},
    	{"edcba", "edcba", 7, 5},
    }
    
    func TestTruncateWriter(t *testing.T) {
    	for _, tt := range truncateWriterTests {
    		buf := new(strings.Builder)
    		tw := TruncateWriter(buf, tt.trunc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 07:03:10 UTC 2022
    - 881 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/library/ip.go

    //	ip.isCanonical(<string>) <bool>
    //
    // Examples:
    //
    //	ip.isCanonical('127.0.0.1') // returns true; all valid IPv4 addresses are canonical
    //	ip.isCanonical('2001:db8::abcd') // returns true
    //	ip.isCanonical('2001:DB8::ABCD') // returns false
    //	ip.isCanonical('2001:db8::0:0:0:abcd') // returns false
    //
    // family / isUnspecified / isLoopback / isLinkLocalMulticast / isLinkLocalUnicast / isGlobalUnicast
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 11:02:34 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top