Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 312 for unnamed (0.14 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

        private static final String MAVEN_RESOLVER_TRANSPORT_JDK = "jdk";
    
        /**
         * This name for Apache HttpClient transport is deprecated.
         *
         * @deprecated Renamed to {@link #MAVEN_RESOLVER_TRANSPORT_APACHE}
         */
        @Deprecated
        private static final String MAVEN_RESOLVER_TRANSPORT_NATIVE = "native";
    
        private static final String MAVEN_RESOLVER_TRANSPORT_AUTO = "auto";
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

            }
    
            where:
            type         | freeValue                      | paidValue
            'SomeEnum'   | 'SomeEnum.free'                | 'SomeEnum.paid'
            'Thing'      | 'objects.named(Thing, "free")' | 'objects.named(Thing, "paid")'
            'OtherThing' | 'new OtherThing(name: "free")' | 'new OtherThing(name: "paid")'
        }
    
        def "compatibility and disambiguation rules can be defined by consuming build"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    | link:{javadocPath}/org/gradle/api/tasks/TaskCollection.html#named-java.lang.String-[TaskCollection.named()]
    | Returns a `TaskProvider` instead of a `Task`.
    
    | link:{javadocPath}/org/gradle/api/tasks/TaskCollection.html#withType-java.lang.Class-[TaskCollection.withType()]
    | Ok to use. If chained `withType().getByName()`, use `TaskCollection.named()` instead. +
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/dependencies/TestSuitesKotlinDSLDependenciesIntegrationTest.groovy

                        val integTest by registering(JvmTestSuite::class) {
                            useJUnit()
                        }
                    }
                }
    
                tasks.named("check") {
                    dependsOn(testing.suites.named("integTest"))
                }
    
                tasks.register("checkConfiguration") {
                    dependsOn("test", "integTest")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 16:25:08 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultValueSnapshotterTest.groovy

        }
    
        def "creates snapshot for named managed type"() {
            def instantiator = TestUtil.objectInstantiator()
            def value = instantiator.named(Thing, "value1")
            def value1 = instantiator.named(Thing, "value1")
            def value2 = instantiator.named(Thing, "value2")
            def value3 = instantiator.named(Named, "value1")
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/derived/DerivedVariantsResolutionIntegrationTest.groovy

                            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.DOCUMENTATION))
                            attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling, Bundling.EXTERNAL))
                            attribute(DocsType.DOCS_TYPE_ATTRIBUTE, objects.named(DocsType, DocsType.SOURCES))
                            attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_RUNTIME))
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalBuildIntegrationTest.groovy

            // See https://github.com/gradle/gradle-native/issues/1004
            if (toolchainUnderTest.version.major == 5) {
                outputs.recompiledClasses('renamed-sum')
            } else {
                outputs.recompiledClasses('greeter', 'renamed-sum', 'main')
            }
    
            outputDirectory.assertContainsDescendants(expectedIntermediateDescendants(app.alternate))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  8. src/go/types/predicates.go

    	if alias, _ := t.(*Alias); alias != nil && alias.tparams != nil && alias.targs == nil {
    		return true
    	}
    	named := asNamed(t)
    	return named != nil && named.obj != nil && named.inst == nil && named.TypeParams().Len() > 0
    }
    
    // Comparable reports whether values of type T are comparable.
    func Comparable(T Type) bool {
    	return comparable(T, true, nil, nil)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/subst.go

    	expanding *Named   // if non-nil, the instance that is being expanded
    	ctxt      *Context
    }
    
    func (subst *subster) typ(typ Type) Type {
    	switch t := typ.(type) {
    	case nil:
    		// Call typOrNil if it's possible that typ is nil.
    		panic("nil typ")
    
    	case *Basic:
    		// nothing to do
    
    	case *Alias:
    		// This code follows the code for *Named types closely.
    		// TODO(gri) try to factor better
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/typexpr.go

    	}
    
    	if orig, _ := gtyp.(*Alias); orig != nil {
    		return check.instance(x.Pos(), orig, targs, nil, check.context())
    	}
    
    	orig := asNamed(gtyp)
    	if orig == nil {
    		panic(fmt.Sprintf("%v: cannot instantiate %v", x.Pos(), gtyp))
    	}
    
    	// create the instance
    	inst := asNamed(check.instance(x.Pos(), orig, targs, nil, check.context()))
    
    	// orig.tparams may not be set up, so we need to do expansion later.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top