Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of about 10,000 for ARE (0.23 sec)

  1. tensorflow/c/experimental/ops/gen/README.md

    of the `OpDef` and `ApiDef` protos, normalized and resolved.
    
    > _For example, an `OpDef` proto's `ArgDef` members contain a type string, which
    > must be dereferenced to an `AttrDef` by name to determine its type. This
    > `AttrDef` proto message in turn contains a type string which may need to be
    > parsed as "list(type)". Other `AttrDef` messages are not types, but instead
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  2. src/runtime/HACKING.md

      objects of the same type.
    
    In general, types that are allocated using any of these should be
    marked as not in heap by embedding `runtime/internal/sys.NotInHeap`.
    
    Objects that are allocated in unmanaged memory **must not** contain
    heap pointers unless the following rules are also obeyed:
    
    1. Any pointers from unmanaged memory to the heap must be garbage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ProjectInternalViewDependencyIntegrationTest.groovy

                        // project outputs are available
                        assert new MyClass().getSpecialValue() == 13;
    
                        // `implementation` dependencies are accessible
                        assert new com.fasterxml.jackson.databind.ObjectMapper().readTree("{\\\"hello\\\": \\\"test\\\"}").get("hello").asText().equals("test");
    
                        // `compileOnly` dependencies are accessible at compile-time
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/InternalListener.java

     * <p>
     * Execution of user code listeners are observable as build operations, with provenance information.
     * Internal listeners are not.
     * This is implemented by decorating user code listeners at the registration site.
     * This interface is used to suppress the decoration.
     * <p>
     * User can generally do very little about internal listeners (i.e. they are a fixed cost),
     * while they do have control of user code listeners.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. src/go/printer/testdata/comments.x

    type S0 struct {
    	// contains filtered or unexported fields
    }
    
    // The S1 struct; some fields are not exported.
    type S1 struct {
    	S0
    	A, B, C	float	// 3 exported fields
    	D	int	// 2 unexported fields
    	// contains filtered or unexported fields
    }
    
    // The S2 struct; all fields are exported.
    type S2 struct {
    	S1
    	A, B, C	float	// 3 exported fields
    }
    
    // The IZ interface; it is empty.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:50 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/README.md

    `kubectl` compatible discovery information, optional admission chain, and versioned types.  It's first consumers are
    `k8s.io/kubernetes`, `k8s.io/kube-aggregator`, and `github.com/kubernetes-incubator/service-catalog`.
    
    
    ## Compatibility
    
    There are *NO compatibility guarantees* for this repository, yet.  It is in direct support of Kubernetes, so branches
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 03 01:38:34 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    They are applied to a project using the `plugins {}` block.
    They provide a way to reuse complex logic across projects and allow for better organization of build logic.
    
    Script Plugins :: Script plugins are Groovy DSL or Kotlin DSL scripts that are applied directly to a Gradle build script using the `apply from:` syntax.
    They are applied inline within a build script to add functionality or customize the build process.
    They are simple to use.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildInitComments.java

    @NonNullApi
    public enum BuildInitComments {
        /**
         * Comments are included for generated source files and build files.
         * <p>
         * Comments include explanations of various build script constructs,
         * helpful links and disclaimers about files being generated by an 'init' task.
         */
        ON,
    
        /**
         * Comments are not included for the source files and build files.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 27 12:41:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/README.md

    
    ## Purpose
    
    This library is a shared dependency for servers and clients to work with Kubernetes API infrastructure without direct
    type dependencies. Its first consumers are `k8s.io/kubernetes`, `k8s.io/client-go`, and `k8s.io/apiserver`.
    
    
    ## Compatibility
    
    There are *NO compatibility guarantees* for this repository. It is in direct support of Kubernetes, so branches
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 03 01:38:34 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtDataFlowInfoProvider.kt

         */
        public val hasEscapingJumps: Boolean,
    
        /**
         * `true` if there are jumps of different kinds (e.g., there is both a `break` and a `return`).
         */
        public val hasMultipleJumpKinds: Boolean,
    
        /**
         * `true` if two or more jumps have different next-executed instructions.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top