Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 67 for Handles (0.52 sec)

  1. cmd/admin-handlers.go

    	"github.com/minio/minio-go/v7/pkg/set"
    	"github.com/minio/minio/internal/auth"
    	"github.com/minio/minio/internal/dsync"
    	"github.com/minio/minio/internal/grid"
    	"github.com/minio/minio/internal/handlers"
    	xhttp "github.com/minio/minio/internal/http"
    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/minio/internal/kms"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/mux"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    t.handler.ArtifactHandler zip org.apache.maven.artifact.handler.DefaultArtifactHandl jar zip java false org.apache.maven.artifact.handler.ArtifactHandler test-jar org.apache.maven.artifact.handler.DefaultArtifactHandl tests jar test-jar jar java true org.apache.maven.artifact.handler.ArtifactHandler maven-plugin org.apache.maven.artifact.handler.DefaultArtifactHandl maven-plugin jar java true org.apache.maven.artifact.handler.ArtifactHandler pom org.apache.maven.artifact.handler.DefaultArtifactHandl...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 160.1K bytes
    - Viewed (0)
Back to top