Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for 512g (0.31 sec)

  1. docs/en/docs/release-notes.md

    * ⬆ Bump actions/setup-python from 2 to 4. PR [#5129](https://github.com/tiangolo/fastapi/pull/5129) by [@dependabot[bot]](https://github.com/apps/dependabot).
    * 👷 Add Dependabot. PR [#5128](https://github.com/tiangolo/fastapi/pull/5128) by [@tiangolo](https://github.com/tiangolo).
    * ♻️ Move from `Optional[X]` to `Union[X, None]` for internal utils. PR [#5124](https://github.com/tiangolo/fastapi/pull/5124) by [@tiangolo](https://github.com/tiangolo).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  2. src/runtime/stack.go

    	// to each stack below the usual guard area for OS-specific
    	// purposes like signal handling. Used on Windows, Plan 9,
    	// and iOS because they do not use a separate stack.
    	stackSystem = goos.IsWindows*512*goarch.PtrSize + goos.IsPlan9*512 + goos.IsIos*goarch.IsArm64*1024
    
    	// The minimum size of stack used by Go code
    	stackMin = 2048
    
    	// The minimum stack size to allocate.
    	// The hackery here rounds fixedStack0 up to a power of 2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  3. src/cmd/link/link_test.go

    var alignPcFnAddr uintptr
    
    func main() {
    	if alignPcFnAddr % 512 != 0 {
    		fmt.Printf("expected 512 bytes alignment, got %v\n", alignPcFnAddr)
    	} else {
    		fmt.Printf("PASS")
    	}
    }
    `
    
    var testFuncAlignAsmSources = map[string]string{
    	"arm64": `
    #include "textflag.h"
    
    TEXT	·alignPc(SB),NOSPLIT, $0-0
    	MOVD	$2, R0
    	PCALIGN	$512
    	MOVD	$3, R1
    	RET
    
    GLOBL	·alignPcFnAddr(SB),RODATA,$8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  4. src/index/suffixarray/sais2.go

    	// in which case there is a subproblem-sized middle of sa that
    	// we can reuse for temporary space (saTmp).
    	// When recurse_64 is called from sais_8_64, oldTmp is length 512
    	// (from text_64), and saTmp will typically be much larger, so we'll use saTmp.
    	// When deeper recursions come back to recurse_64, now oldTmp is
    	// the saTmp from the top-most recursion, it is typically larger than
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			message:               "message not messageExpression",
    			messageExpression:     fmt.Sprintf(`"%s"`, genString(5121, 'a')),
    			costBudget:            celconfig.RuntimeCELCostBudget,
    			expectedLogErr:        "messageExpression beyond allowable length of 5120",
    			expectedValidationErr: "message not messageExpression",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    				xremove(exe)
    			}
    			xremove(exe + ".exe")
    		case !d.IsDir() && strings.HasPrefix(d.Name(), "z"):
    			// Remove generated file, identified by marker string.
    			head := make([]byte, 512)
    			if f, err := os.Open(path); err == nil {
    				io.ReadFull(f, head)
    				f.Close()
    			}
    			if bytes.HasPrefix(head, generated) {
    				xremove(path)
    			}
    		}
    		return nil
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. src/go/types/expr.go

    		goto Error
    
    	case *ast.BasicLit:
    		switch e.Kind {
    		case token.INT, token.FLOAT, token.IMAG:
    			check.langCompat(e)
    			// The max. mantissa precision for untyped numeric values
    			// is 512 bits, or 4048 bits for each of the two integer
    			// parts of a fraction for floating-point numbers that are
    			// represented accurately in the go/constant package.
    			// Constant literals that are longer than this many bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ```
    WARNING: An illegal reflective access operation has occurred
    WARNING: Illegal reflective access by com.google.inject.internal.cglib.core.ReflectUtils$2 (file:/.../testng-5.12.1.jar) to <method>
    WARNING: Please consider reporting this to the maintainers of com.google.inject.internal.cglib.core.ReflectUtils$2
    WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    // {0 KB, 16 KB], {16 KB, 32 KB], {32 KB, 64 KB], {64 KB, 128 KB], {128 KB, 256 KB],
    // {256 KB, 512 KB], {512 KB, infinity}
    // In practice, the maximum scratch buffer size should not exceed 512 KB due to
    // frameScratchBufferLen(maxFrameSize), thus the "infinity pool" should never be used.
    // It exists mainly as a safety measure, for potential future increases in max buffer size.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          enable_per_channel_quantization: bool,
      ):
        input_shape = (1, 512)
    
        self._create_matmul_model(
            input_shape=input_shape,
            weight_shape=(512, 2),
            saved_model_path=self._input_saved_model_path,
        )
    
        tags = {tag_constants.SERVING}
        quantization_options = quant_opts_pb2.QuantizationOptions(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top