Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,316 for sameId (0.36 sec)

  1. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/compile/GroovyJavaJointCompileSourceOrderIntegrationTest.groovy

                    id 'groovy'
                }
                sourceSets {
                    mySources
                }
    
                tasks.named('compileMySourcesJava') {
                    classpath += files(sourceSets.mySources.groovy.classesDirectory)
                }
                tasks.named('compileMySourcesGroovy') {
                    classpath = sourceSets.mySources.compileClasspath
                }
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_predicates.go

    //
    // Predicates such as [Identical], [Implements], and
    // [Satisfies] assume that both operands belong to a
    // consistent collection of symbols ([Object] values).
    // For example, two [Named] types can be identical only if their
    // [Named.Obj] methods return the same [TypeName] symbol.
    // A collection of symbols is consistent if, for each logical
    // package whose path is P, the creation of those symbols
    // involved at most one call to [NewPackage](P, ...).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/testing/testReport/kotlin/build.gradle.kts

    }
    
    // tag::test-report[]
    val testReportData by configurations.creating {
        isCanBeConsumed = false
        attributes {
            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.DOCUMENTATION))
            attribute(DocsType.DOCS_TYPE_ATTRIBUTE, objects.named("test-report-data"))
        }
    }
    
    dependencies {
        testReportData(project(":core"))
        testReportData(project(":util"))
    }
    
    tasks.register<TestReport>("testReport") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 756 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java/toolchain-config-task/kotlin/build.gradle.kts

                "unexpected '${javaExecutable.get().asFile.absolutePath} -version' output"
            }
        }
    }
    
    tasks.register<TaskThatRequiresJavaExecutable>("sampleTask")
    val TaskContainer.sampleTask
        get() = named<TaskThatRequiresJavaExecutable>("sampleTask")
    
    
    abstract class TaskThatRequiresJavaHome : DefaultTask() {
    
        @get:Internal
        abstract val javaHome: DirectoryProperty
    
        @get:Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. src/os/types.go

    	ModeTemporary  = fs.ModeTemporary  // T: temporary file; Plan 9 only
    	ModeSymlink    = fs.ModeSymlink    // L: symbolic link
    	ModeDevice     = fs.ModeDevice     // D: device file
    	ModeNamedPipe  = fs.ModeNamedPipe  // p: named pipe (FIFO)
    	ModeSocket     = fs.ModeSocket     // S: Unix domain socket
    	ModeSetuid     = fs.ModeSetuid     // u: setuid
    	ModeSetgid     = fs.ModeSetgid     // g: setgid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/collector/MultiModuleCollectionStrategy.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.project.collector;
    
    import javax.inject.Inject;
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.io.File;
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    import java.util.Objects;
    import java.util.function.Predicate;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/main/java/org/gradle/initialization/buildsrc/GradlePluginApiVersionAttributeConfigurationAction.java

            setAttributeForConfiguration(configurations.named(sourceSet.getCompileClasspathConfigurationName()), instantiator);
            setAttributeForConfiguration(configurations.named(sourceSet.getRuntimeClasspathConfigurationName()), instantiator);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_tasks.adoc

        fileText.convention("HELLO FROM THE CREATE FILE TASK METHOD") // Set convention
    }
    
    tasks.named<CreateFileTask>("createFileTask") {
        fileText.set("HELLO FROM THE NAMED METHOD") // Override with custom message
    }
    ----
    
    // Add a small excerpt about properties
    
    In the `named()` method, we find the `createFileTask` task and set the text that will be written to the file.
    
    When the task is executed:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. src/go/types/api_predicates.go

    //
    // Predicates such as [Identical], [Implements], and
    // [Satisfies] assume that both operands belong to a
    // consistent collection of symbols ([Object] values).
    // For example, two [Named] types can be identical only if their
    // [Named.Obj] methods return the same [TypeName] symbol.
    // A collection of symbols is consistent if, for each logical
    // package whose path is P, the creation of those symbols
    // involved at most one call to [NewPackage](P, ...).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/NamedThingInterface.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model;
    
    import org.gradle.api.Named;
    
    @Managed
    public interface NamedThingInterface extends Named {
        String getOther();
    
        void setOther(String string);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 796 bytes
    - Viewed (0)
Back to top