Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for little32 (0.14 sec)

  1. src/runtime/mgcpacer.go

    	// regime.
    	scanWorkRemaining := scanWorkExpected - work
    	if scanWorkRemaining < 1000 {
    		// We set a somewhat arbitrary lower bound on
    		// remaining scan work since if we aim a little high,
    		// we can miss by a little.
    		//
    		// We *do* need to enforce that this is at least 1,
    		// since marking is racy and double-scanning objects
    		// may legitimately make the remaining scan work
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    		procBrk := sbrk0()
    
    		// If we ask for the end of the data segment but the
    		// operating system requires a little more space
    		// before we can start allocating, it will give out a
    		// slightly higher pointer. Except QEMU, which is
    		// buggy, as usual: it won't adjust the pointer
    		// upward. So adjust it upward a little bit ourselves:
    		// 1/4 MB to get away from the running binary image.
    		p := firstmoduledata.end
    		if p < procBrk {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/runtime/mbitmap.go

    // runtime from type metadata for all larger objects. Objects without
    // pointers have neither a bitmap nor associated type metadata.
    //
    // Bits in all cases correspond to words in little-endian order.
    //
    // For small objects, if s is the mspan for the span starting at "start",
    // then s.heapBits() returns a slice containing the bitmap for the whole span.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/p256_asm_ppc64le.s

    //   for loads and stores.
    // - The constants that are loaded from CPOOL.
    //
    
    // The following constants are defined in an order
    // that is correct for use with LXVD2X/STXVD2X
    // on little endian.
    DATA p256<>+0x00(SB)/8, $0xffffffff00000001 // P256
    DATA p256<>+0x08(SB)/8, $0x0000000000000000 // P256
    DATA p256<>+0x10(SB)/8, $0x00000000ffffffff // P256
    DATA p256<>+0x18(SB)/8, $0xffffffffffffffff // P256
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

            // XLA does not support Const nodes of Variant type since it needs
            // to know the original ops to be able to compile them to the relevant
            // XLA form.
            // TODO(srbs): This filter is a little conservative. E.g. a subgraph of
            // the form:
            //                          Const
            //                            |
            // EmptyTensorList -> TensorListPushBack -> TensorListPopBack -> Op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            } else if (exp instanceof AnnotationConstantExpression) {
                ConstantExpression ce = (ConstantExpression) exp;
                if (ce.getValue() instanceof AnnotationNode) {
                    // replicate a little bit of AnnotationVisitor here
                    // because we can't wait until later to do this
                    AnnotationNode an = (AnnotationNode) ce.getValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  7. .bazelrc

    # On windows, we still link everything into a single DLL.
    build:windows --config=monolithic
    
    # On linux, we dynamically link small amount of kernels
    build:linux --config=dynamic_kernels
    
    # Make sure to include as little of windows.h as possible
    build:windows --copt=-DWIN32_LEAN_AND_MEAN
    build:windows --host_copt=-DWIN32_LEAN_AND_MEAN
    build:windows --copt=-DNOGDI
    build:windows --host_copt=-DNOGDI
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server.go

    			if !ok || s.Code() != codes.Unimplemented {
    				// We could introduce a backoff delay or jitter, but this is largely catching cases
    				// where the runtime is still starting up and we request too early.
    				// Give it a little more time.
    				time.Sleep(time.Second * 2)
    				continue
    			}
    			// CRI implementation doesn't support RuntimeConfig, fallback
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/fiat/p384_fiat64.go

    	out1[0] = x1
    	out1[1] = x2
    	out1[2] = x3
    	out1[3] = x4
    	out1[4] = x5
    	out1[5] = x6
    }
    
    // p384ToBytes serializes a field element NOT in the Montgomery domain to bytes in little-endian order.
    //
    // Preconditions:
    //
    //	0 ≤ eval arg1 < m
    //
    // Postconditions:
    //
    //	out1 = map (λ x, ⌊((eval arg1 mod m) mod 2^(8 * (x + 1))) / 2^(8 * x)⌋) [0..47]
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 90.8K bytes
    - Viewed (0)
  10. src/debug/elf/file_test.go

    	//
    	// $readelf -h y.o
    	// ELF Header:
    	//   Magic:   7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00
    	//   Class:                             ELF32
    	//   Data:                              2's complement, little endian
    	//   Version:                           1 (current)
    	//   OS/ABI:                            UNIX - System V
    	//   ABI Version:                       0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
Back to top