Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 934 for Binary1 (0.46 sec)

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

    import spock.lang.Specification
    
    class DefaultBinaryTasksCollectionTest extends Specification {
        def binary = Mock(BinarySpecInternal)
        def taskFactory = Mock(NamedEntityInstantiator)
        def tasks = new DefaultBinaryTasksCollection(binary, taskFactory, CollectionCallbackActionDecorator.NOOP)
        def task = Mock(Task)
    
        def "can create task"() {
            def action = Mock(Action)
    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. platforms/software/platform-base/src/main/java/org/gradle/api/internal/resolve/LibraryResolutionResult.java

        private final Map<String, VariantComponent> libsNotMatchingRequirements;
        private final Class<? extends Binary> binaryType;
    
        private boolean projectNotFound;
    
        private VariantComponent selectedLibrary;
        private VariantComponent nonMatchingLibrary;
    
        private LibraryResolutionResult(Class<? extends Binary> binaryType) {
            this.binaryType = binaryType;
            this.libsMatchingRequirements = new HashMap<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/session/KtAnalysisSessionProvider.kt

        public abstract fun getAnalysisSessionByUseSiteKtModule(useSiteKtModule: KtModule): KaSession
    
        // The `analyse` functions affect binary compatibility as they are inlined with every `analyze` call. To avoid breaking binary
        // compatibility, their implementations should not be changed unless absolutely necessary. It should be possible to put most
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/BinaryNamingScheme.java

         */
        BinaryNamingScheme withRole(String role, boolean isMain);
    
        /**
         * Creates a copy of this scheme, replacing the binary type.
         */
        BinaryNamingScheme withBinaryType(String type);
    
        /**
         * Creates a copy of this scheme, specifying a binary name. This overrides the default binary name that would be generated from the other attributes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/DefaultBinaryTasksCollection.java

            return verb + StringUtils.capitalize(binary.getProjectScopedName());
        }
    
        @Override
        public String taskName(String verb, String object) {
            return verb + StringUtils.capitalize(binary.getProjectScopedName()) + StringUtils.capitalize(object);
        }
    
        @Override
        public Task getBuild() {
            return binary.getBuildTask();
        }
    
        @Override
        public Task getCheck() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. src/cmd/go/note_test.go

    				t.Log("skipping gold test")
    				break
    			}
    			t.Fatalf("building hello binary: %v", err)
    		}
    		id, err = buildid.ReadFile(tg.path("hello3.exe"))
    		if err != nil {
    			t.Fatalf("reading build ID from hello binary (linkmode=external -extldflags=-fuse-ld=gold): %v", err)
    		}
    		if id != buildID {
    			t.Fatalf("buildID in hello binary = %q, want %q (linkmode=external -extldflags=-fuse-ld=gold)", id, buildID)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 17:26:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/rc/plugins/WindowsResourceScriptPlugin.java

            }
    
            @Override
            public boolean applyToBinary(BinarySpec binary) {
                return binary instanceof NativeBinarySpec && shouldProcessResources((NativeBinarySpec) binary);
            }
    
            private boolean shouldProcessResources(NativeBinarySpec binary) {
                return binary.getTargetPlatform().getOperatingSystem().isWindows();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/DefaultVisualStudioProjectTest.groovy

            def binary = Mock(VisualStudioTargetBinary)
            2 * binary.sourceFiles >> fileCollection(sourceFiles)
            2 * binary.resourceFiles >> fileCollection(resourceFiles)
            2 * binary.headerFiles >> fileCollection(headerFiles)
            return binary
        }
    
        private FileCollection fileCollection(List<File> files) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/SwiftXCTestBinary.java

    /**
     * An test binary built from Swift source.
     *
     * @since 4.4
     */
    public interface SwiftXCTestBinary extends SwiftBinary, TestComponent {
        /**
         * Returns the executable test file for this binary.
         *
         * @since 4.5
         */
        Provider<RegularFile> getExecutableFile();
    
        /**
         * Returns the installation directory for this binary.
         *
         * @since 4.4
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomManagedBinaryIntegrationTest.groovy

        def "setup"() {
            buildFile << """
    @Managed
    interface SampleBinary extends BinarySpec {
        String getVersion()
        void setVersion(String version)
    }
    """
        }
    
        def "custom managed binary type can be registered and created"() {
            when:
            buildWithCustomBinaryPlugin()
    
            and:
            buildFile << '''
    model {
        tasks {
            checkModel(Task) {
                doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top