Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 60 for targetRef (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/compile/internal/types2/compiler_internal.go

    // and the object and new field name are returned.
    //
    // The intended use for RenameResult is to allow rangefunc to assign results within a closure.
    // This is a hack, as narrowly targeted as possible to discourage abuse.
    func (s *Signature) RenameResult(results []*syntax.Field, i int) (*Var, *syntax.Name) {
    	a := results[i]
    	obj := s.Results().At(i)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. Development.md

    To influence the generic suggestions Gradle displays, the NonGradleCause interface was introduced.
    If an exception implements this interface, Gradle will not display the `--stacktrace` option.
    
    Another more targeted interface is `CompilationFailedIndicator`.
    This interface is used to indicate that the exception is caused by a compilation failure. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 22:54:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top