Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,313 for clen (0.04 sec)

  1. src/syscall/ztypes_netbsd_arm64.go

    type RawSockaddrDatalink struct {
    	Len    uint8
    	Family uint8
    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [12]int8
    }
    
    type RawSockaddr struct {
    	Len    uint8
    	Family uint8
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [92]int8
    }
    
    type _Socklen uint32
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/ProducerTaskCommandLineOrderIntegrationTest.groovy

                args '--parallel', '--max-workers=2'
                succeeds(generate.path, clean.path)
    
                result.assertTaskOrder(generateFoo.fullPath, generateBar.fullPath, generate.fullPath)
                result.assertTaskOrder(generateFoo.fullPath, cleanFoo.fullPath, clean.fullPath)
                result.assertTaskOrder(generateBar.fullPath, cleanBar.fullPath, clean.fullPath)
            }
    
            where:
            type << ProductionType.values()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/DestroyerTaskCommandLineOrderIntegrationTest.groovy

            expect:
            2.times {
                args '--parallel', '--max-workers=2'
                succeeds(clean.path, generate.path)
    
                result.assertTaskOrder(cleanBar.fullPath, clean.fullPath)
                result.assertTaskOrder(generateFoo.fullPath, cleanFoo.fullPath, clean.fullPath)
                result.assertTaskOrder(generateFoo.fullPath, generate.fullPath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 14:13:02 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/clean_cache_n.txt

    env GOCACHE=$WORK/cache
    
    # Build something so that the cache gets populates
    go build main.go
    
    # Check that cache contains directories before running
    exists $GOCACHE/00
    
    # Run go clean -cache -n and ensure that directories weren't deleted
    go clean -cache -n
    exists $GOCACHE/00
    
    # Re-run go clean cache without the -n flag go ensure that directories were properly removed
    go clean -cache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 637 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_clean_cache.txt

    # 'go clean -r -modcache' should clean only the dependencies that are within the
    # main module.
    # BUG(golang.org/issue/28680): Today, it cleans across module boundaries.
    cd r
    exists ./test.out
    exists ../replaced/test.out
    go clean -r -modcache
    ! exists ./test.out
    ! exists ../replaced/test.out  # BUG: should still exist
    
    # 'go clean -modcache' should not download anything before cleaning.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDestroyablesIntegrationTest.groovy

        }
    
        def "clean build and build clean work reliably with composite build"() {
            given:
            dependency "org.test:buildB:1.0"
            buildA.buildFile << """
                clean {
                    dependsOn gradle.includedBuild('buildB').task(':clean')
                }
            """
    
            when:
            args "--parallel"
            execute(buildA, "clean", "build")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jul 09 15:31:00 UTC 2017
    - 2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/clean_binary.txt

    [short] skip
    
    # --------------------- clean executables -------------------------
    
    # case1: test file-named executable 'main'
    env GO111MODULE=on
    
    ! exists main$GOEXE
    go build main.go
    exists -exec main$GOEXE
    go clean
    ! exists main$GOEXE
    
    # case2: test module-named executable 'a.b.c'
    ! exists a.b.c$GOEXE
    go build
    exists -exec a.b.c$GOEXE
    go clean
    ! exists a.b.c$GOEXE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 13:36:17 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/language/base/internal/plugins/CleanRule.java

    public class CleanRule implements Rule {
    
        public static final String CLEAN = "clean";
    
        private final TaskContainer tasks;
    
        public CleanRule(TaskContainer tasks) {
            this.tasks = tasks;
        }
    
        @Override
        public String getDescription() {
            return "Pattern: " + CLEAN + "<TaskName>: Cleans the output files of a task.";
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_fuzz_cache.txt

    go test -fuzz=FuzzY -fuzztime=100x .
    go run ./contains_files $GOCACHE/fuzz/example.com/y/FuzzY
    
    # 'go clean -cache' should not delete the fuzz cache.
    go clean -cache
    exists $GOCACHE/fuzz
    
    # 'go clean -fuzzcache' should delete the fuzz cache but not the build cache.
    go build -x ./empty
    stderr '(compile|gccgo)( |\.exe).*empty.go'
    go clean -fuzzcache
    ! exists $GOCACHE/fuzz
    go build -x ./empty
    ! stderr '(compile|gccgo)( |\.exe).*empty.go'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/Lifecycle.java

        }
    
        // <lifecycle>
        //   <id>clean</id>
        //   <phases>
        //     <phase>pre-clean</phase>
        //     <phase>clean</phase>
        //     <phase>post-clean</phase>
        //   </phases>
        //   <default-phases>
        //     <clean>org.apache.maven.plugins:maven-clean-plugin:clean</clean>
        //   </default-phases>
        // </lifecycle>
    
        private String id;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top