Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 54 for Distinguishes (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/go/internal/modload/buildlist.go

    			// those transitive dependencies, and mark it as a dependency of the main
    			// module. That allows us to elide the actual structure of the module
    			// graph, but still distinguishes between direct and indirect
    			// dependencies.
    			vendorMod := module.Version{Path: "vendor/modules.txt", Version: ""}
    			if inWorkspaceMode() {
    				for _, m := range MainModules.Versions() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/LocalComponentDependencyMetadataTest.groovy

                assert result == [expected] as Set
            } catch (VariantSelectionException e) {
                if (expected == null) {
                    def distinguisher = queryAttributes.containsKey('flavor') ? 'extra' : 'flavor'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  7. doc/next/4-runtime.md

    The traceback printed by the runtime after an unhandled panic or other
    fatal error now indents the second and subsequent lines of the error
    message (for example, the argument to panic) by a single tab, so that
    it can be unambiguously distinguished from the stack trace of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 359 bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/flowcontrol/v1beta1";
    
    // FlowDistinguisherMethod specifies the method of a flow distinguisher.
    message FlowDistinguisherMethod {
      // `type` is the type of flow distinguisher method
      // The supported types are "ByUser" and "ByNamespace".
      // Required.
      optional string type = 1;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/flowcontrol/v1/types.go

    }
    
    // FlowDistinguisherMethodType is the type of flow distinguisher method
    type FlowDistinguisherMethodType string
    
    // These are valid flow-distinguisher methods.
    const (
    	// FlowDistinguisherMethodByUserType specifies that the flow distinguisher is the username in the request.
    	// This type is used to provide some insulation between users.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/flowcontrol/v1beta3";
    
    // FlowDistinguisherMethod specifies the method of a flow distinguisher.
    message FlowDistinguisherMethod {
      // `type` is the type of flow distinguisher method
      // The supported types are "ByUser" and "ByNamespace".
      // Required.
      optional string type = 1;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top