Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,411 for naked (0.07 sec)

  1. build-logic/buildquality/src/main/kotlin/gradlebuild.incubation-report-aggregation.gradle.kts

        isVisible = false
        isCanBeResolved = true
        isCanBeConsumed = false
        attributes {
            attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.JAVA_RUNTIME))
            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.DOCUMENTATION))
            attribute(DocsType.DOCS_TYPE_ATTRIBUTE, objects.named("incubation-report-$reportType"))
        }
        extendsFrom(reports)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/java/modules-multi-project-with-integration-tests/groovy/buildSrc/src/main/groovy/myproject.java-conventions.gradle

        classpath = configurations[integrationTest.runtimeClasspathConfigurationName] + files(integrationTestJarTask)
    
        shouldRunAfter(tasks.named('test'))
    }
    
    tasks.named('check') {
        dependsOn(integrationTestTask)
    }
    
    dependencies {
        testImplementation 'org.junit.jupiter:junit-jupiter:5.7.1'
        testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectCollectionExtensions.kt

     *
     * @see [NamedDomainObjectCollection.named]
     */
    @Suppress("extension_shadowed_by_member")
    inline fun <reified T : Any> NamedDomainObjectCollection<out Any>.named(name: String): NamedDomainObjectProvider<T> =
        named(name, T::class)
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyGradleModuleMetadataPublishIntegrationTest.groovy

                        name: 'api',
                        usage: objects.named(Usage, 'api'),
                        dependencies: configurations.implementation.allDependencies,
                        attributes: testAttributes))
    
                comp.usages.add(new TestUsage(
                        name: 'impl',
                        usage: objects.named(Usage, 'api'),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 30.4K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/model/ObjectFactory.java

     */
    @ServiceScope({Scope.Global.class, Scope.Project.class})
    public interface ObjectFactory {
        /**
         * Creates a simple immutable {@link Named} object of the given type and name.
         *
         * <p>The given type can be an interface that extends {@link Named} or an abstract class that 'implements' {@link Named}. An abstract class, if provided:</p>
         * <ul>
         *     <li>Must provide a zero-args constructor that is not private.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. pkg/util/parsers/parsers.go

    func ParseImageName(image string) (string, string, string, error) {
    	named, err := dockerref.ParseNormalizedNamed(image)
    	if err != nil {
    		return "", "", "", fmt.Errorf("couldn't parse image name %q: %v", image, err)
    	}
    
    	repoToPull := named.Name()
    	var tag, digest string
    
    	tagged, ok := named.(dockerref.Tagged)
    	if ok {
    		tag = tagged.Tag()
    	}
    
    	digested, ok := named.(dockerref.Digested)
    	if ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 01:53:40 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskCollection.java

         * @since 4.9
         */
        @Override
        TaskProvider<T> named(String name) throws UnknownTaskException;
    
        /**
         * {@inheritDoc}
         *
         * @since 5.0
         */
        @Override
        TaskProvider<T> named(String name, Action<? super T> configurationAction) throws UnknownTaskException;
    
        /**
         * {@inheritDoc}
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/named_test.go

    	if err := NewChecker(nil, pkg, nil).Files([]*syntax.File{f}); err != nil {
    		t.Fatal(err)
    	}
    
    	firstFieldType := func(n *Named) *Named {
    		return n.Underlying().(*Struct).Field(0).Type().(*Pointer).Elem().(*Named)
    	}
    
    	Inst := Unalias(pkg.Scope().Lookup("Inst").Type()).(*Pointer).Elem().(*Named)
    	Node := firstFieldType(Inst)
    	Tree := firstFieldType(Node)
    	if !Identical(Inst, Tree) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 21:06:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tutorial/helloEnhanced/groovy/build.gradle

    tasks.register('hello') {
        doLast {
            println 'Hello Earth'
        }
    }
    tasks.named('hello') {
        doFirst {
            println 'Hello Venus'
        }
    }
    tasks.named('hello') {
        doLast {
            println 'Hello Mars'
        }
    }
    tasks.named('hello') {
        doLast {
            println 'Hello Jupiter'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 301 bytes
    - Viewed (0)
  10. src/cmd/fix/doc.go

    Usage:
    
    	go tool fix [-r name,...] [path ...]
    
    Without an explicit path, fix reads standard input and writes the
    result to standard output.
    
    If the named path is a file, fix rewrites the named files in place.
    If the named path is a directory, fix rewrites all .go files in that
    directory tree.  When fix rewrites a file, it prints a line to standard
    error giving the name of the file and the rewrite applied.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.4K bytes
    - Viewed (0)
Back to top