Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for Qux (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilderTest.groovy

            builder.bundle("my", ["foo-bar", "foo_baz", "foo.qux"])
            builder.bundle("a.b", ["foo.bar"])
            builder.bundle("a_c", ["foo.bar"])
            builder.bundle("a-d", ["foo.bar"])
    
            when:
            def model = builder.build()
    
            then:
            model.libraryAliases == ["foo.bar", "foo.baz", "foo.qux"]
            model.bundleAliases == ["a.b", "a.c", "a.d", "my"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 17 22:25:43 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    	obj.CertificatesDir = "foo"
    	obj.ClusterName = "bar"
    	obj.ImageRepository = "baz"
    	obj.CIImageRepository = "" // This fields doesn't exists in public API >> using default to get the roundtrip test pass
    	obj.KubernetesVersion = "qux"
    	obj.CIKubernetesVersion = "" // This fields doesn't exists in public API >> using default to get the roundtrip test pass
    	obj.APIServer.TimeoutForControlPlane = &metav1.Duration{
    		Duration: 0,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_sandbox_linux_test.go

    	expectedLinuxPodSandboxConfig := &runtimeapi.LinuxPodSandboxConfig{
    		SecurityContext: &runtimeapi.LinuxSandboxSecurityContext{
    			SelinuxOptions: &runtimeapi.SELinuxOption{
    				User: "qux",
    			},
    			RunAsUser:  &runtimeapi.Int64Value{Value: 1000},
    			RunAsGroup: &runtimeapi.Int64Value{Value: 10},
    		},
    	}
    
    	podSandboxConfig, err := m.generatePodSandboxConfig(pod, 1)
    	assert.NoError(t, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top