Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,467 for Binary (0.14 sec)

  1. test/codegen/memcombine.go

    	// arm64:-`REV`
    	// amd64:-`BSWAPQ`
    	binary.BigEndian.PutUint64(b[:], binary.BigEndian.Uint64(x[:]))
    }
    
    func store_be32_load(b, x *[8]byte) {
    	// arm64:-`REVW`
    	// amd64:-`BSWAPL`
    	binary.BigEndian.PutUint32(b[:], binary.BigEndian.Uint32(x[:]))
    }
    
    func store_be32_idx(b []byte, x uint32, idx int) {
    	// amd64/v1,amd64/v2:`BSWAPL`,-`SHR.`
    	// amd64/v3:`MOVBEL\t[A-Z]+[0-9]*, \([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*1\)`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. 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)
  3. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

                    "Method com.example.Task.getSourceCompatibility(): Is not binary compatible." to listOf("Method return type has changed", "Method is now abstract"),
                    removed("Method", "Task.setSourceCompatibility(java.lang.String)"),
                )
            }
        }
    
        @Test
        fun `should automatically accept binary incompatibilities for upgraded properties`() {
            checkBinaryCompatible(
                v1 = {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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