Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 466 for BAR (0.07 sec)

  1. pkg/kubelet/lifecycle/handlers_test.go

    			PostStart: &v1.LifecycleHandler{
    				HTTPGet: &v1.HTTPGetAction{
    					Host: "foo",
    					Port: intstr.FromInt32(8080),
    					Path: "bar",
    				},
    			},
    		},
    	}
    	pod := v1.Pod{}
    	pod.ObjectMeta.Name = "podFoo"
    	pod.ObjectMeta.Namespace = "nsFoo"
    	pod.ObjectMeta.UID = "foo-bar-quux"
    	pod.Spec.Containers = []v1.Container{container}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskInputFilePropertiesIntegrationTest.groovy

                    outputs.file "foo.txt"
                    doFirst {}
                }
    
                task bar {
                    inputs.files(new BuildableArtifact(files(foo)))
                    outputs.file "bar.txt"
                    doFirst {}
                }
            """
    
            when:
            run "bar"
            then:
            executed ":foo"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/9674")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

        // Adjust the function type to match the block args. So this e.g. transforms
        //
        // func.func @f(%x : foo) -> foo {
        //   ^main(%x : bar):
        //     yield %x : bar
        // }
        //
        // to
        //
        // func.func @f(%x : bar) -> bar {
        //   ...
        // }
        auto ret = f.getBody().front().getTerminator();
        std::vector<Type> argument_types;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. pilot/pkg/model/authentication_test.go

    		},
    		{
    			name:              "Gateway targetRef bar namespace",
    			workloadNamespace: "bar",
    			workloadLabels: labels.Instance{
    				constants.GatewayNameLabel: "my-gateway",
    			},
    			wantRequestAuthn: []*config.Config{
    				{
    					Meta: config.Meta{
    						GroupVersionKind: gvk.RequestAuthentication,
    						Name:             "default",
    						Namespace:        "bar",
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/model/generator_test.go

                      exact: foo
    `,
    		},
    		{
    			in: "*bar/foo",
    			want: `
            and_ids:
              ids:
              - metadata:
                  filter: envoy.filters.http.jwt_authn
                  path:
                  - key: payload
                  - key: iss
                  value:
                    string_match:
                      suffix: bar
              - metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerTest.groovy

            then:
            1 * fooListener1.foo("param")
            0 * _
    
            when:
            manager.getBroadcaster(TestBarListener.class).bar(12)
    
            then:
            1 * barListener1.bar(12)
            0 * _
        }
    
        def listenerCanImplementMultipleTypes() {
            given:
            def listener = Mock(BothListener)
            manager.addListener(listener)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. pkg/kubeapiserver/options/authentication_test.go

    				areFlagsConfigured: func() bool { return true },
    			},
    			testSA: &ServiceAccountAuthenticationOptions{
    				Issuers: []string{"http://foo.bar.com", "http://foo.bar.com"},
    			},
    			expectErr: "service-account-issuer \"http://foo.bar.com\" is already specified",
    		},
    		{
    			name: "test when ServiceAccount has bad issuer",
    			testOIDC: &OIDCAuthenticationOptions{
    				UsernameClaim:      "sub",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/metrics_test.go

    		want   string
    	}{
    		{
    			desc: "valid noop update",
    			obj: &unstructured.Unstructured{
    				Object: map[string]interface{}{
    					"foo": "bar",
    				},
    			},
    			old: &unstructured.Unstructured{
    				Object: map[string]interface{}{
    					"foo": "bar",
    				},
    			},
    			schema: apiextensions.JSONSchemaProps{
    				Type: "object",
    				Properties: map[string]apiextensions.JSONSchemaProps{
    					"foo": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (1)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/internal/cache/CacheConfigurationsContinuousIntegrationTest.groovy

                task foo(type: Copy) {
                    from 'foo'
                    into layout.buildDir.dir('foo')
                }
            """
            file('foo').text = 'bar'
    
            then:
            succeeds("foo")
            file('build/foo/foo').text == 'bar'
    
            when:
            file('foo').text = 'baz'
    
            then:
            buildTriggeredAndSucceeded()
            file('build/foo/foo').text == 'baz'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskConfigurationIntegrationTest.groovy

                def bar = tasks.register("bar") { println "Create :bar" }
                def baz = tasks.create("baz", SomeTask)
                def fizz = tasks.create("fizz", SomeTask)
                def fuzz = tasks.create("fuzz", SomeTask)
    
                tasks.withType(SomeTask).configureEach { task ->
                    println "Configuring " + task.name
                    bar.get()
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top