Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for Route (0.04 sec)

  1. cluster/gce/util.sh

      gcloud compute instances remove-metadata "${name}" --zone "${zone}" --keys=kube-master-internal-ip
      # We want `ip route` to be run in the cloud and not this host
      run-gcloud-command "${name}" "${zone}" "sudo ip route del to local ${ip}/32 dev \$(ip route | grep default | while read -r _ _ _ _ dev _; do echo \$dev; done)" || true
      return $?
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	}
    }
    
    func validateSimpleGetOptionsParams(t *testing.T, route *restful.Route) {
    	// Validate name and description
    	expectedParams := map[string]string{
    		"param1":  "description for param1",
    		"param2":  "description for param2",
    		"atAPath": "",
    	}
    	for _, p := range route.ParameterDocs {
    		data := p.Data()
    		if desc, exists := expectedParams[data.Name]; exists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    	hip, errCode := extractHealInitParams(mux.Vars(r), r.Form, r.Body)
    	if errCode != ErrNone {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(errCode), r.URL)
    		return
    	}
    
    	// Analyze the heal token and route the request accordingly
    	token, success := proxyRequestByToken(ctx, w, r, hip.clientToken)
    	if success {
    		return
    	}
    	hip.clientToken = token
    	// if request was not successful, try this server locally if token
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

          expected.assertSuppressed { throwables: List<Throwable>? ->
            assertThat(throwables!!.size).isEqualTo(1)
          }
        }
      }
    
      /**
       * When a pooled connection fails, don't blame the route. Otherwise pooled connection failures can
       * cause unnecessary SSL fallbacks.
       *
       * https://github.com/square/okhttp/issues/515
       */
      @Test
      fun sslFallbackNotUsedWhenRecycledConnectionFails() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    			t.Errorf("Expected response code of StatusMovedPermanently; got %d", code)
    			return
    		}
    	}
    }
    
    // Test that the special cased "/route" redirect
    // implicitly created by a registered "/route/"
    // properly sets the query string in the redirect URL.
    // See Issue 17841.
    func TestServeWithSlashRedirectKeepsQueryString(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top