Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 5,609 for Lach (0.45 sec)

  1. src/cmd/internal/buildid/buildid.go

    	// which are typically less than 4 kB, not to mention 32 kB.
    	// In Mach-O files, there's no limit, so we have to parse the file.
    	// On other systems, we're trying to read enough that
    	// we get the beginning of the text segment in the read.
    	// The offset where the text segment begins in a hello
    	// world compiled for each different object format today:
    	//
    	//	Plan 9: 0x20
    	//	Windows: 0x600
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 28 21:52:53 UTC 2020
    - 9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/files/fileCollections/groovy/build.gradle

            println "Contents of $srcDir.name"
            collection.collect { projectDirectory.asFile.relativePath(it) }.sort().each { println it }
    
            srcDir = projectDirectory.file('src2').asFile
            println "Contents of $srcDir.name"
            collection.collect { projectDirectory.asFile.relativePath(it) }.sort().each { println it }
        }
    }
    // end::closure[]
    
    tasks.register('conventions') {
        def objects = objects
        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 13:55:00 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. test/solitaire.go

    // If a solution is found, solve prints the board after each move in a backward
    // fashion (i.e., the last board position is printed first, all the way back to
    // the starting board position).
    func solve() bool {
    	var last, n int
    	for pos, field := range board {
    		// try each board position
    		if field == '●' {
    			// found a peg
    			for _, dir := range [...]int{-1, -N, +1, +N} {
    				// try each direction
    				if move(pos, dir) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 2.9K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/git/internal/SourceDependencyCleanupIntegrationTest.groovy

        def "does not remove vcs checkout that is older than 7 days but recently used"() {
            // checkout all versions
            versions.each { version ->
                succeeds("assertVersion", "-PrepoVersion=${version}")
            }
            // mark all versions as unused
            versions.each { version ->
                markUnused(version)
            }
    
            when:
            cleanupNow()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ChangesDuringBuildContinuousIntegrationTest.groovy

        }
    
        @UnsupportedWithConfigurationCache(because = "taskGraph.afterTask")
        def "new build should be triggered when input files to tasks are changed after each task has been executed, but before the build has completed (changed: #changingInput)"() {
            given:
            ['a', 'b', 'c', 'd'].each { file(it).createDir() }
    
            when:
            buildFile << """
                task a {
                  inputs.dir "a"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/macho.go

    	BIND_SUBOPCODE_THREADED_SET_BIND_ORDINAL_TABLE_SIZE_ULEB = 0x00
    	BIND_SUBOPCODE_THREADED_APPLY                            = 0x01
    )
    
    const machoHeaderSize64 = 8 * 4 // size of 64-bit Mach-O header
    
    // Mach-O file writing
    // https://developer.apple.com/mac/library/DOCUMENTATION/DeveloperTools/Conceptual/MachORuntime/Reference/reference.html
    
    var machohdr MachoHdr
    
    var load []MachoLoad
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/groovy/build.gradle

    dependencies {
        rejectConfig "org.sample:api:1.+"
    }
    // end::reject-version-1-1[]
    
    tasks.register('printRejectConfig') {
        FileCollection rejectConfig = configurations.rejectConfig
        doLast {
            rejectConfig.each { println "Resolved: ${it.name}" }
        }
    }
    
    // tag::component-selection-with-metadata[]
    configurations {
        metadataRulesConfig {
            resolutionStrategy {
                componentSelection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/collections.adoc

    2. <<nameddomainobjectset,`NamedDomainObjectSet<T>`>>: A specialization of `DomainObjectSet` where each object has a unique name associated with it. This is often used for collections where each element needs to be uniquely identified by a name.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelMap.java

         * @param name The name.
         * @param ruleSource A rule source class.
         */
        void named(String name, Class<? extends RuleSource> ruleSource);
    
        /**
         * Applies the given action to each item in this collection, as each item is required.
         *
         * <p>The given action is invoked to configure the item when the item is required. It is called before any actions provided to {@link #create(String, org.gradle.api.Action)}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/AbstractIdeLifecycleIntegrationTest.groovy

            [":", ":foo", ":foo:bar"].each { projectPath ->
                getGenerationTaskNames(projectPath).each { taskName ->
                    result.assertTaskOrder(getCleanTaskName(taskName), taskName)
                }
            }
        }
    
        def assertGenerationTasksRunBeforeCleanTasks() {
            [":", ":foo", ":foo:bar"].each { projectPath ->
                getGenerationTaskNames(projectPath).each { taskName ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top