Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for Qux (0.02 sec)

  1. src/cmd/go/testdata/script/work_use_only_dirs.txt

    ! go work use foo bar baz
    
    stderr '^go: foo is not a directory'
    stderr '^go: directory baz does not exist'
    cmp go.work go.work_want
    
    ! go work use -r qux
    stderr '^go: qux is not a directory'
    
    -- go.work --
    go 1.18
    -- go.work_want --
    go 1.18
    -- foo --
    -- qux --
    -- bar/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 289 bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/workflow/runner_test.go

    			options:  RunnerOptions{},
    			expected: map[string]bool{"foo": true, "foo/bar": true, "foo/baz": true, "qux": true},
    		},
    		{
    			name:     "options can filter phases",
    			options:  RunnerOptions{FilterPhases: []string{"foo/baz", "qux"}},
    			expected: map[string]bool{"foo": false, "foo/bar": false, "foo/baz": true, "qux": true},
    		},
    		{
    			name:     "options can filter phases - hierarchy is considered",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 20:03:45 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/fields_test.go

    		fieldpath.MakePathOrDie("foo", 1, "bar", "baz"),
    		fieldpath.MakePathOrDie("foo", 1, "bar"),
    		fieldpath.MakePathOrDie("qux", fieldpath.KeyByFields("name", "first")),
    		fieldpath.MakePathOrDie("qux", fieldpath.KeyByFields("name", "first"), "bar"),
    		fieldpath.MakePathOrDie("qux", fieldpath.KeyByFields("name", "second"), "bar"),
    	)
    
    	b.ReportAllocs()
    	b.ResetTimer()
    	for n := 0; n < b.N; n++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/watch/watch_test.go

    		f.Action(Modified, testType("qux"))
    		f.Modify(testType("bar"))
    		f.Delete(testType("bar"))
    		f.Error(testType("error: blah"))
    		f.Stop()
    	}
    
    	go sender()
    	consumer(f)
    }
    
    func TestRaceFreeFake(t *testing.T) {
    	f := NewRaceFreeFake()
    
    	table := []struct {
    		t EventType
    		s testType
    	}{
    		{Added, testType("foo")},
    		{Modified, testType("qux")},
    		{Modified, testType("bar")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 15 11:34:31 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationKotlinDslIntegTest.groovy

                                    developer {
                                        id.set("baz")
                                        name.set("Baz Qux")
                                        email.set("baz.qux@example.org")
                                        url.set("http://example.org/users/baz.qux")
                                        organization.set("Example Organization")
                                        organizationUrl.set("https://example.org")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/table/writer_test.go

    			},
    		}
    	})
    	w.AddRow(newTestObject("foo", "bar", "1.0"))
    	w.AddRow(newTestObject("baz", "qux", "2.0"))
    	w.AddRow(newTestObject("qux", "quux", "3"))
    	w.Flush()
    	expected := "NAME  NAMESPACE      VERSION\n" +
    		"foo   \x1b[32mbar\x1b[0m            1.0\n" +
    		"baz   \x1b[32mqux\x1b[0m            2.0\n" +
    		"qux   \x1b[32mquux\x1b[0m           3\n"
    	if got.String() != expected {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 08 04:41:42 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/cert_key_test.go

    			rhs:      &certKeyContent{cert: []byte("foo"), key: []byte("qux")},
    			expected: false,
    		},
    		{
    			name:     "different cert and key",
    			lhs:      &certKeyContent{cert: []byte("foo"), key: []byte("baz")},
    			rhs:      &certKeyContent{cert: []byte("bar"), key: []byte("qux")},
    			expected: false,
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 22 13:27:45 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/helpers_test.go

    			out: mustParse("baz in (norf,qux)"),
    		},
    		{
    			in:  &LabelSelector{MatchLabels: matchLabels, MatchExpressions: matchExpressions},
    			out: mustParse("baz in (norf,qux),foo=bar"),
    		},
    		{
    			in: &LabelSelector{
    				MatchExpressions: []LabelSelectorRequirement{{
    					Key:      "baz",
    					Operator: LabelSelectorOpExists,
    					Values:   []string{"qux", "norf"},
    				}},
    			},
    			expectErr: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/watch/filter_test.go

    )
    
    func TestFilter(t *testing.T) {
    	table := []Event{
    		{Type: Added, Object: testType("foo")},
    		{Type: Added, Object: testType("bar")},
    		{Type: Added, Object: testType("baz")},
    		{Type: Added, Object: testType("qux")},
    		{Type: Added, Object: testType("zoo")},
    	}
    
    	source := NewFake()
    	filtered := Filter(source, func(e Event) (Event, bool) {
    		return e, e.Object.(testType)[0] != 'b'
    	})
    
    	go func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 11:56:41 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors_test.go

    			t.Errorf("error message did not contain expected part '%v'", part)
    		}
    	}
    
    	type complicated struct {
    		Baz   int
    		Qux   string
    		Inner interface{}
    		KV    map[string]int
    	}
    	s = Invalid(
    		NewPath("foo"),
    		&complicated{
    			Baz:   1,
    			Qux:   "aoeu",
    			Inner: &complicated{Qux: "asdf"},
    			KV:    map[string]int{"Billy": 2},
    		},
    		"detail",
    	).Error()
    	t.Logf("message: %v", s)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top