Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for Handles (0.2 sec)

  1. pkg/scheduler/schedule_one_test.go

    		tf.RegisterQueueSortPlugin(queuesort.Name, queuesort.New),
    		tf.RegisterBindPlugin(defaultbinder.Name, defaultbinder.New),
    		tf.RegisterPluginAsExtensions(volumebinding.Name, func(ctx context.Context, plArgs runtime.Object, handle framework.Handle) (framework.Plugin, error) {
    			return &volumebinding.VolumeBinding{Binder: volumeBinder, PVCLister: pvcInformer.Lister()}, nil
    		}, "PreFilter", "Filter", "Reserve", "PreBind"),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    		}
    		a.pending = len(a.Deps)
    		if a.pending == 0 {
    			b.ready.push(a)
    			b.readySema <- true
    		}
    	}
    
    	// Handle runs a single action and takes care of triggering
    	// any actions that are runnable as a result.
    	handle := func(ctx context.Context, a *Action) {
    		if a.json != nil {
    			a.json.TimeStart = time.Now()
    		}
    		var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      const Value input = op.getInput();
      const Value shape = op.getShape();
    
      auto error_handler = [&](const llvm::Twine& message) -> LogicalResult {
        // A dummy error handler.
        // Errors when computing the output shape will be raised in
        // ReshapeOp::verify call.
        return failure();
      };
      TensorType output_type;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      );
    
      let results = (outs
        TFL_Complex64Tensor:$output
      );
    }
    
    def TFL_VarHandleOp : TFL_Op<"var_handle", []> {
      let summary = "Returns a handle to a variable resource from its name.";
    
      let description = [{
        Returns a handle for a variable resource from its name.
        container: the container this variable is placed in.
        shared_name: the name by which this variable is referred to.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // in no time at all, so a successful package test result will be cached and
    // reused regardless of -timeout setting.
    //
    // In addition to the build flags, the flags handled by 'go test' itself are:
    //
    //	-args
    //	    Pass the remainder of the command line (everything after -args)
    //	    to the test binary, uninterpreted and unchanged.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    // DS form instructions include: ld, ldu, lwa, std, stdu.  All other
    // loads and stores with an offset field are D form.  This function should
    // only be called with the same opcodes as are handled by opstore and opload.
    func (c *ctxt9) opform(insn uint32) int {
    	switch insn {
    	default:
    		c.ctxt.Diag("bad insn in loadform: %x", insn)
    	case OPVCC(58, 0, 0, 0), // ld
    		OPVCC(58, 0, 0, 1),        // ldu
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/asm7.go

    		o1 = c.omovconst(p.As, p, &p.From, int(p.To.Reg))
    
    	case 33: /* movk $uimm16 << pos */
    		o1 = c.opirr(p, p.As)
    
    		d := p.From.Offset
    		if d == 0 {
    			c.ctxt.Diag("zero shifts cannot be handled correctly: %v", p)
    		}
    		s := movcon(d)
    		if s < 0 || s >= 4 {
    			c.ctxt.Diag("bad constant for MOVK: %#x\n%v", uint64(d), p)
    		}
    		if (o1&S64) == 0 && s >= 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top