Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 972 for darkred (0.86 sec)

  1. src/runtime/mranges.go

    // It also contains operations to be able to store marked addresses
    // to ensure that they're not overridden until they've been seen.
    type atomicOffAddr struct {
    	// a contains the offset address, unlike offAddr.
    	a atomic.Int64
    }
    
    // Clear attempts to store minOffAddr in atomicOffAddr. It may fail
    // if a marked value is placed in the box in the meanwhile.
    func (b *atomicOffAddr) Clear() {
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. src/runtime/msan.go

    func MSanWrite(addr unsafe.Pointer, len int) {
    	msanwrite(addr, uintptr(len))
    }
    
    // Private interface for the runtime.
    const msanenabled = true
    
    // If we are running on the system stack, the C program may have
    // marked part of that stack as uninitialized. We don't instrument
    // the runtime, but operations like a slice copy can call msanread
    // anyhow for values on the stack. Just ignore msanread when running
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 20:50:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolvedVariantResult.java

         */
        List<Capability> getCapabilities();
    
        /**
         * If present, this means that this variant is a bridge to another variant
         * found in another module. This corresponds to variants which are marked
         * as "available-at" in Gradle Module Metadata.
         *
         * @return the external variant, if any
         * @since 6.8
         */
        Optional<ResolvedVariantResult> getExternalVariant();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 00:34:16 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  4. src/runtime/testdata/testprogcgo/raceprof.go

    // an external C thread. This used to fail when built with the race
    // detector, because a call of the predeclared function copy was
    // turned into a call to runtime.slicecopy, which is not marked nosplit.
    
    /*
    #include <signal.h>
    #include <stdint.h>
    #include <pthread.h>
    #include <sched.h>
    
    struct cgoTracebackArg {
    	uintptr_t  context;
    	uintptr_t  sigContext;
    	uintptr_t* buf;
    	uintptr_t  max;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 18:13:14 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/dependency/IvyDependency.java

        /**
         * The configuration mapping for this dependency. This is mapped to the
         * {@code conf} field on the Ivy dependency element.
         */
        String getConfMapping();
    
        /**
         * If this dependency is marked transitive.
         */
        boolean isTransitive();
    
        /**
         * The dynamic revision constraint originally used for this dependency.
         */
        @Nullable
        String getRevConstraint();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/tasks/CacheableTask.java

    /**
     * <p>Attached to a task type to indicate that task output caching should be enabled by default for tasks of this type.</p>
     *
     * <p>Only tasks that produce reproducible and relocatable output should be marked with {@code CacheableTask}.</p>
     *
     * <p>Caching for individual task instances can be enabled and disabled via {@link TaskOutputs#cacheIf(String, Spec)} or disabled via {@link TaskOutputs#doNotCacheIf(String, Spec)}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 02 13:10:28 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  7. tensorflow/c/eager/immediate_execution_tensor_handle.cc

    Status ImmediateExecutionTensorHandle::SummarizeValue(
        std::string& summary) const {
      Status status;
      AbstractTensorPtr resolved(
          // TODO(allenl): Resolve should be const, and the caches that get updated
          // marked mutable.
          const_cast<ImmediateExecutionTensorHandle*>(this)->Resolve(&status));
      if (!status.ok()) {
        return status;
      }
      summary = resolved->SummarizeValue();
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. doc/next/5-toolchain.md

    <!-- go.dev/issue/67401, CL 585556, CL 587220, and many more -->
    The linker now disallows using a `//go:linkname` directive to refer to
    internal symbols in the standard library (including the runtime) that
    are not marked with `//go:linkname` on their definitions.
    Similarly, the linker disallows references to such symbols from assembly
    code.
    For backward compatibility, existing usages of `//go:linkname` found in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. test/fixedbugs/bug484.go

    // gets slightly confused, a separate bug). The liveness analysis
    // saw s as having its address taken but the register optimizer
    // did not. This mismatch meant that s would be marked live
    // (and therefore initialized) at the call to f, but the register optimizer
    // would optimize away the initialization of s before f, causing the
    // garbage collector to use unused data.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  10. src/runtime/textflag.h

    // and data objects. The compilers, assemblers, and linker must
    // all agree on these values.
    //
    // Keep in sync with src/cmd/internal/obj/textflag.go.
    
    // Don't profile the marked routine. This flag is deprecated.
    #define NOPROF	1
    // It is ok for the linker to get multiple of these symbols. It will
    // pick one of the duplicates to use.
    #define DUPOK	2
    // Don't insert stack check preamble.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 17:28:41 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top