Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for Qux (0.05 sec)

  1. 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)
  2. 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)
  3. test/fixedbugs/bug388.go

    import "runtime"
    
    func foo(runtime.UintType, i int) {  // ERROR "cannot declare name runtime.UintType|mixed named and unnamed|undefined identifier"
    	println(i, runtime.UintType) // GCCGO_ERROR "undefined identifier"
    }
    
    func qux() {
    	var main.i	// ERROR "unexpected [.]|expected type"
    	println(main.i)
    }
    
    func corge() {
    	var foo.i int  // ERROR "unexpected [.]|expected type"
    	println(foo.i)
    }
    
    func main() {
    	foo(42,43)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 636 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/util/taints/taints_test.go

    				},
    				{
    					Key:    "qux",
    					Value:  "",
    					Effect: v1.TaintEffectNoSchedule,
    				},
    				{
    					Key:    "foobar",
    					Value:  "",
    					Effect: v1.TaintEffectNoSchedule,
    				},
    			},
    			expectedErr: false,
    		},
    		{
    			name: "delete taints with no special chars",
    			spec: []string{"foo:NoSchedule-", "bar:NoSchedule-", "qux=:NoSchedule-", "dedicated-"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 22.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/audit_test.go

    func TestWithAuditConcurrency(t *testing.T) {
    	admitAnnotations := map[string]string{
    		"plugin.example.com/foo": "foo",
    		"plugin.example.com/bar": "bar",
    		"plugin.example.com/baz": "baz",
    		"plugin.example.com/qux": "qux",
    	}
    	var handler Interface = fakeHandler{admitAnnotations: admitAnnotations, handles: true}
    	ctx := audit.WithAuditContext(context.Background())
    	ac := audit.AuditContextFrom(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. 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)
  10. pkg/scheduler/internal/cache/snapshot_test.go

    	podsWithAffitiny := []*v1.Pod{
    		st.MakePod().Name("bar").Namespace("ns").PodAffinity("baz", &metav1.LabelSelector{MatchLabels: map[string]string{"baz": "qux"}}, st.PodAffinityWithRequiredReq).Node("node-2").Obj(),
    		st.MakePod().Name("bar").Namespace("ns").PodAffinity("key", &metav1.LabelSelector{MatchLabels: map[string]string{"key": "value"}}, st.PodAffinityWithRequiredReq).Node("node-0").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 08:00:25 UTC 2023
    - 12K bytes
    - Viewed (0)
Back to top