Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 75 for targetRef (0.18 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/NativePlatform.java

         */
        void architecture(String name);
    
        /**
         * The operating system being targeted.
         * Defaults to the default operating system targeted by the tool chain (normally the current operating system).
         */
        @Nested
        OperatingSystem getOperatingSystem();
    
        /**
         * Sets the operating system being targeted.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultComponentSelectionRulesTest.groovy

            rules.withModule("group:module") { }
    
            then:
            e = thrown(InvalidUserCodeException)
            e.message == "bad targeted closure"
    
            and:
            1 * adapter.createFromClosure(ComponentSelection, _) >> { throw new InvalidUserCodeException("bad targeted closure") }
        }
    
        def "propagates error creating rule for rule source" () {
            when:
            rules.all ruleSource
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/PlatformAwareComponentSpecInternal.java

     */
    public interface PlatformAwareComponentSpecInternal extends PlatformAwareComponentSpec, HasIntermediateOutputsComponentSpec {
        /**
         * Get the names of the targeted platforms that this component should be built for.
         *
         * @return the list of targeted platforms, may be empty but never null.
         */
        List<PlatformRequirement> getTargetPlatforms();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyState.java

            DependencyMetadata targeted = dependency.withTarget(target);
            return new DependencyState(targeted, requested, ruleDescriptors, componentSelectorConverter);
        }
    
    
        public DependencyState withTargetAndArtifacts(ComponentSelector target, List<DependencyArtifactSelector> targetSelectors, List<ComponentSelectionDescriptorInternal> ruleDescriptors) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/groovy/build.gradle

    tasks.register('printMetadataRulesConfig') {
        FileCollection metadataRulesConfig = configurations.metadataRulesConfig
        doLast {
            metadataRulesConfig.each { println "Resolved: ${it.name}" }
        }
    }
    
    // tag::targeted-component-selection[]
    configurations {
        targetConfig {
            resolutionStrategy {
                componentSelection {
                    withModule("org.sample:api") { ComponentSelection selection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/kotlin/build.gradle.kts

    tasks.register("printMetadataRulesConfig") {
        val metadataRulesConfig: FileCollection = configurations["metadataRulesConfig"]
        doLast {
            metadataRulesConfig.forEach { println("Resolved: ${it.name}") }
        }
    }
    
    // tag::targeted-component-selection[]
    configurations {
        create("targetConfig") {
            resolutionStrategy {
                componentSelection {
                    withModule("org.sample:api") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loadpe/seh.go

    	// unless it is chained, but we will handle this case later.
    	targetOff := add + unwStaticDataSize + unwCodeSize*int64(codes)
    	xrels := ldr.Relocs(xsym)
    	xrelsCount := xrels.Count()
    	idx := sort.Search(xrelsCount, func(i int) bool {
    		return int64(xrels.At(i).Off()) >= targetOff
    	})
    	if idx == xrelsCount {
    		return 0
    	}
    	if isChained {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 16:20:28 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeExecutableBinary.java

     * limitations under the License.
     */
    package org.gradle.nativeplatform;
    
    import org.gradle.api.Incubating;
    
    import java.io.File;
    
    /**
     * A binary artifact for a {@link NativeExecutable}, targeted at a particular platform with specific configuration.
     */
    @Incubating
    public interface NativeExecutableBinary extends NativeBinary {
        /**
         * The executable file.
         */
        File getExecutableFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 984 bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeBinary.java

         * The {@link org.gradle.nativeplatform.Flavor} that this binary was built with.
         */
        Flavor getFlavor();
    
        /**
         * Returns the {@link org.gradle.nativeplatform.platform.NativePlatform} that this binary is targeted to run on.
         */
        NativePlatform getTargetPlatform();
    
        /**
         * Returns the {@link org.gradle.nativeplatform.BuildType} used to construct this binary.
         */
        BuildType getBuildType();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. internal/event/targetlist.go

    	stats, ok := list.targetStats[id]
    	if !ok {
    		stats = targetStat{}
    	}
    
    	stats.totalEvents++
    	list.targetStats[id] = stats
    	return
    }
    
    type asyncEvent struct {
    	ev        Event
    	targetSet TargetIDSet
    }
    
    // Add - adds unique target to target list.
    func (list *TargetList) Add(targets ...Target) error {
    	list.Lock()
    	defer list.Unlock()
    
    	for _, target := range targets {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top