Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 232 for wbMove (0.37 sec)

  1. src/runtime/malloc.go

    	// the heap arenas index. In 2017, amd64 hardware added
    	// support for 57 bit addresses; however, currently only Linux
    	// supports this extension and the kernel will never choose an
    	// address above 1<<47 unless mmap is called with a hint
    	// address above 1<<47 (which we never do).
    	//
    	// arm64 hardware (as of ARMv8) limits user addresses to 48
    	// bits, in the range [0, 1<<48).
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (TailCall ...) => (CALLtail ...)
    
    // Lowering conditional moves
    // If the condition is a SETxx, we can just run a CMOV from the comparison that was
    // setting the flags.
    // Legend: HI=unsigned ABOVE, CS=unsigned BELOW, CC=unsigned ABOVE EQUAL, LS=unsigned BELOW EQUAL
    (CondSelect <t> x y (SET(EQ|NE|L|G|LE|GE|A|B|AE|BE|EQF|NEF|GF|GEF) cond)) && (is64BitInt(t) || isPtr(t))
        => (CMOVQ(EQ|NE|LT|GT|LE|GE|HI|CS|CC|LS|EQF|NEF|GTF|GEF) y x cond)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     *
     * </ul>
     *
     * <p>When reading a property, the project searches the above scopes in order, and returns the value from the first
     * scope it finds the property in. If not found, an exception is thrown. See {@link #property(String)} for more details.</p>
     *
     * <p>When writing a property, the project searches the above scopes in order, and sets the property in the first scope
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.h

    //   and these structs are allocated/deallocated via the API.
    // * TF_Status holds error information.  It is an object type
    //   and therefore is passed around as a pointer to an opaque
    //   struct as mentioned above.
    // * Every call that has a TF_Status* argument clears it on success
    //   and fills it with error info on failure.
    // * unsigned char is used for booleans (instead of the 'bool' type).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Preconditions.java

       * This is a big deal - we're talking factors of 2-8 in microbenchmarks, not just 10-20%. (This is
       * a hotspot optimizer bug, which should be fixed, but that's a separate, big project).
       *
       * The coding pattern above is heavily used in java.util, e.g. in ArrayList. There is a
       * RangeCheckMicroBenchmark in the JDK that was used to test this.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    If a build configuration input has changed, Gradle will not use the entry and will run the configuration phase again as above, saving the result for later reuse.
    
    Build configuration inputs include:
    
    - Init scripts
    - Settings scripts
    - Build scripts
    - System properties used during the configuration phase
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    //
    //    c. GC does concurrent sweeping in the background and in response
    //    to allocation. See description below.
    //
    // 5. When sufficient allocation has taken place, replay the sequence
    // starting with 1 above. See discussion of GC rate below.
    
    // Concurrent sweep.
    //
    // The sweep phase proceeds concurrently with normal program execution.
    // The heap is swept span-by-span both lazily (when a goroutine needs another span)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/buildlist.go

    // rs or the modules selected in the graph of rs.
    //
    // The above invariants together imply the graph-pruning invariants for the
    // go.mod file:
    //
    //  1. (The import invariant.) Every module that provides a package transitively
    //     imported by any package or test in the main module is included as a root.
    //     This follows by induction from (1) and (3) above. Transitively-imported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ppc64/asm.go

    	r.SetSym(ctxt.PLT)
    	r.SetSiz(8)
    	r.SetOff(int32(glink.Size()))
    	r.SetAdd(glink.Size())        // Adjust the offset to be relative to label 1 above.
    	glink.AddUint64(ctxt.Arch, 0) // The offset to the PLT.
    
    	// Resolve PC-rel offsets above now the final size of the stub is known.
    	res0m1b := glink.Size() - 8 // res_0 - 1b
    	glink.SetUint32(ctxt.Arch, 16, 0x38000000|uint32(uint16(-res0m1b)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Preconditions.java

       * This is a big deal - we're talking factors of 2-8 in microbenchmarks, not just 10-20%. (This is
       * a hotspot optimizer bug, which should be fixed, but that's a separate, big project).
       *
       * The coding pattern above is heavily used in java.util, e.g. in ArrayList. There is a
       * RangeCheckMicroBenchmark in the JDK that was used to test this.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top