Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for isConfigured (0.24 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    	policiesToBindings := map[types.NamespacedName][]B{}
    	bindingList, err := s.bindingInformer.List(labels.Everything())
    	if err != nil {
    		// This should never happen unless types are misconfigured
    		// (can't use meta.accessor on them)
    		return nil, err
    	}
    
    	// Gather a list of all active policy bindings
    	for _, bindingSpec := range bindingList {
    		bindingAccessor := s.newBindingAccessor(bindingSpec)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. pkg/controller/endpoint/endpoints_controller.go

    	if err != nil {
    		if createEndpoints && errors.IsForbidden(err) {
    			// A request is forbidden primarily for two reasons:
    			// 1. namespace is terminating, endpoint creation is not allowed by default.
    			// 2. policy is misconfigured, in which case no service would function anywhere.
    			// Given the frequency of 1, we log at a lower level.
    			logger.V(5).Info("Forbidden from creating endpoints", "error", err)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. hack/local-up-cluster.sh

    {
      echo "Cleaning up..."
      # delete running images
      # if [[ "${ENABLE_CLUSTER_DNS}" == true ]]; then
      # Still need to figure why this commands throw an error: Error from server: client: etcd cluster is unavailable or misconfigured
      #     ${KUBECTL} --namespace=kube-system delete service kube-dns
      # And this one hang forever:
      #     ${KUBECTL} --namespace=kube-system delete rc kube-dns-v10
      # fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

          - Required org.gradle.jvm.version '8' and found incompatible value '9'.
          - Required org.gradle.usage 'java-api' and found value 'java-runtime-jars'.
    ```
    
    In general, this is a sign that your project is misconfigured and that your dependencies are not compatible.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AbstractFuture.java

              //
              // addListener has thrown an exception! SetFuture.run can't throw any exceptions so this
              // must have been caused by addListener itself. The most likely explanation is a
              // misconfigured mock. Try to switch to Failure.
              Failure failure;
              try {
                failure = new Failure(t);
              } catch (Exception | Error oomMostLikely) { // sneaky checked exception
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  6. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

              //
              // addListener has thrown an exception! SetFuture.run can't throw any exceptions so this
              // must have been caused by addListener itself. The most likely explanation is a
              // misconfigured mock. Try to switch to Failure.
              Failure failure;
              try {
                failure = new Failure(t);
              } catch (Exception | Error oomMostLikely) { // sneaky checked exception
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  7. pkg/controller/endpoint/endpoints_controller_test.go

    				Spec: v1.ServiceSpec{
    					ClusterIP: v1.ClusterIPNone, // <- families are not set by api-server
    				},
    			},
    			expectedEndpointFamily: ipv4,
    		},
    		// in reality this is a misconfigured cluster
    		// i.e user is not using dual stack and have PodIP == v4 and ServiceIP==v6
    		// previously controller could assign wrong ip to endpoint address
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        testRequestBodySurvivesRetries(TransferKind.CHUNKED)
      }
    
      private fun testRequestBodySurvivesRetries(transferKind: TransferKind) {
        server.enqueue(MockResponse(body = "abc"))
    
        // Use a misconfigured proxy to guarantee that the request is retried.
        client =
          client.newBuilder()
            .proxySelector(
              FakeProxySelector()
                .addProxy(server2.toProxyAddress())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CallTest.kt

        executeSynchronously("/")
          .assertFailure(IOException::class.java)
      }
    
      @Test
      fun requestBodySurvivesRetries() {
        server.enqueue(MockResponse())
    
        // Enable a misconfigured proxy selector to guarantee that the request is retried.
        client =
          client.newBuilder()
            .proxySelector(
              FakeProxySelector()
                .addProxy(server2.toProxyAddress())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller_test.go

    //
    // issue https://github.com/kubernetes/kubernetes/pull/23223
    func TestPodIsNotDeletedByDaemonsetWithEmptyLabelSelector(t *testing.T) {
    	// Create a misconfigured DaemonSet. An empty pod selector is invalid but could happen
    	// if we upgrade and make a backwards incompatible change.
    	//
    	// The node selector matches no nodes which mimics the behavior of kubectl delete.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
Back to top