Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for buildtags (0.13 sec)

  1. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultBinaryTasksCollectionTest.groovy

            then:
            1 * taskFactory.create("foo", DefaultTask) >> task
            1 * action.execute(task)
        }
    
        def "provides lifecycle task for binary"() {
            when:
            1 * binary.buildTask >> task
    
            then:
            tasks.build == task
        }
    
        def "returns null for missing single task with type"() {
            expect:
            tasks.findSingleTaskWithType(Copy) == null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. src/cmd/vet/doc.go

    	assign           check for useless assignments
    	atomic           check for common mistakes using the sync/atomic package
    	bools            check for common mistakes involving boolean operators
    	buildtag         check //go:build and // +build directives
    	cgocall          detect some violations of the cgo pointer passing rules
    	composites       check for unkeyed composite literals
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 00:17:30 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultStaticLibraryBinarySpecTest.groovy

            binary.staticLibraryFile == outputFile
        }
    
        def "can convert binary to a native dependency"() {
            final binary = staticLibrary
            given:
            def lifecycleTask = Stub(Task)
            binary.buildTask = lifecycleTask
            binary.builtBy(Stub(Task))
    
            and:
            binary.staticLibraryFile = outputFile
    
            and:
            final headerDir = tmpDir.createDir("headerDir")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/modules.txt

    golang.org/x/tools/go/analysis/passes/asmdecl
    golang.org/x/tools/go/analysis/passes/assign
    golang.org/x/tools/go/analysis/passes/atomic
    golang.org/x/tools/go/analysis/passes/bools
    golang.org/x/tools/go/analysis/passes/buildtag
    golang.org/x/tools/go/analysis/passes/cgocall
    golang.org/x/tools/go/analysis/passes/composite
    golang.org/x/tools/go/analysis/passes/copylock
    golang.org/x/tools/go/analysis/passes/ctrlflow
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top