Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,104 for Binary (0.14 sec)

  1. 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)
  2. 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)
  3. src/cmd/go/testdata/script/mod_modinfo.txt

    # Test to ensure runtime/debug.ReadBuildInfo parses
    # the modinfo embedded in a binary by the go tool
    # when module is enabled.
    env GO111MODULE=on
    
    cd x
    go mod edit -require=rsc.io/quote@v1.5.2
    go mod edit -replace=rsc.io/quote@v1.5.2=rsc.io/quote@v1.0.0
    go mod tidy # populate go.sum
    
    # Build a binary and ensure that it can output its own debug info.
    # The debug info should be accessible before main starts (golang.org/issue/29628).
    go build
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 1.8K 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. src/strconv/testdata/testfp.txt

    # The rest have four fields per line: type, format, input, and output.
    # The input is given either in decimal or binary scientific notation.
    # The output is the string that should be produced by formatting the
    # input with the given format.
    #
    # The formats are as in C's printf, except that %b means print
    # binary scientific notation: NpE = N x 2^E.
    
    # TODO:
    #	Powers of 10.
    #	Powers of 2.
    #	%.20g versions.
    #	random sources
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 7.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top