Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for Qux (0.04 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationIntegTest.groovy

                                    developer {
                                        id = "baz"
                                        name = "Baz Qux"
                                        email = "baz.qux@example.org"
                                        url = "http://example.org/users/baz.qux"
                                        organization = "Example Organization"
                                        organizationUrl = "https://example.org"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. cmd/import-boss/main_test.go

    		expect string
    	}{{
    		input: &packages.Package{
    			PkgPath:      "example.com/foo/bar/qux",
    			GoFiles:      []string{"/src/prj/file.go"},
    			IgnoredFiles: []string{"/otherdir/file.go"},
    		},
    		expect: filepath.Clean("/src/prj"),
    	}, {
    		input: &packages.Package{
    			PkgPath:      "example.com/foo/bar/qux",
    			IgnoredFiles: []string{"/src/prj/file.go"},
    		},
    		expect: filepath.Clean("/src/prj"),
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. cmd/preferredimports/preferredimports.go

    		}
    	}
    }
    
    func renameImportUsages(f *ast.File, old, new string) {
    	// use this to avoid renaming the package declaration, eg:
    	//   given: package foo; import foo "bar"; foo.Baz, rename foo->qux
    	//   yield: package foo; import qux "bar"; qux.Baz
    	var pkg *ast.Ident
    
    	// Rename top-level old to new, both unresolved names
    	// (probably defined in another file) and names that resolve
    	// to a declaration we renamed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top