Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 55 for Qux (0.02 sec)

  1. cmd/kubeadm/app/phases/controlplane/volumes_test.go

    			Name:      "foo-0",
    			HostPath:  "/tmp/qux-0",
    			MountPath: "/tmp/qux-0",
    			ReadOnly:  true,
    			PathType:  v1.HostPathFile,
    		},
    		{
    			Name:      "bar-0",
    			HostPath:  "/tmp/asd-0",
    			MountPath: "/tmp/asd-0",
    			ReadOnly:  false,
    			PathType:  v1.HostPathDirectory,
    		},
    		{
    			Name:      "foo-1",
    			HostPath:  "/tmp/qux-1",
    			MountPath: "/tmp/qux-1",
    			ReadOnly:  true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. pkg/log/scope.go

    //
    // Scope supports structured logging using WithLabels:
    //
    //	s := RegisterScope("MyScope", "Description", 0)
    //	s = s.WithLabels("foo", "bar", "baz", 123, "qux", 0.123)
    //	s.Info("Hello")                      // <time>   info   MyScope   Hello  foo=bar baz=123 qux=0.123
    //
    // The output format can be globally configured to be JSON instead, using Options in this package.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 16:47:01 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. pkg/log/default_test.go

    		Configure(DefaultOptions())
    		funcs.Store(funcs.Load().(patchTable))
    		WithLabels("foo", "bar").WithLabels("baz", 123, "qux", 0.123).Error("Hello")
    
    		_ = Sync()
    	})
    	if err != nil {
    		t.Errorf("Got error '%v', expected success", err)
    	}
    
    	mustRegexMatchString(t, lines[0], `Hello	foo=bar baz=123 qux=0.123`)
    }
    
    func TestLogWithTime(t *testing.T) {
    	getLogTime := func(t *testing.T, line string) time.Time {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. pkg/util/flag/flags_test.go

    		},
    		{
    			f: "--t=foo=bar:NoSchedule,baz:NoSchedule,bing=bang:PreferNoSchedule,qux=:NoSchedule",
    			t: []v1.Taint{
    				{Key: "foo", Value: "bar", Effect: v1.TaintEffectNoSchedule},
    				{Key: "baz", Value: "", Effect: "NoSchedule"},
    				{Key: "bing", Value: "bang", Effect: v1.TaintEffectPreferNoSchedule},
    				{Key: "qux", Value: "", Effect: "NoSchedule"},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 14 10:45:23 UTC 2021
    - 8.8K bytes
    - Viewed (0)
  5. operator/pkg/util/path_test.go

    		},
    		{
    			desc: "multiple",
    			in:   "foo:bar:baz",
    			want: []string{"foo", "bar", "baz"},
    		},
    		{
    			desc: "multiple with escapes",
    			in:   `foo\:bar:baz\:qux`,
    			want: []string{`foo\:bar`, `baz\:qux`},
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.desc, func(t *testing.T) {
    			if got, want := splitEscaped(tt.in, kvSeparatorRune), tt.want; !stringSlicesEqual(got, want) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Aug 29 00:15:38 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/http2/Http2Test.kt

      @Test fun readPaddedHeadersFrame() {
        val paddingLength = 254
        val padding = ByteArray(paddingLength)
        Arrays.fill(padding, 0.toByte())
        val headerBlock = literalHeaders(headerEntries("foo", "barrr", "baz", "qux"))
        writeMedium(frame, headerBlock.size.toInt() + paddingLength + 1)
        frame.writeByte(Http2.TYPE_HEADERS)
        frame.writeByte(FLAG_END_HEADERS or FLAG_PADDED)
        frame.writeInt(expectedStreamId and 0x7fffffff)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  7. pkg/log/scope_test.go

    		s2 := s.WithLabels("foo", "bar").WithLabels("baz", 123, "qux", 0.123).WithLabels("foo", "override")
    		s2.Debug("Hello")
    		// s should be unmodified.
    		s.Debug("Hello")
    
    		_ = Sync()
    	})
    	if err != nil {
    		t.Errorf("Got error '%v', expected success", err)
    	}
    
    	mustRegexMatchString(t, lines[0], `Hello	foo=override baz=123 qux=0.123`)
    	mustRegexMatchString(t, lines[1], "Hello$")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 17:36:09 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    				"uid": "1234",
    				"foo": "bar",
    				"bar": [
    					"baz",
    					"qux"
    				]
    			}`, valid.Unix()),
    			want: &user.DefaultInfo{
    				Name:   "jane",
    				Groups: []string{"team1", "team2"},
    				UID:    "1234",
    				Extra: map[string][]string{
    					"example.org/foo": {"bar"},
    					"example.org/bar": {"baz", "qux"},
    				},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/patches/patches_test.go

    			patchTarget: &PatchTarget{
    				Name:                      "kube-apiserver",
    				StrategicMergePatchObject: v1.Pod{},
    				Data:                      []byte("foo: bar\nbaz: qux\n"),
    			},
    			expectedData: []byte(`{"baz":"qux","foo":"patched"}`),
    			files: []*file{
    				{
    					name: "kube-apiserver+merge.yaml",
    					data: "foo: patched",
    				},
    				{
    					name: "kube-apiserver+json.json",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 14:24:11 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. pkg/kubelet/container/ref_test.go

    		"emptyName":        {pod, &v1.Container{Name: ""}, "spec.containers[2]", true},
    		"basicSamePointer": {pod, &pod.Spec.Containers[0], "spec.containers{foo}", true},
    		"missing":          {pod, &v1.Container{Name: "qux"}, "", false},
    	}
    
    	for name, item := range table {
    		res, err := fieldPath(item.pod, item.container)
    		if !item.success {
    			if err == nil {
    				t.Errorf("%v: unexpected non-error", name)
    			}
    			continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 09:38:23 UTC 2022
    - 4.4K bytes
    - Viewed (0)
Back to top