Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for Handles (0.22 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

            auto* node_context = shape_refiner_->GetContext(node);
            shape_inference::ShapeHandle handle;
            Status status =
                node_context->MakeShapeFromShapeProto(shape.value(), &handle);
            if (!status.ok()) {
              return EmitErrorWithLocationStr(*node, status);
            }
            node_context->set_output(shape.index(), handle);
          }
          return absl::OkStatus();
        };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    		Object:       oi,
    		ReqParams:    extractReqParams(r),
    		RespElements: extractRespElements(w),
    		UserAgent:    r.UserAgent(),
    		Host:         handlers.GetSourceIP(r),
    	})
    }
    
    // RestoreObjectHandler - POST restore object handler.
    // ----------
    func (api objectAPIHandlers) PostRestoreObjectHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "PostRestoreObject")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	r0, _, e1 := syscall.Syscall(procOpenSCManagerW.Addr(), 3, uintptr(unsafe.Pointer(machineName)), uintptr(unsafe.Pointer(databaseName)), uintptr(access))
    	handle = Handle(r0)
    	if handle == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func OpenService(mgr Handle, serviceName *uint16, access uint32) (handle Handle, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    		}
    	}()
    
    	defer func() {
    		done <- true
    	}()
    
    	type T *uintptr
    	tt := TypeOf(T(nil))
    	ct := ChanOf(BothDir, tt)
    
    	// NOTE: The garbage collector handles allocated channels specially,
    	// so we have to save pointers to channels in x; the pointer code will
    	// use the gc info in the newly constructed chan type.
    	const n = 100
    	var x []any
    	for i := 0; i < n; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    	gp.sched.g = guintptr(unsafe.Pointer(gp))
    	gp.sched.pc = getcallerpc()
    	gp.sched.sp = getcallersp()
    
    	asminit()
    	minit()
    
    	// Install signal handlers; after minit so that minit can
    	// prepare the thread to be able to handle the signals.
    	if gp.m == &m0 {
    		mstartm0()
    	}
    
    	if fn := gp.m.mstartfn; fn != nil {
    		fn()
    	}
    
    	if gp.m != &m0 {
    		acquirep(gp.m.nextp.ptr())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "CMOVWCS", argLength: 3, reg: gp21, asm: "CMOVWCS", resultInArg0: true},
    
    		// CMOV with floating point instructions. We need separate pseudo-op to handle
    		// InvertFlags correctly, and to generate special code that handles NaN (unordered flag).
    		// NOTE: the fact that CMOV*EQF here is marked to generate CMOV*NE is not a bug. See
    		// code generation in amd64/ssa.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    func.func @testInvalidTPUExecuteAndUpdateVariables(%arg0: tensor<!tf_type.resource<tensor<i32>>>, %arg1: tensor<3x!tf_type.string>) {
      // expected-error@below {{requires 'device_var_reads_indices' to be the same size as number of resource handles in 'args' (1), but got 2}}
      "tf.TPUExecuteAndUpdateVariables"(%arg0, %arg1) {device_var_reads_indices = [0, 1], device_var_updates_indices = [0]} : (tensor<!tf_type.resource<tensor<i32>>>, tensor<3x!tf_type.string>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  8. src/database/sql/sql.go

    		// convertAssignRows can take a nil *Rows; for simplicity handle it here
    		return nil
    	}
    	return rs.raw
    }
    
    // setrawbuf updates the RawBytes buffer with the result of appending a new value to it.
    // It returns the new value.
    func (rs *Rows) setrawbuf(b []byte) RawBytes {
    	if rs == nil {
    		// convertAssignRows can take a nil *Rows; for simplicity handle it here
    		return RawBytes(b)
    	}
    	off := len(rs.raw)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal_test.go

    		obj := &autoscalingv2.HorizontalPodAutoscalerList{
    			Items: hpaList[:],
    		}
    		return true, obj, nil
    	})
    
    	testClient.AddReactor("update", "horizontalpodautoscalers", func(action core.Action) (handled bool, ret runtime.Object, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "postStart": {
              "$ref": "#/definitions/io.k8s.api.core.v1.Handler",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top