Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for getComponentAs (0.17 sec)

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

        @Override
        public NativeLibrarySpec getComponent() {
            return getComponentAs(NativeLibrarySpec.class);
        }
    
        @Override
        public NativeLibrarySpec getLibrary() {
            return getComponentAs(NativeLibrarySpec.class);
        }
    
        protected boolean hasSources() {
            for (LanguageSourceSet sourceSet : getInputs()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/DefaultNativeExecutableBinarySpec.java

        @Override
        public NativeExecutableSpec getComponent() {
            return getComponentAs(NativeExecutableSpec.class);
        }
    
        @Override
        public NativeExecutableSpec getApplication() {
            return getComponentAs(NativeExecutableSpec.class);
        }
    
        @Override
        public NativeExecutableFileSpec getExecutable() {
            return executable;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cunit/internal/DefaultCUnitTestSuiteBinary.java

    public class DefaultCUnitTestSuiteBinary extends DefaultNativeTestSuiteBinarySpec implements CUnitTestSuiteBinarySpec {
        @Override
        public CUnitTestSuiteSpec getComponent() {
            return getComponentAs(CUnitTestSuiteSpec.class);
        }
        
        @Override
        public CUnitTestSuiteSpec getTestSuite() {
            return getComponent();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/googletest/internal/DefaultGoogleTestTestSuiteBinary.java

    public class DefaultGoogleTestTestSuiteBinary extends DefaultNativeTestSuiteBinarySpec implements GoogleTestTestSuiteBinarySpec {
        @Override
        public GoogleTestTestSuiteSpec getComponent() {
            return getComponentAs(GoogleTestTestSuiteSpec.class);
        }
    
        @Override
        public GoogleTestTestSuiteSpec getTestSuite() {
            return getComponent();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/internal/DefaultNativeTestSuiteBinarySpec.java

        private NativeExecutableFileSpec executable = new NativeExecutableFileSpec();
    
        @Override
        public NativeTestSuiteSpec getComponent() {
            return getComponentAs(NativeTestSuiteSpec.class);
        }
    
        @Override
        public NativeTestSuiteSpec getTestSuite() {
            return getComponent();
        }
    
        @Override
        public NativeBinarySpec getTestedBinary() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/platform/base/binary/BaseBinarySpec.java

            return publicType;
        }
    
        @Override
        @Nullable
        public ComponentSpec getComponent() {
            return getComponentAs(ComponentSpec.class);
        }
    
        @Nullable
        protected <T extends ComponentSpec> T getComponentAs(Class<T> componentType) {
            if (componentNode == null) {
                return null;
            }
            ModelType<T> modelType = ModelType.of(componentType);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeBinarySpec.java

        @Override
        public String getDisplayName() {
            return getNamingScheme().getDescription();
        }
    
        @Override
        public NativeComponentSpec getComponent() {
            return getComponentAs(NativeComponentSpec.class);
        }
    
        @Override
        public Flavor getFlavor() {
            return flavor;
        }
    
        @Override
        public void setFlavor(Flavor flavor) {
            this.flavor = flavor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/simple/DefaultExcludeAllOf.java

            for (ExcludeSpec component : getComponents()) {
                if (!component.excludes(module)) {
                    return false;
                }
            }
            return true;
        }
    
        @Override
        public boolean excludesArtifact(ModuleIdentifier module, IvyArtifactName artifactName) {
            for (ExcludeSpec component : getComponents()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/simple/DefaultExcludeAnyOf.java

            for (ExcludeSpec component : getComponents()) {
                if (component.excludes(module)) {
                    return true;
                }
            }
            return false;
        }
    
        @Override
        public boolean excludesArtifact(ModuleIdentifier module, IvyArtifactName artifactName) {
            for (ExcludeSpec component : getComponents()) {
                if (component.excludesArtifact(module, artifactName)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/specs/CompositeExclude.java

    import java.util.Set;
    
    public interface CompositeExclude extends ExcludeSpec {
        @Override
        boolean equals(Object o);
    
        Set<ExcludeSpec> getComponents();
    
        default boolean contains(ExcludeSpec spec) {
            return getComponents().contains(spec);
        }
    
        int size();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 984 bytes
    - Viewed (0)
Back to top