Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,188 for cont (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyDescriptorArtifact.groovy

        String ext
        List<String> conf
        Map<String, String> mavenAttributes
    
        void hasAttributes(def ext, def type, def conf, def classifier = null) {
            assert this.ext == ext
            assert this.type == type
            assert this.conf == conf
            assert this.classifier == classifier
        }
    
        IvyDescriptorArtifact hasConf(def conf) {
            assert this.conf == conf
            return this
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. 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)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ExtendingConfigurationsIntegrationTest.groovy

                        configurations.conf.extendsFrom(configurations.fooConf)
                        assert configurations.conf.allDependencies*.name == ['foo']
    
                        //replace:
                        configurations.conf.extendsFrom = [configurations.barConf] as Set
                        assert configurations.conf.allDependencies*.name == ['bar']
                    }
                }
            """
    
            when:
            run "check"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/canUseDynamicVersions/projectA-1.2-ivy.xml

    		module="projectA"
    		revision="1.2"
    	/>
    	<configurations>
    		<conf name="runtime" visibility="public"/>
    		<conf name="default" visibility="public" extends="runtime"/>
    	</configurations>
    	<publications>
    		<artifact name="projectA" type="jar" ext="jar" conf="*"/>
    	</publications>
        <dependencies>
            <dependency org="test" name="projectB" rev="latest.release" conf="runtime->default"/>
        </dependencies>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 519 bytes
    - Viewed (0)
  8. src/go/types/sizes_test.go

    	}
    }
    
    func TestIssue16902(t *testing.T) {
    	const src = `
    package a
    
    import "unsafe"
    
    const _ = unsafe.Offsetof(struct{ x int64 }{}.x)
    `
    	info := types.Info{Types: make(map[ast.Expr]types.TypeAndValue)}
    	conf := types.Config{
    		Importer: importer.Default(),
    		Sizes:    &types.StdSizes{WordSize: 8, MaxAlign: 8},
    	}
    	mustTypecheck(src, &conf, &info)
    	for _, tv := range info.Types {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 21:00:48 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. 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)
  10. platforms/documentation/docs/src/snippets/valueProviders/fileContentsDont/groovy/some.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - Viewed (0)
Back to top