Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 115 for BAR (0.03 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                noMoreCapabilities()
            }
    
            javaLibrary.parsedModuleMetadata.variant('runtimeElements') {
                capability('org', 'foo', '1.0')
                capability('org', 'bar', '1.0')
                noMoreCapabilities()
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/26163")
        def "can publish java-library with lazy capabilities"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  2. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			jobs: []runtime.Object{
    				&batchv1.Job{ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "bar-ns"}},
    				&batchv1.Job{ObjectMeta: metav1.ObjectMeta{Name: "foo1", Namespace: "bar-ns"}},
    				&batchv1.Job{ObjectMeta: metav1.ObjectMeta{Name: "foo2", Namespace: "bar-ns"}},
    			},
    			expected: []*batchv1.Job{},
    		},
    		{
    			name: "test getting jobs whose labels do not match job template",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  3. pkg/registry/core/pod/strategy_test.go

    					api.DeprecatedAppArmorAnnotationKeyPrefix + "foo-bar": api.DeprecatedAppArmorAnnotationValueUnconfined,
    				},
    			},
    			Spec: api.PodSpec{
    				Containers: []api.Container{{Name: "ctr"}},
    			},
    		},
    		validation: func(t *testing.T, pod *api.Pod) {
    			assert.Equal(t, map[string]string{
    				api.DeprecatedAppArmorAnnotationKeyPrefix + "foo-bar": api.DeprecatedAppArmorAnnotationValueUnconfined,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  4. src/text/template/exec_test.go

    	t.Errorf("%q succeeded incorrectly as function name", name)
    }
    
    func TestBlock(t *testing.T) {
    	const (
    		input   = `a({{block "inner" .}}bar({{.}})baz{{end}})b`
    		want    = `a(bar(hello)baz)b`
    		overlay = `{{define "inner"}}foo({{.}})bar{{end}}`
    		want2   = `a(foo(goodbye)bar)b`
    	)
    	tmpl, err := New("outer").Parse(input)
    	if err != nil {
    		t.Fatal(err)
    	}
    	tmpl2, err := Must(tmpl.Clone()).Parse(overlay)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	pod, status := makeBasePodAndStatus()
    	pod.Spec.InitContainers = []v1.Container{
    		{
    			Name:  "init1",
    			Image: "bar-image",
    		},
    		{
    			Name:  "init2",
    			Image: "bar-image",
    		},
    		{
    			Name:  "init3",
    			Image: "bar-image",
    		},
    	}
    	// Replace the original statuses of the containers with those for the init
    	// containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  6. src/encoding/json/decode_test.go

    	pp := new(*int)
    	*pp = x
    	return pp
    }
    
    func TestInterfaceSet(t *testing.T) {
    	tests := []struct {
    		CaseName
    		pre  any
    		json string
    		post any
    	}{
    		{Name(""), "foo", `"bar"`, "bar"},
    		{Name(""), "foo", `2`, 2.0},
    		{Name(""), "foo", `true`, true},
    		{Name(""), "foo", `null`, nil},
    
    		{Name(""), nil, `null`, nil},
    		{Name(""), new(int), `null`, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

      echo "cpuManagerPolicyOptions:"
      # Convert from foo=true,bar=false to
      #   foo: "true"
      #   bar: "false"
      for option in $(echo "$1" | tr ',' ' '); do
        echo "${option}" | ${SED} -e 's/\(.*\)=\(.*\)/  \1: "\2"/'
      done
    }
    
    function parse_feature_gates {
      echo "featureGates:"
      # Convert from foo=true,bar=false to
      #   foo: true
      #   bar: false
      for gate in $(echo "$1" | tr ',' ' '); do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    		// For example, consider the command
    		//
    		// 	go get example.com/foo@latest example.com/foo/bar/baz@latest
    		//
    		// If modules example.com/foo and example.com/foo/bar both provide
    		// package example.com/foo/bar/baz, then we *must* resolve the package
    		// from example.com/foo: if we instead resolved it from
    		// example.com/foo/bar, we would have two copies of the package.
    		return pathSet{}, true, m, true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

            mavenRepo.module("org.stuff", "foo", '2.0').dependsOn('org.utils', 'api', '1.5').publish()
            mavenRepo.module("org.stuff", "bar", '2.0').dependsOn('org.utils', 'impl', '1.3').publish()
    
            /*
            dependencies:
    
            impl:1.3->api:1.3
            foo->api:1.5
            bar->impl:1.3(*)->api:1.3(*)
    
            * - should be excluded as it was already visited
            */
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  10. pkg/kubelet/server/server_test.go

    		t.Errorf("Received wrong data: %s", result)
    	}
    }
    
    func TestServeRunInContainer(t *testing.T) {
    	fw := newServerTest()
    	defer fw.testHTTPServer.Close()
    	output := "foo bar"
    	podNamespace := "other"
    	podName := "foo"
    	expectedPodName := getPodName(podName, podNamespace)
    	expectedContainerName := "baz"
    	expectedCommand := "ls -a"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top