Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for GETs (0.04 sec)

  1. cmd/bucket-handlers.go

    	}))
    
    	// Write success response.
    	writeSuccessResponseHeadersOnly(w)
    }
    
    // GetBucketObjectLockConfigHandler - GET Bucket object lock configuration.
    // ----------
    // Gets the Object Lock configuration for a bucket. The rule specified in
    // the Object Lock configuration will be applied by default to every new
    // object placed in the specified bucket.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    		// Only use the VERSION file if it is non-empty.
    		if b != "" {
    			return b
    		}
    	}
    
    	// The $GOROOT/VERSION.cache file is a cache to avoid invoking
    	// git every time we run this command. Unlike VERSION, it gets
    	// deleted by the clean command.
    	path = pathf("%s/VERSION.cache", goroot)
    	if isfile(path) {
    		return chomp(readfile(path))
    	}
    
    	// Show a nicer error message if this isn't a Git repo.
    	if !isGitRepo() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. src/go/types/expr.go

    were not present": when updateExprType visits an untyped lhs shift operand
    and assigns it it's final type, that type must be an integer type, and a
    constant lhs must be representable as an integer.
    
    When an expression gets its final type, either on the way out from rawExpr,
    on the way down in updateExprType, or at the end of the type checker run,
    the type (and constant value, if any) is recorded via Info.Types, if present.
    */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      if (handle_dtype.getSubtypes().empty()) {
        return UnrankedTensorType::get(element_type);
      }
      return PrependLeadingDimIfRanked(-1, handle_dtype.getSubtypes()[0], rewriter);
    }
    
    // Gets the index of tensorlist arguments which size might get changed by the
    // function.
    llvm::SmallSet<int, 4> GetResizedTensorListIndexes(
        func::FuncOp func, const llvm::SmallSet<int, 4> &tensor_list_args) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  5. src/cmd/dist/test.go

    						return "No support for static linking found (lacks libc.a?), skip cgo static linking test.", true
    					}
    				}
    			}
    
    			// Doing a static link with boringcrypto gets
    			// a C linker warning on Linux.
    			// in function `bio_ip_and_port_to_socket_and_addr':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    	// recording our stack trace into mp.profStack, and then allocating a
    	// r.Stack of the right size. However, mp.profStack is also used for
    	// allocation profiling, so it could get overwritten if the slice allocation
    	// gets profiled. So instead we record the stack trace into a temporary
    	// pcbuf which is usually given to us by our caller. When it's not, we have
    	// to allocate one here. This will only happen for goroutines that were in a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. cmd/api-errors.go

    func getAPIError(code APIErrorCode) APIError {
    	if apiErr, ok := errorCodes[code]; ok {
    		return apiErr
    	}
    	return errorCodes.ToAPIErr(ErrInternalError)
    }
    
    // getErrorResponse gets in standard error and resource value and
    // provides a encodable populated response values
    func getAPIErrorResponse(ctx context.Context, err APIError, resource, requestID, hostID string) APIErrorResponse {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  8. src/cmd/compile/internal/types2/expr.go

    were not present": when updateExprType visits an untyped lhs shift operand
    and assigns it it's final type, that type must be an integer type, and a
    constant lhs must be representable as an integer.
    
    When an expression gets its final type, either on the way out from rawExpr,
    on the way down in updateExprType, or at the end of the type checker run,
    the type (and constant value, if any) is recorded via Info.Types, if present.
    */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. src/runtime/mgc.go

    	// few spans unswept. In forced mode, this is necessary since
    	// GC can be forced at any point in the sweeping cycle.
    	//
    	// We check the transition condition continuously here in case
    	// this G gets delayed in to the next GC cycle.
    	for trigger.test() && sweepone() != ^uintptr(0) {
    	}
    
    	// Perform GC initialization and the sweep termination
    	// transition.
    	semacquire(&work.startSema)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. src/runtime/traceback.go

    	}
    	if asanenabled {
    		asanwrite(unsafe.Pointer(arg), unsafe.Sizeof(cgoSymbolizerArg{}))
    	}
    	call(cgoSymbolizer, noescape(unsafe.Pointer(arg)))
    }
    
    // cgoContextPCs gets the PC values from a cgo traceback.
    func cgoContextPCs(ctxt uintptr, buf []uintptr) {
    	if cgoTraceback == nil {
    		return
    	}
    	call := cgocall
    	if panicking.Load() > 0 || getg().m.curg != getg() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top