Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for pushHead (0.16 sec)

  1. src/net/http/h2_bundle.go

    type http2writePushPromise struct {
    	streamID uint32   // pusher stream
    	method   string   // for :method
    	url      *url.URL // for :scheme, :authority, :path
    	h        Header
    
    	// Creates an ID for a pushed stream. This runs on serveG just before
    	// the frame is written. The returned ID is copied to promisedID.
    	allocatePromisedID func() (uint32, error)
    	promisedID         uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	if p1.Pod != unschedulablePod {
    		t.Errorf("Expected that test-pod-unscheduled was popped, got %v", p1.Pod.Name)
    	}
    
    	// Assume newer pod was added just after unschedulable pod
    	// being popped and before being pushed back to the queue.
    	newerPod := st.MakePod().Name("test-newer-pod").Namespace("ns1").UID("tp002").CreationTimestamp(metav1.Now()).Priority(highPriority).NominatedNodeName("node1").Obj()
    	q.Add(logger, newerPod)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    				r.Sym = p.To.Sym
    				r.Add = p.To.Offset
    				r.Type = objabi.R_CALL
    				r.Siz = 4
    				ab.PutInt32(0)
    
    				if yt.zcase == Zcallduff && ctxt.Arch.Family == sys.AMD64 {
    					// Pop BP pushed above.
    					// MOVQ 0(BP), BP
    					ab.Put(bpduff2)
    				}
    
    			// TODO: jump across functions needs reloc
    			case Zbr, Zjmp, Zloop:
    				if p.As == AXBEGIN {
    					ab.Put1(byte(op))
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. RELEASE.md

    *   TensorForest multi-regression bug fix.
    *   Framework now supports armv7, cocoapods.org now displays correct page.
    *   Script to create iOS framework for CocoaPods.
    *   Android releases of TensorFlow are now pushed to jcenter for easier
        integration into apps. See
        https://github.com/tensorflow/tensorflow/blob/master/tensorflow/tools/android/inference_interface/README.md
        for more details.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let summary = "Push an element onto the stack.";
    
      let arguments = (ins
        Arg<TF_ResourceTensor, [{The handle to a stack.}], [TF_StackRead, TF_StackWrite]>:$handle,
        Arg<TF_Tensor, [{The tensor to be pushed onto the stack.}]>:$elem,
    
        DefaultValuedOptionalAttr<BoolAttr, "false">:$swap_memory
      );
    
      let results = (outs
        Res<TF_Tensor, [{The same tensor as the input 'elem'.}]>:$output
      );
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top