Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 576 for darkred (4.77 sec)

  1. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/NonNullApi.java

    import java.lang.annotation.Target;
    
    /**
     * Marks a type or a whole package as providing a non-null API by default.
     *
     * All parameter and return types are assumed to be {@link Nonnull} unless specifically marked as {@link Nullable}.
     *
     * All types of an annotated package inherit the package rule.
     * Subpackages do not inherit nullability rules and must be annotated.
     *
     * @since 4.2
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/features/withstaticreference/WithExtensionReferences.java

     * limitations under the License.
     */
    
    package org.gradle.internal.instrumentation.api.annotations.features.withstaticreference;
    
    /**
     * A Groovy property access interceptor or an instance method interceptor may be marked with
     * this annotation that specifies the class that the Groovy compiler will resolve the extension to.
     * In this case, an additional synthetic interceptor is added for the static method of the class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/structs/hostlayout.go

    // expectations, generally following the host's C ABI.
    //
    // HostLayout does not affect layout within any other struct-typed fields
    // of the containing struct, nor does it affect layout of structs
    // containing the struct marked as host layout.
    //
    // By convention, HostLayout should be used as the type of a field
    // named "_", placed at the beginning of the struct type definition.
    type HostLayout struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/flags.h

    struct MarkForCompilationPassFlags {
      XlaAutoJitFlag xla_auto_jit_flag;
    
      // Minimum number of operators in an XLA compilation. Ignored for operators
      // placed on an XLA device or operators explicitly marked for compilation.
      int32 tf_xla_min_cluster_size;
    
      // Maximum number of operators in an XLA compilation.
      int32 tf_xla_max_cluster_size;
    
      // If non-empty, limit XLA clustering to the following TF operations.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. testing/internal-testing/src/main/groovy/org/gradle/util/internal/ToBeImplemented.java

     *
     * <p>This annotation replaces {@literal @}{@link groovy.test.NotYetImplemented}.
     * The problem with {@code NotYetImplemented} is that it succeeds no matter what causes the marked test
     * to fail. Tests like that can pass because the expected failure is still present, or even if the
     * expected failure is replaced by some other failure. It's better to write a test that explicitly
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top