Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 256 for cont (0.16 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/PublishedDependencyConstraintsIntegrationTest.groovy

                    dependsOn 'org:first:2.0'
                }
            }
    
            buildFile << """
                dependencies {
                    conf(platform('org:platform:1.0'))
                    conf 'org:first:1.0'
                    conf 'org:second:1.0'
                }
    """
            when:
            repositoryInteractions {
                'org:client:4.1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  2. src/crypto/tls/tls.go

    	"net"
    	"os"
    	"strings"
    )
    
    // Server returns a new TLS server side connection
    // using conn as the underlying transport.
    // The configuration config must be non-nil and must include
    // at least one certificate or else set GetCertificate.
    func Server(conn net.Conn, config *Config) *Conn {
    	c := &Conn{
    		conn:   conn,
    		config: config,
    	}
    	c.handshakeFn = c.serverHandshake
    	return c
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesProcessingIntegTest.groovy

                }
                configurations.add(configurations.conf.copy())
    
                task('assertDeps') {
                    def conf = configurations.conf
                    def confCopy = configurations.confCopy
                    def notCopy = configurations.notCopy
                    doLast {
                        assert conf*.name == ['api-1.1.jar']
                        assert confCopy*.name == ['api-1.1.jar']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PublishedRichVersionConstraintsIntegrationTest.groovy

                    '1.1'()
                    '1.2'()
                    '2.0'()
                }
            }
    
            buildFile << """
                dependencies {
                    conf 'org:bar:1'
                    conf 'org:baz:1'
                    conf 'org:foo:[1.0,2.0)'
                }
            """
    
            when:
            repositoryInteractions {
                'org:bar:1' {
                    expectResolve()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesRulesIntegrationTest.groovy

                }
    
                dependencies {
                   conf "cglib:cglib-nodep:3.2.4"
                   conf "cglib:cglib:3.2.5"
    
                   components {
                      withModule('cglib:cglib-nodep', CapabilityRule)
                      withModule('cglib:cglib', CapabilityRule)
                   }
                }
    
                configurations.conf.resolutionStrategy.capabilitiesResolution {
                    $rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DefaultDependencyLockingProviderTest.groovy

            given:
            tmpDir.file(LockFileReaderWriter.UNIQUE_LOCKFILE_NAME) << "empty=conf"
            startParameter.isWriteDependencyLocks() >> true
            provider = newProvider()
            def modules = [module('org', 'foo', '1.0'), module('org','bar','1.3')] as Set
            provider.loadLockState('conf', owner)
            provider.persistResolvedDependencies('conf', owner, modules, emptySet())
    
            when:
            provider.buildFinished()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. src/debug/dwarf/const.go

    // the opPlusUconst operator is expected by the type parser.
    const (
    	opAddr       = 0x03 /* 1 op, const addr */
    	opDeref      = 0x06
    	opConst1u    = 0x08 /* 1 op, 1 byte const */
    	opConst1s    = 0x09 /*	" signed */
    	opConst2u    = 0x0A /* 1 op, 2 byte const  */
    	opConst2s    = 0x0B /*	" signed */
    	opConst4u    = 0x0C /* 1 op, 4 byte const */
    	opConst4s    = 0x0D /*	" signed */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

            buildFile << """
                dependencies {
                    conf('org:test:1.0') {
                        attributes {
                            attribute(CUSTOM_ATTRIBUTE, 'c1')
                        }
                        capabilities {
                            requireCapability('org.test:cap1')
                        }
                    }
                    conf('org:test:1.0') {
                        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/edwards25519.go

    // Constant-time operations
    
    // Select sets v to a if cond == 1 and to b if cond == 0.
    func (v *projCached) Select(a, b *projCached, cond int) *projCached {
    	v.YplusX.Select(&a.YplusX, &b.YplusX, cond)
    	v.YminusX.Select(&a.YminusX, &b.YminusX, cond)
    	v.Z.Select(&a.Z, &b.Z, cond)
    	v.T2d.Select(&a.T2d, &b.T2d, cond)
    	return v
    }
    
    // Select sets v to a if cond == 1 and to b if cond == 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 13 19:21:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionsInPlatformCentricDevelopmentIntegrationTest.groovy

                    configurations { conf }
                    dependencies {
                        ${platformDependency(platformType, 'org:platform:1.+')}
                        conf('org:bar')
                    }
                }
                dependencies {
                    conf(project(path: ':recklessLibrary', configuration: 'conf'))
                    conf(project(path: ':secondLibrary', configuration: 'conf'))
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19.5K bytes
    - Viewed (0)
Back to top