Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,610 for Single (0.16 sec)

  1. platforms/documentation/docs/src/snippets/workerApi/workerDaemon/kotlin/build.gradle.kts

    // The parameters for a single unit of work
    interface ReverseParameters : WorkParameters {
        val fileToReverse : RegularFileProperty
        val destinationDir : DirectoryProperty
    }
    
    // The implementation of a single unit of work
    abstract class ReverseFile @Inject constructor(val fileSystemOperations: FileSystemOperations) : WorkAction<ReverseParameters> {
        override fun execute() {
            val fileToReverse = parameters.fileToReverse.asFile.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/dupLoad_test.go

    // license that can be found in the LICENSE file.
    
    // This test makes sure that we don't split a single
    // load up into two separate loads.
    
    package main
    
    import "testing"
    
    //go:noinline
    func read1(b []byte) (uint16, uint16) {
    	// There is only a single read of b[0].  The two
    	// returned values must have the same low byte.
    	v := b[0]
    	return uint16(v), uint16(v) | uint16(b[1])<<8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"FMAXP (vector)","Bits":"0|Q|1|0|1|1|1|0|0|sz|1|Rm:5|1|1|1|1|0|1|Rn:5|Rd:5","Arch":"Vector single-precision and double-precision variant","Syntax":"FMAXP <Vd>.<T>, <Vn>.<T>, <Vm>.<T>","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  4. pkg/registry/rbac/validation/policy_compact.go

    	for _, simpleRule := range simpleRules {
    		compacted = append(compacted, *simpleRule)
    	}
    
    	return compacted, nil
    }
    
    // isSimpleResourceRule returns true if the given rule contains verbs, a single resource, a single API group, at most one Resource Name, and no other values
    func isSimpleResourceRule(rule *rbacv1.PolicyRule) (simpleResource, bool) {
    	resource := simpleResource{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 22 12:17:05 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformTestFixture.groovy

         * and another transform that converts 'red' to 'green'.
         * By default the 'blue' variant will contain a single file, and the transform will produce a single 'green' file from this.
         */
        void setupBuildWithChainedColorTransform(boolean lenient = false) {
            setupBuildWithColorAttributes()
            buildFile << """
                allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 15:06:39 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/docker.md

    #### Docker Compose
    
    You could be deploying to a **single server** (not a cluster) with **Docker Compose**, so you wouldn't have an easy way to manage replication of containers (with Docker Compose) while preserving the shared network and **load balancing**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    // EgressSelection provides the configuration for a single egress selection client.
    type EgressSelection struct {
    	// Name is the name of the egress selection.
    	// Currently supported values are "controlplane", "etcd" and "cluster"
    	Name string
    
    	// Connection is the exact information used to configure the egress selection
    	Connection Connection
    }
    
    // Connection provides the configuration for a single egress selection client.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultBinaryTasksCollectionTest.groovy

        }
    
        def "returns null for missing single task with type"() {
            expect:
            tasks.findSingleTaskWithType(Copy) == null
        }
    
        def "returns single task with type"() {
            def copyTask = Mock(Copy)
            when:
            tasks.add(copyTask)
    
            then:
            tasks.findSingleTaskWithType(Copy) == copyTask
        }
    
        def "fails finding single task with type where multiple exist"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. src/html/template/context.go

    // mode, but also contains state that does not correspond to anything in the
    // HTML5 parsing algorithm because a single token production in the HTML
    // grammar may contain embedded actions in a template. For instance, the quoted
    // HTML attribute produced by
    //
    //	<div title="Hello {{.World}}">
    //
    // is a single token in HTML's grammar but in a template spans several nodes.
    type state uint8
    
    //go:generate stringer -type state
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/LocalOriginDependencyMetadata.java

    import java.util.List;
    
    /**
     * A dependency that is defined locally in a build script, not resolved from a repository.
     * This has a simplified model of a dependency, that maps from a single module configuration to a single target configuration.
     */
    public interface LocalOriginDependencyMetadata extends ForcingDependencyMetadata {
    
        @Override
        LocalOriginDependencyMetadata withTarget(ComponentSelector target);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 19:31:08 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top