Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 59 for Zzzz (0.04 sec)

  1. pilot/pkg/leaderelection/k8sleaderelection/leaderelection_test.go

    						return true, action.(fakeclient.CreateAction).GetObject(), nil
    					},
    				},
    			},
    			observedTime: future,
    
    			key: "zzz",
    			keyComparisonFunc: func(existingKey string) bool {
    				return "zzz" > existingKey
    			},
    
    			transitionLeader: true,
    			expectSuccess:    true,
    			outHolder:        "baz",
    		},
    		{
    			name: "handle led object with no key",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 23 16:39:43 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/language/match.go

    			tt.RegionID = w.RegionID
    			tt.RemakeString()
    		} else if r := w.RegionID.String(); len(r) == 2 {
    			// TODO: also filter macro and deprecated.
    			tt, _ = tt.SetTypeForKey("rg", strings.ToLower(r)+"zzzz")
    		}
    	}
    	// Copy options from the user-provided tag into the result tag. This is hard
    	// to do after the fact, so we do it here.
    	// TODO: add in alternative variants to -u-va-.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  3. pilot/pkg/security/trustdomain/bundle_test.go

    		},
    		{
    			name:              "Two trust domain aliases, two principals",
    			trustDomainBundle: NewBundle("td2", []string{"td1", "cluster.local"}),
    			principals:        []string{"cluster.local/ns/foo/sa/bar", "td1/ns/yyy/sa/zzz"},
    			expect: []string{
    				"td2/ns/foo/sa/bar", "td1/ns/foo/sa/bar", "cluster.local/ns/foo/sa/bar",
    				"td2/ns/yyy/sa/zzz", "td1/ns/yyy/sa/zzz", "cluster.local/ns/yyy/sa/zzz",
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 11 16:19:15 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/vcs/vcs_test.go

    	ok    bool
    }{
    	{"private:all", "is-public.com/foo", "zzz", false},
    	{"private:all", "is-private.com/foo", "zzz", true},
    	{"public:all", "is-public.com/foo", "zzz", true},
    	{"public:all", "is-private.com/foo", "zzz", false},
    	{"public:all,private:none", "is-public.com/foo", "zzz", true},
    	{"public:all,private:none", "is-private.com/foo", "zzz", false},
    	{"*:all", "is-public.com/foo", "zzz", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 17K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/BaseEncodingTest.java

      }
    
      public void testBase64Url() {
        testDecodesByBytes(base64Url(), "_zzz", new byte[] {-1, 60, -13});
        testDecodesByBytes(base64Url(), "-zzz", new byte[] {-5, 60, -13});
      }
    
      public void testBase64UrlInvalidDecodings() {
        assertFailsToDecode(base64Url(), "+zzz", "Unrecognized character: +");
        assertFailsToDecode(base64Url(), "/zzz", "Unrecognized character: /");
      }
    
      public void testBase32() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 24.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/patches/patches_test.go

    					data: `[{"op": "replace", "path": "/foo", "value": "zzz"}]`,
    				},
    			},
    		},
    		{
    			name: "valid: kube-apiserver target is patched with json patch",
    			patchTarget: &PatchTarget{
    				Name:                      "kube-apiserver",
    				StrategicMergePatchObject: v1.Pod{},
    				Data:                      []byte("foo: bar\n"),
    			},
    			expectedData: []byte(`{"foo":"zzz"}`),
    			files: []*file{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 14:24:11 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. cni/test/testdata/expected/ZZZ-istio-cni-kubeconfig.expected

    John Howard <******@****.***> 1605827959 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 19 23:19:19 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  8. test/fixedbugs/bug410.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Used to run 6g out of registers.  Issue 2669.
    
    package p
    
    type y struct {
    	num int
    }
    
    func zzz () {
        k := make([]byte, 10)
    	arr := make ([]*y, 0)
        for s := range arr {
            x := make([]byte, 10)
            for i := 0; i < 100 ; i++ {
                x[i] ^= k[i-arr[s].num%3]
            }
        }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 471 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ExtendingConfigurationsIntegrationTest.groovy

    repositories {
        maven { url "${mavenRepo.uri}" }
    }
    configurations {
        one
        child.extendsFrom one
        two
        child.extendsFrom two
        zzz
        one.extendsFrom zzz
    }
    dependencies {
        one "org:foo:1.0"
        two "org:bar:1.0"
        zzz "org:baz:1.0"
    }
    
    task checkResolveChild {
        def files = configurations.child
        doFirst {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. cni/test/testdata/expected/10-calico.conflist-istioconfig

          "cni_event_address": "/tmp/cnieventfoo",
          "dns": {},
          "ipam": {},
          "kubernetes": {
            "exclude_namespaces": [
              "istio-system"
            ],
            "kubeconfig": "/etc/cni/net.d/ZZZ-istio-cni-kubeconfig"
          },
          "log_uds_address": "",
          "name": "istio-cni",
          "plugin_log_level": "debug",
          "type": "istio-cni"
        }
      ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 935 bytes
    - Viewed (0)
Back to top