Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,057 for fetching (0.24 sec)

  1. tests/integration/pilot/revisions/revision_tag_test.go

    					fetch := kubetest.NewSinglePodFetch(t.Clusters().Default(),
    						revTagNs.Name(),
    						fmt.Sprintf("app=%s", "revision-tag"))
    					pods, err := fetch()
    					if err != nil {
    						t.Fatalf("error fetching pods: %v", err)
    					}
    
    					verifyRevision(t, istioCtl, pods[0].Name, revTagNs.Name(), tc.revision)
    				})
    			}
    		})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. internal/config/identity/openid/help.go

    			Optional:    true,
    			Type:        "string",
    		},
    		config.HelpKV{
    			Key:         ClaimUserinfo,
    			Description: `Enable fetching claims from UserInfo Endpoint for authenticated user` + defaultHelpPostfix(ClaimUserinfo),
    			Optional:    true,
    			Type:        "on|off",
    		},
    		config.HelpKV{
    			Key:         KeyCloakRealm,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 23 14:45:27 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. pkg/registry/apps/statefulset/storage/storage_test.go

    	test.TestWatch(
    		validNewStatefulSet(),
    		// matching labels
    		[]labels.Set{
    			{"a": "b"},
    		},
    		// not matching labels
    		[]labels.Set{
    			{"a": "c"},
    			{"foo": "bar"},
    		},
    
    		// matching fields
    		[]fields.Set{
    			{"metadata.name": "foo"},
    		},
    		// not matching fields
    		[]fields.Set{
    			{"metadata.name": "bar"},
    		},
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 14K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/connection/CancellableConsumerConnectionTest.groovy

                }
            }
            1 * adapter.builder(Void) >> builder
            1 * builder.build('result') >> 'the result'
        }
    
        def "adapts implementation-specific cancellation failure when fetching model"() {
            def parameters = Stub(ConsumerOperationParameters)
            def failure = new GradleException("broken", new BuildCancelledException("cancelled."))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. pkg/registry/apps/replicaset/storage/storage_test.go

    	test.TestWatch(
    		validNewReplicaSet(),
    		// matching labels
    		[]labels.Set{
    			{"a": "b"},
    		},
    		// not matching labels
    		[]labels.Set{
    			{"a": "c"},
    			{"foo": "bar"},
    		},
    		// matching fields
    		[]fields.Set{
    			{"status.replicas": "5"},
    			{"metadata.name": "foo"},
    			{"status.replicas": "5", "metadata.name": "foo"},
    		},
    		// not matching fields
    		[]fields.Set{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  6. tools/certs/Makefile.k8s.mk

    .PHONY: fetch-root-ca
    rawcluster := $(shell kubectl config current-context)
    cluster := $(subst /,-,$(rawcluster))
    pwd := $(shell pwd)
    export KUBECONFIG
    
    fetch-root-ca:
    	@echo "fetching root ca from k8s cluster: "$(cluster)""
    	@mkdir -p $(pwd)/$(cluster)
    	@res=$$(kubectl get secret istio-ca-secret -n $(ISTIO_NAMESPACE) >/dev/null 2>&1; echo $$?); \
    	if [ $$res -eq 1 ]; then \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 13:15:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

        return moduleOp.emitOpError()
               << "error in fetching TPU_SYSTEM devices: "
               << status_or_system_devices.status().message();
      auto status_or_tpu_devices =
          GetTPUDevices(device_names, status_or_system_devices.value());
      if (!status_or_tpu_devices.ok())
        return moduleOp.emitOpError() << "error in fetching TPU devices: "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  8. pkg/credentialprovider/secrets/secrets_test.go

    )
    
    // fakeKeyring is a fake docker auth config keyring
    type fakeKeyring struct {
    	auth []credentialprovider.AuthConfig
    	ok   bool
    }
    
    // Lookup implements the DockerKeyring method for fetching credentials based on image name.
    // Returns fake results based on the auth and ok fields in fakeKeyring
    func (f *fakeKeyring) Lookup(image string) ([]credentialprovider.AuthConfig, bool) {
    	return f.auth, f.ok
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 23 18:11:10 UTC 2020
    - 7.3K bytes
    - Viewed (0)
  9. pilot/pkg/features/pilot.go

    	).Get()
    
    	JwksFetchMode = func() jwt.JwksFetchMode {
    		v := env.Register(
    			"PILOT_JWT_ENABLE_REMOTE_JWKS",
    			"false",
    			"Mode of fetching JWKs from JwksUri in RequestAuthentication. Supported value: "+
    				"istiod, false, hybrid, true, envoy. The client fetching JWKs is as following: "+
    				"istiod/false - Istiod; hybrid/true - Envoy and fallback to Istiod if JWKs server is external; "+
    				"envoy - Envoy.",
    		).Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DefaultModelBuilderTest.groovy

            1 * handler.onFailure(!null) >> {args -> wrappedFailure = args[0] }
            wrappedFailure.message.contains(Exceptions.INCOMPATIBLE_VERSION_HINT)
            wrappedFailure.cause.is(failure)
        }
    
        def "fetching model does not block"() {
            GradleProject result = Mock()
            ResultHandler<GradleProject> handler = Mock()
    
            given:
            asyncConnection.run(!null, !null) >> { args ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top