Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for Distinguishes (0.26 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

    // successors for each op, based on side effects on known and unknown resources.
    // Side-effecting ops on unknown resources are conservatively treated as
    // interfering with all known resource op accesses. It distinguishes accesses
    // based on whether they are read-only, and read-only ops do not interfere with
    // each other.
    //
    // If there are nested regions, each region is handled separately, and control
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/objfile.go

    	w.Bytes(w.tmpHash[:])
    }
    
    // contentHashSection returns a mnemonic for s's section.
    // The goal is to prevent content-addressability from moving symbols between sections.
    // contentHashSection only distinguishes between sets of sections for which this matters.
    // Allowing flexibility increases the effectiveness of content-addressability.
    // But in some cases, such as doing addressing based on a base symbol,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    ------------------------------------------------------------
    
    My app build tasks
    ------------------
    tasksAll - Show additional tasks.
    ----
    
    [[sec:task_categories]]
    == Task categories
    
    Gradle distinguishes between two categories of tasks:
    
    1. *Lifecycle tasks*
    2. *Actionable tasks*
    
    **Lifecycle tasks** define targets you can call, such as `:build` your project.
    Lifecycle tasks do not provide Gradle with actions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    2. when `languageVersion` has been set, optionally followed by setting any other property.
    
    In other words, if a vendor or an implementation are specified, they must be accompanied by the language version.
    Gradle distinguishes between toolchain specifications that configure the language version and the ones that do not.
    A specification without a language version, in most cases, would be treated as a one that selects the toolchain of the current build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. src/testing/fuzz.go

    	// the package.
    	corpusDir = "testdata/fuzz"
    )
    
    // fuzzWorkerExitCode is used as an exit code by fuzz worker processes after an
    // internal error. This distinguishes internal errors from uncontrolled panics
    // and other failures. Keep in sync with internal/fuzz.workerExitCode.
    const fuzzWorkerExitCode = 70
    
    // InternalFuzzTarget is an internal type but exported because it is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. pilot/pkg/model/service.go

    func (st ServiceTarget) NamespacedName() types.NamespacedName {
    	return st.Service.NamespacedName()
    }
    
    type (
    	ServicePort = *Port
    	// ServiceInstancePort defines a port that has both a port and targetPort (which distinguishes it from model.Port)
    	// Note: ServiceInstancePort only makes sense in the context of a specific ServiceInstance, because TargetPort depends on a specific instance.
    	ServiceInstancePort struct {
    		ServicePort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    The class extends `DefaultTask` and it has one `@Input`, which is of type `Property<String>`.
    It has one method that is annotated with `@TaskAction`, which prints out the version.
    
    Note that the task implementation clearly distinguishes between "Configuration code" and "Execution code".
    
    The configuration code is executed during Gradle's configuration phase.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// InlMark marks the start of an inlined function body. Its AuxInt field
    	// distinguishes which entry in the local inline tree it is marking.
    	{name: "InlMark", argLength: 1, aux: "Int32", typ: "Void"}, // arg[0]=mem, returns void.
    
    	// Ops for breaking 64-bit operations on 32-bit architectures
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. src/internal/fuzz/worker.go

    	// responding to the coordinator before being stopped.
    	workerTimeoutDuration = 1 * time.Second
    
    	// workerExitCode is used as an exit code by fuzz worker processes after an internal error.
    	// This distinguishes internal errors from uncontrolled panics and other crashes.
    	// Keep in sync with internal/fuzz.workerExitCode.
    	workerExitCode = 70
    
    	// workerSharedMemSize is the maximum size of the shared memory file used to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    Even more information on the differences between `api` and `implementation` is provided in the Java Library Plugin chapter linked above.
    
    `runtime`::
    Use the `runtimeOnly` configuration.
    
    `test`::
    Gradle distinguishes between those dependencies that are required to _compile_ a project's tests and those that are only needed to _run_ them.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
Back to top