Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 89 for GETs (0.07 sec)

  1. src/cmd/compile/internal/ssa/regalloc.go

    // for 2-register architectures.
    
    // Note: regalloc generates a not-quite-SSA output. If we have:
    //
    //             b1: x = ... : AX
    //                 x2 = StoreReg x
    //                 ... AX gets reused for something else ...
    //                 if ... goto b3 else b4
    //
    //   b3: x3 = LoadReg x2 : BX       b4: x4 = LoadReg x2 : CX
    //       ... use x3 ...                 ... use x4 ...
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/Futures.java

         *
         * <p>If the combiner throws an {@code ExecutionException}, the cause of the thrown {@code
         * ExecutionException} will be extracted and returned as the cause of the new {@code
         * ExecutionException} that gets thrown by the returned combined future.
         *
         * <p>Canceling this future will attempt to cancel all the component futures.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue.go

    	if len(rejectorPlugins) == 0 {
    		// No failed plugins are associated with this Pod.
    		// Meaning something unusual (a temporal failure on kube-apiserver, etc) happened and this Pod gets moved back to the queue.
    		// In this case, we should retry scheduling it because this Pod may not be retried until the next flush.
    		return queueAfterBackoff
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    	// in a Proxy-Authorization header.
    	//
    	// If Proxy is nil or returns a nil *URL, no proxy is used.
    	Proxy func(*Request) (*url.URL, error)
    
    	// OnProxyConnectResponse is called when the Transport gets an HTTP response from
    	// a proxy for a CONNECT request. It's called before the check for a 200 OK response.
    	// If it returns an error, the request fails with that error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/defaults_test.go

    		".Spec.Containers[0].ReadinessProbe.SuccessThreshold":            `1`,
    		".Spec.Containers[0].ReadinessProbe.TimeoutSeconds":              `1`,
    		".Spec.Containers[0].Resources.Requests":                         `{"":"0"}`, // this gets defaulted from the limits field
    		".Spec.Containers[0].StartupProbe.FailureThreshold":              "3",
    		".Spec.Containers[0].StartupProbe.ProbeHandler.HTTPGet.Path":     `"/"`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/EventListenerTest.kt

        val requestBodyDelay = 250L
        val responseHeadersStartDelay = 250L
        val responseBodyStartDelay = 250L
        val responseBodyEndDelay = 250L
    
        // Warm up the client so the timing part of the test gets a pooled connection.
        server.enqueue(MockResponse())
        val warmUpCall =
          client.newCall(
            Request.Builder()
              .url(server.url("/"))
              .build(),
          )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_utils_test.go

    }
    func (r *noopRecorder) AnnotatedEventf(object runtime.Object, annotations map[string]string, eventtype, reason, messageFmt string, args ...interface{}) {
    }
    
    // getClaimPodName gets the name of the Pod associated with the Claim, or an empty string if this doesn't look matching.
    func getClaimPodName(set *apps.StatefulSet, claim *v1.PersistentVolumeClaim) string {
    	podName := ""
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  8. configure.py

      write_action_env_to_bazelrc('ANDROID_SDK_API_LEVEL', android_api_level)
      write_action_env_to_bazelrc('ANDROID_SDK_HOME', android_sdk_home_path)
    
    
    def get_ndk_api_level(environ_cp, android_ndk_home_path):
      """Gets the appropriate NDK API level to use for the provided Android NDK path.
      """
    
      # First check to see if we're using a blessed version of the NDK.
      properties_path = '%s/source.properties' % android_ndk_home_path
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  9. cluster/gce/windows/k8s-node-setup.psm1

      }
    }
    
    # Returns a PowerShell object representing the Windows version.
    function Get_WindowsVersion {
      # Unlike checking `[System.Environment]::OSVersion.Version`, this long-winded
      # approach gets the OS revision/patch number correctly
      # (https://superuser.com/a/1160428/652018).
      $win_ver = New-Object -TypeName PSObject
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      }
    
      OpSet target_opset_;
    };
    
    // To calculate per-channel scale and offset, weight of depthwise was reshaped
    // to [H, W, 1, InxMul]. After scale and offset has been calculated, this
    // pattern gets called and restores the weight of depthwise back
    // into [H, W, In, Mul]
    class RestoreWeightShapePattern
        : public OpRewritePattern<TF::PartitionedCallOp> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top