Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 937 for Binary1 (0.17 sec)

  1. platforms/software/platform-base/src/main/java/org/gradle/platform/base/BinaryTasks.java

     *          //building the binary
     *      }
     * }
     *
     * class MyCustomBinariesPlugin extends RuleSource {
     *     {@literal @}ComponentType
     *     void register(TypeBuilder<SampleBinary> builder) {}
     *
     *     {@literal @}BinaryTasks
     *     void createBinaryTasks(ModelMap<Task> tasks, SampleBinary binary) {
     *         tasks.create("${binary.name}Task1", MyCustomBinaryCreationTask)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/CppSharedLibraryVisualStudioTargetBinary.java

        private final CppSharedLibrary binary;
    
        public CppSharedLibraryVisualStudioTargetBinary(String projectName, String projectPath, CppComponent component, CppSharedLibrary binary, ProjectLayout projectLayout) {
            super(projectName, projectPath, component, projectLayout);
            this.binary = binary;
        }
    
        @Override
        CppBinary getBinary() {
            return binary;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/swift/plugins/SwiftBasePlugin.java

                final Names names = binary.getNames();
                TaskProvider<SwiftCompile> compile = tasks.register(names.getCompileTaskName("swift"), SwiftCompile.class, task -> {
                    task.getModules().from(binary.getCompileModules());
                    task.getSource().from(binary.getSwiftSource());
                    task.getDebuggable().set(binary.isDebuggable());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/VisualStudioProjectConfiguration.java

        private final VisualStudioTargetBinary binary;
    
        public VisualStudioProjectConfiguration(DefaultVisualStudioProject vsProject, String configurationName, VisualStudioTargetBinary binary) {
            this.vsProject = vsProject;
            this.configurationName = configurationName;
            this.name = configurationName + "|" + platformName;
            this.binary = binary;
        }
    
        @Input
        public String getName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/BinaryCollection.java

         * @param <S> type of the binary to return
         * @return a binary from the collection in a finalized state
         */
        <S> BinaryProvider<S> get(Class<S> type, Spec<? super S> spec);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. src/cmd/internal/goobj/funcinfo.go

    	const numfileOff = 16
    	result.NumFile = binary.LittleEndian.Uint32(b[numfileOff:])
    	result.FileOff = numfileOff + 4
    
    	numinltreeOff := result.FileOff + 4*result.NumFile
    	result.NumInlTree = binary.LittleEndian.Uint32(b[numinltreeOff:])
    	result.InlTreeOff = numinltreeOff + 4
    
    	result.Initialized = true
    
    	return result
    }
    
    func (*FuncInfo) ReadArgs(b []byte) uint32 { return binary.LittleEndian.Uint32(b) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/internal/DefaultNativeBinaryTest.groovy

            given:
            def binary = new TestBinary("binary", project.objects, implementation)
    
            expect:
            binary.implementationDependencies == project.configurations.binaryImplementation
            binary.implementationDependencies.extendsFrom == [implementation] as Set
        }
    
        def "can add implementation dependency"() {
            given:
            def binary = new TestBinary("binary", project.objects, implementation)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/stream_test.go

    		"":                        {Binary: true},
    		"binary.k8s.io":           {Binary: true},
    		"base64.binary.k8s.io":    {Binary: false},
    		"v1.binary.k8s.io":        {Binary: true},
    		"v1.base64.binary.k8s.io": {Binary: false},
    		"v2.binary.k8s.io":        {Binary: true},
    		"v2.base64.binary.k8s.io": {Binary: false},
    	})
    	data, err := readWebSocket(r, t, nil, "v2.base64.binary.k8s.io")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.go

    	state[3] = 0x6b206574
    
    	state[4] = binary.LittleEndian.Uint32(key[0:4])
    	state[5] = binary.LittleEndian.Uint32(key[4:8])
    	state[6] = binary.LittleEndian.Uint32(key[8:12])
    	state[7] = binary.LittleEndian.Uint32(key[12:16])
    	state[8] = binary.LittleEndian.Uint32(key[16:20])
    	state[9] = binary.LittleEndian.Uint32(key[20:24])
    	state[10] = binary.LittleEndian.Uint32(key[24:28])
    	state[11] = binary.LittleEndian.Uint32(key[28:32])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/LinkageDetails.java

    import java.util.List;
    
    /**
     * Represents the linkage details for a binary.
     *
     * @since 4.10
     */
    public interface LinkageDetails {
        /**
         * Returns details of the link task for the binary. This is the task that should be run to produce the binary output, but may not necessarily be the task that links the binary. For example, the task may do some post processing of the binary.
         */
        Task getLinkTask();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top