Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 77 for OUT (0.19 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"size(self.array.filter(e, e%2 == 0)) == 3",
    				"self.array.map(e, e * 20).filter(e, e > 50).exists(e, e == 60)",
    				"size(self.array) == 8",
    			},
    			errors: map[string]string{
    				"self.array[100] == 0": "index out of bounds: 100",
    			},
    		},
    		{name: "listSet access",
    			obj: map[string]interface{}{
    				"set": []interface{}{1, 2, 3, 4, 5},
    			},
    			schema: objectTypePtr(map[string]schema.Structural{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. src/net/http/transport_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	defer res.Body.Close()
    	if res.Header.Get("Hit-Handler") != "1" {
    		out, err := httputil.DumpResponse(res, true)
    		if err != nil {
    			t.Fatal(err)
    		}
    		t.Errorf("Response body wasn't from Handler. Got:\n%s\n", out)
    	}
    }
    
    // Issue 13290: send User-Agent in proxy CONNECT
    func TestTransportProxyConnectHeader(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Hoists replicate invariant operations out of replicate";
    
      let description = [{
        This pass looks for replicate invariant ops in a `tf_device.replicate` op
        region and hoists them out. It also makes `tf.Shape` ops replicate invariant
        if possible. This currently updates or replaces `tf.Shape` ops of replicated
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

    function load-or-gen-kube-bearertoken() {
      if [[ -n "${KUBE_CONTEXT:-}" ]]; then
        get-kubeconfig-bearertoken
      fi
      if [[ -z "${KUBE_BEARER_TOKEN:-}" ]]; then
        gen-kube-bearertoken
      fi
    }
    
    # Figure out which binary use on the server and assure it is available.
    # If KUBE_VERSION is specified use binaries specified by it, otherwise
    # use local dev binaries.
    #
    # Assumed vars:
    #   KUBE_VERSION
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        }
      }
    
      const DimensionVector& batch_dimensions() const { return batch_dimensions_; }
      const DimensionVector& contracting_dimensions() const {
        return contracting_dimensions_;
      }
      // Out dimensions are any dimensions that are neither batch nor contracting
      // dimensions, hence will be propagated to output shape.
      const DimensionVector& out_dimensions() const { return out_dimensions_; }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // concat hoisting optimization here.
      // Setting the threshold to be 50% as a simple cost model heuristic. e.g. If 1
      // out of 2 concat inputs is an exception, we don't apply the hoist. If it's 1
      // out of 3, we do.
      const float exception_pct_threshold = 0.5;
      if (static_cast<float>(op.getValues().size()) * exception_pct_threshold <=
          exceptions.size())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. src/net/http/server.go

    	server *Server
    
    	// cancelCtx cancels the connection-level context.
    	cancelCtx context.CancelFunc
    
    	// rwc is the underlying network connection.
    	// This is never wrapped by other types and is the value given out
    	// to CloseNotifier callers. It is usually of type *net.TCPConn or
    	// *tls.Conn.
    	rwc net.Conn
    
    	// remoteAddr is rwc.RemoteAddr().String(). It is not populated synchronously
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.cc

    TF_SessionOptions* TF_NewSessionOptions() {
      TF_SessionOptions* out = new TF_SessionOptions;
      // Disable optimizations for static graph to allow calls to Session::Extend.
      out->options.config.mutable_experimental()
          ->set_disable_optimize_for_static_graph(true);
      return out;
    }
    void TF_DeleteSessionOptions(TF_SessionOptions* opt) { delete opt; }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. src/crypto/x509/verify_test.go

    	cmd := testenv.Command(t, "sw_vers", "-productVersion")
    	out, err := cmd.Output()
    	if err != nil {
    		if ee, ok := err.(*exec.ExitError); ok && len(ee.Stderr) > 0 {
    			return 0, fmt.Errorf("%v: %v\n%s", cmd, err, ee.Stderr)
    		}
    		return 0, fmt.Errorf("%v: %v", cmd, err)
    	}
    	before, _, ok := strings.Cut(string(out), ".")
    	major, err := strconv.Atoi(before)
    	if !ok || err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

       * bug where the loop that connects a Listener to each of the futures would die on the last
       * loop-check as done() on ListFuture nulled out the variable being looped over (the list of
       * futures).
       */
      public void testAllAsList_doneFutures() throws Exception {
        // Create input and output
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
Back to top