Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for recvq (0.08 sec)

  1. cmd/bucket-policy-handlers_test.go

    		apiRouter.ServeHTTP(recV4, reqV4)
    		if recV4.Code != testCase.expectedRespStatus {
    			t.Errorf("Test %d: %s: Expected the response status to be `%d`, but instead found `%d`", i+1, instanceType, testCase.expectedRespStatus, recV4.Code)
    		}
    		// initialize HTTP NewRecorder, this records any mutations to response writer inside the handler.
    		recV2 := httptest.NewRecorder()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  2. cmd/bucket-handlers_test.go

    		// Call the ServeHTTP to execute the handler.
    		apiRouter.ServeHTTP(recV2, reqV2)
    		if recV2.Code != testCase.expectedRespStatus {
    			t.Errorf("Test %d: %s: Expected the response status to be `%d`, but instead found `%d`", i+1, instanceType, testCase.expectedRespStatus, recV2.Code)
    		}
    
    		errorResponse = APIErrorResponse{}
    		err = xml.Unmarshal(recV2.Body.Bytes(), &errorResponse)
    		if err != nil && !testCase.shouldPass {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  3. cmd/object-handlers_test.go

    		// Call the ServeHTTP to execute the handler.
    		apiRouter.ServeHTTP(recV2, reqV2)
    		if recV2.Code != testCase.expectedRespStatus {
    			t.Errorf("Test %d: %s: Expected the response status to be `%d`, but instead found `%d`", i+1, instanceType, testCase.expectedRespStatus, recV2.Code)
    		}
    
    		// read the response body.
    		actualContent, err = io.ReadAll(recV2.Body)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  4. pilot/pkg/xds/delta.go

    	// to tell the receiving goroutines that all data have been sent."
    
    	// Block until either a request is received or a push is triggered.
    	// We need 2 go routines because 'read' blocks in Recv().
    	go s.receiveDelta(con, ids)
    
    	// Wait for the proxy to be fully initialized before we start serving traffic. Because
    	// initialization doesn't have dependencies that will block, there is no need to add any timeout
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let constructor = "TFTPU::CreateTPUParallelExecuteSinkResourceWritePass()";
    }
    
    def RewriteTPUEmbeddingOpsPass : Pass<"tf-rewrite-tpu-embedding-ops", "mlir::func::FuncOp"> {
      let summary = "Rewrites TPU embedding send/recv ops by adding TPU embedding "
               "deduplication data";
    
      let constructor = "TF::CreateRewriteTPUEmbeddingOpsPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    				continue
    			}
    			s.newHeapaddr(n)
    			if n.Class == ir.PPARAM {
    				s.move(n.Type(), s.expr(n.Heapaddr), s.decladdrs[n])
    			}
    		}
    	}
    
    	typ := s.curfn.Type()
    	do(typ.Recvs())
    	do(typ.Params())
    	do(typ.Results())
    }
    
    // newHeapaddr allocates heap memory for n and sets its heap address.
    func (s *state) newHeapaddr(n *ir.Name) {
    	s.setHeapaddr(n.Pos(), n, s.newObject(n.Type(), nil))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    // containing a token. This HLO token type is used to order multiple infeed
    // operations within a computation. The token type can come from other
    // infeed/outfeed/send/recv ops or can be generated using create_token op with
    // no operands. Here we emit a create_token op to generate the token type
    // operand of infeed. The mhlo.InfeedOp can produce multiple results and later
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    def TF_XlaRecvOp : TF_Op<"XlaRecv", [TF_RecvSideEffect]> {
      let summary = [{
    Receives the named tensor from another XLA computation. Wraps the XLA Recv
      }];
    
      let description = [{
    operator documented at
     https://www.tensorflow.org/performance/xla/operation_semantics#recv .
      }];
    
      let arguments = (ins
        StrAttr:$tensor_name,
        TF_ShapeAttr:$shape
      );
    
      let results = (outs
    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