Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 174 for foo4 (0.13 sec)

  1. pilot/pkg/config/kube/ingress/testdata/overlay.yaml

    apiVersion: networking.k8s.io/v1
    kind: Ingress
    metadata:
      name: foo
      namespace: ns
    spec:
      rules:
        - host: foohost.bar.com
          http:
            paths:
              - backend:
                  service:
                    name: service1
                    port:
                      number: 4200
    ---
    apiVersion: networking.k8s.io/v1
    kind: Ingress
    metadata:
      name: foo2
      namespace: ns
    spec:
      rules:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 596 bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r61/TestLauncherCrossVersionSpec.groovy

                launcher.withTaskAndTestMethods(':secondTest', "example.MyTest", ["foo2"])
            }
            then:
            assertTaskNotExecuted(":test")
            assertTaskExecuted(":secondTest")
            assertTestExecuted(className: "example.MyTest", methodName: "foo2", task: ":secondTest")
            assertTestNotExecuted(className: "example.MyTest", methodName: "foo")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestLauncherTestSpecCrossVersionSpec.groovy

            assertTestExecuted(className: 'example.MyTest', methodName: 'foo', task: ':secondTest')
    
        }
    
        def "can select test methods from test task with filters"() {
            setup:
            buildFile << '''
                secondTest {
                    filter {
                        includeTest "example.MyTest", "foo"
                        includeTest "example.MyTest", "foo2"
                    }
                }
            '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  4. test/undef.go

    var (
    	_ = x	// ERROR "undefined.*x"
    	_ = x	// ERROR "undefined.*x"
    	_ = x	// ERROR "undefined.*x"
    )
    
    type T struct {
    	y int
    }
    
    func foo() *T { return &T{y: 99} }
    func bar() int { return y }	// ERROR "undefined.*y"
    
    type T1 struct {
    	y1 int
    }
    
    func foo1() *T1 { return &T1{y1: 99} }
    var y1 = 2
    func bar1() int { return y1 }
    
    func f1(val interface{}) {
    	switch v := val.(type) {
    	default:
    		println(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 758 bytes
    - Viewed (0)
  5. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			cronJob: &batchv1.CronJob{ObjectMeta: metav1.ObjectMeta{Namespace: "foo-ns", Name: "fooer"}},
    			jobs: []runtime.Object{
    				&batchv1.Job{ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "foo-ns"}},
    				&batchv1.Job{ObjectMeta: metav1.ObjectMeta{Name: "foo1", Namespace: "foo-ns"}},
    				&batchv1.Job{ObjectMeta: metav1.ObjectMeta{Name: "foo2", Namespace: "foo-ns"}},
    			},
    			expected: []*batchv1.Job{},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/podtopologyspread/plugin_test.go

    				Obj(),
    			oldPod:       st.MakePod().Node("fake-node").Label("foo", "foo1").Obj(),
    			newPod:       st.MakePod().Node("fake-node").Label("foo", "foo2").Obj(),
    			expectedHint: framework.QueueSkip,
    		},
    		{
    			name: "change pod's label that doesn't match topologySpreadConstraints selector",
    			pod: st.MakePod().Name("p").Label("foo", "").
    				SpreadConstraint(1, "zone", v1.DoNotSchedule, fooSelector, nil, nil, nil, nil).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 06:30:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  7. samples/certs/workload-foo-root-certs.pem

    Jackie Elliott <******@****.***> 1675814255 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 23:57:35 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/switch_test.go

    func benchmarkSwitchString(b *testing.B, predictable bool) {
    	a := []string{
    		"foo",
    		"foo1",
    		"foo22",
    		"foo333",
    		"foo4444",
    		"foo55555",
    		"foo666666",
    		"foo7777777",
    	}
    	n := 0
    	rng := newRNG()
    	for i := 0; i < b.N; i++ {
    		rng = rng.next(predictable)
    		switch a[rng.value()&7] {
    		case "foo":
    			n += 1
    		case "foo1":
    			n += 2
    		case "foo22":
    			n += 3
    		case "foo333":
    			n += 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 15:42:30 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r22/Idea13ModelCrossVersionSpec.groovy

                apply plugin: 'java'
                apply plugin: 'idea'
    
                idea {
                  module {
                    sourceDirs += file('foo')
                    generatedSourceDirs += file('foo')
                    generatedSourceDirs += file('foo2')
                  }
                }
            """
    
            when:
            IdeaProject project = withConnection { connection -> connection.getModel(IdeaProject.class) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. samples/certs/leaf-workload-foo-cert.pem

    Jackie Elliott <******@****.***> 1675814255 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 23:57:35 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top