Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 130 for unbuildable (0.73 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CppComponent.java

         */
        String getName();
    
        /**
         * All binaries buildable for this component. These will implement {@link CppExecutable}, {@link CppSharedLibrary} or {@link CppStaticLibrary}.
         */
        DomainObjectSet<? extends CppBinary> getBinaries();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/platform/base/BinarySpec.java

    @Incubating @HasInternalProtocol
    public interface BinarySpec extends BuildableComponentSpec, CheckableComponentSpec, Binary {
    
        /**
         * Can this binary be built in the current environment?
         */
        boolean isBuildable();
    
        /**
         * The sources owned by this binary.
         *
         * @return the sources owned by the binary.
         */
        ModelMap<LanguageSourceSet> getSources();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/dist/supported_test.go

    import (
    	"internal/platform"
    	"testing"
    )
    
    // TestSupported tests that dist and the main tools agree on
    // which build modes are supported for a given target. We do things
    // this way because the dist tool needs to be buildable directly by
    // the bootstrap compiler, and as such can't import internal packages.
    func TestSupported(t *testing.T) {
    	defer func(a, o string) {
    		goarch = a
    		goos = o
    	}(goarch, goos)
    
    	var modes = []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/BinarySpecInternal.java

         * Returns a name for this binary that is unique for all binaries in the current project.
         */
        String getProjectScopedName();
    
        Class<? extends BinarySpec> getPublicType();
    
        void setBuildable(boolean buildable);
    
        BinaryBuildAbility getBuildAbility();
    
        boolean isLegacyBinary();
    
        BinaryNamingScheme getNamingScheme();
    
        void setNamingScheme(BinaryNamingScheme namingScheme);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/tasks/TaskDependencyResolveContext.java

         *
         * <li>{@link org.gradle.api.tasks.TaskDependency}</li>
         *
         * <li>{@link org.gradle.api.internal.tasks.TaskDependencyContainer}</li>
         *
         * <li>{@link org.gradle.api.Buildable}</li>
         *
         * <li>{@link TransformNodeDependency}</li>
         *
         * <li>{@link WorkNodeAction}</li>
         *
         * </ul>
         */
        void add(Object dependency);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/dependents/DefaultDependentBinariesResolver.java

            List<DependentBinariesResolvedResult> allChildren = new ArrayList<>();
            for (DependentBinariesResolvedResult result : results) {
                if (!result.isBuildable()) {
                    hasNotBuildables = true;
                }
                if (result.isTestSuite()) {
                    hasTestSuites = true;
                }
                allChildren.addAll(result.getChildren());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. internal/http/listener_test.go

    			testCase.serverAddrs,
    			TCPOptions{},
    		)
    		for _, err := range errs {
    			if err != nil {
    				if strings.Contains(err.Error(), "The requested address is not valid in its context") {
    					// Ignore if IP is unbindable.
    					continue nextTest
    				}
    				if strings.Contains(err.Error(), "bind: address already in use") {
    					continue nextTest
    				}
    				t.Fatalf("Test %d: error: expected = <nil>, got = %v", i+1, err)
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/ProjectPublicationRegistry.java

    import javax.annotation.concurrent.ThreadSafe;
    import java.util.Collection;
    
    /**
     * A build scoped service that collects information on the local "publications" of each project within a build. A "publication" here means some buildable thing that the project produces that can be consumed outside of the project.
     *
     * The information is gathered from multiple sources ({@code publishing.publications} container, etc.).
     */
    @ThreadSafe
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Signature.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.plugins.signing;
    
    import groovy.lang.Closure;
    import org.gradle.api.Buildable;
    import org.gradle.api.Incubating;
    import org.gradle.api.InvalidUserDataException;
    import org.gradle.api.artifacts.PublishArtifact;
    import org.gradle.api.internal.artifacts.publish.AbstractPublishArtifact;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/plugins/VisualStudioPluginRules.java

                for (NativeBinarySpec binary : binaries.withType(NativeBinarySpec.class)) {
                    if (binary.isBuildable()) {
                        visualStudioExtension.getProjectRegistry().addProjectConfiguration(new NativeSpecVisualStudioTargetBinary(binary));
                    }
                }
            }
    
            @Mutate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top