Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for planes (0.13 sec)

  1. src/runtime/traceback.go

    //
    //	var u unwinder
    //	for u.init(gp, 0); u.valid(); u.next() {
    //		// ... use frame info in u ...
    //	}
    //
    // Implementation note: This is carefully structured to be pointer-free because
    // tracebacks happen in places that disallow write barriers (e.g., signals).
    // Even if this is stack-allocated, its pointer-receiver methods don't know that
    // their receiver is on the stack, so they still emit write barriers. Here we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif
    }
    
    #ifdef _MSC_VER
    # pragma warning(pop)  // Restores the warning state.
    #endif
    
    #if GTEST_OS_WINDOWS_MOBILE
    // Windows CE has no C library. The abort() function is used in
    // several places in Google Test. This implementation provides a reasonable
    // imitation of standard behaviour.
    void Abort();
    #else
    inline void Abort() { abort(); }
    #endif  // GTEST_OS_WINDOWS_MOBILE
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. src/runtime/mbitmap.go

    	// Each word of ptrdata needs one bit in the bitmap.
    	bitmapBytes := divRoundUp(ptrdata, 8*goarch.PtrSize)
    	// Compute the number of pages needed for bitmapBytes.
    	pages := divRoundUp(bitmapBytes, pageSize)
    	s := mheap_.allocManual(pages, spanAllocPtrScalarBits)
    	runGCProg(addb(prog, 4), (*byte)(unsafe.Pointer(s.startAddr)))
    	return s
    }
    func dematerializeGCProg(s *mspan) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif
    }
    
    #ifdef _MSC_VER
    # pragma warning(pop)  // Restores the warning state.
    #endif
    
    #if GTEST_OS_WINDOWS_MOBILE
    // Windows CE has no C library. The abort() function is used in
    // several places in Google Test. This implementation provides a reasonable
    // imitation of standard behaviour.
    void Abort();
    #else
    inline void Abort() { abort(); }
    #endif  // GTEST_OS_WINDOWS_MOBILE
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    // The relative order of left and right are guaranteed to be kept.
    // They have higher precedence than the order in the live list.
    // The place for a item in `left` is found by:
    // scan from the place of last insertion in `right` to the end of `right`,
    // the place is before the first item that is greater than the item we want to insert.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    	// is necessary to sweep all spans, we need to ensure all
    	// mcaches are flushed before we start the next GC cycle.
    	//
    	// While we're here, flush the page cache for idle Ps to avoid
    	// having pages get stuck on them. These pages are hidden from
    	// the scavenger, so in small idle heaps a significant amount
    	// of additional memory might be held onto.
    	//
    	// Also, flush the pinner cache, to avoid leaking that memory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ==== Backward compatibility
    
    Our approach is to only do backwards-breaking Kotlin upgrades on a major Gradle release. We will always clearly document which Kotlin version we ship and announce upgrade plans before a major release.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (MOV(D|W|H)storeidx ptr idx      r:(BR(D|W|H) val) mem) && r.Uses == 1 => (MOV(D|W|H)BRstoreidx ptr idx val mem)
    
    // GOPPC64<10 rules.
    // These Bswap operations should only be introduced by the memcombine pass in places where they can be folded into loads or stores.
    (Bswap(32|16) x:(MOV(W|H)Zload [off] {sym} ptr mem)) => @x.Block (MOV(W|H)BRload (MOVDaddr <ptr.Type> [off] {sym} ptr) mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	// versionsWithUnchangedSchemas tracks schemas of which versions are unchanged when updating a CRD.
    	// Does not apply to creation or deletion.
    	// Some checks use this to avoid rejecting previously accepted versions due to a control plane upgrade/downgrade.
    	versionsWithUnchangedSchemas sets.Set[string]
    	// suppressPerExpressionCost indicates whether CEL per-expression cost limit should be suppressed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

          [CallOpInterface, DeclareOpInterfaceMethods<SymbolUserOpInterface>]> {
      let summary =
        "returns `f(inputs)`, where `f`'s body is placed and partitioned.";
    
      let description = [{
    Asynchronously executes a function, potentially across multiple devices but
    within a single process. The kernel places and partitions a given function's
    underlying graph, and executes each of the partitioned subgraphs as a function.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top