Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 2,003 for Binary1 (0.11 sec)

  1. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/README.adoc

         \--- org.apache.commons:commons-lang3:3.12.0
    ```
    
    == Switching to use binary dependency
    
    As long as the modules are available in a binary repository, the `multirepo-app` build will continue to work even if you don't have some modules available locally. In this case Gradle will use a binary dependency downloaded from a repository instead.
    
    === Preparing the binary repository
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/go1_12.go

    const (
    	_ = 1_000 // ERROR "underscore in numeric literal requires go1.13 or later"
    	_ = 0b111 // ERROR "binary literal requires go1.13 or later"
    	_ = 0o567 // ERROR "0o/0O-style octal literal requires go1.13 or later"
    	_ = 0xabc // ok
    	_ = 0x0p1 // ERROR "hexadecimal floating-point literal requires go1.13 or later"
    
    	_ = 0b111 // ERROR "binary"
    	_ = 0o567 // ERROR "octal"
    	_ = 0xabc // ok
    	_ = 0x0p1 // ERROR "hexadecimal floating-point"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/SourceCompileTaskConfig.java

        @Override
        protected void configureCompileTask(AbstractNativeCompileTask abstractTask, final NativeBinarySpecInternal binary, final LanguageSourceSetInternal sourceSet) {
            AbstractNativeSourceCompileTask task = (AbstractNativeSourceCompileTask) abstractTask;
    
            task.setDescription("Compiles the " + sourceSet + " of " + binary);
    
            task.source(sourceSet.getSource());
    
            final Project project = task.getProject();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. pkg/proxy/util/nfacct/nfacct_linux.go

    		// netlink attributes are in LTV(length, type and value) format.
    
    		// STEP 1. parse length [2 bytes]
    		if err := binary.Read(reader, binary.NativeEndian, &length); err != nil {
    			return nil, err
    		}
    
    		// STEP 2. parse type   [2 bytes]
    		if err := binary.Read(reader, binary.NativeEndian, &attrType); err != nil {
    			return nil, err
    		}
    
    		// STEP 3. adjust the length
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. src/internal/coverage/encodecounter/encode.go

    		return fmt.Errorf("error seeking in patchSegmentHeader: %v", err)
    	}
    	if cfw.debug {
    		fmt.Fprintf(os.Stderr, "=-= writing counter segment header: %+v", cfw.csh)
    	}
    	if err := binary.Write(ws, binary.LittleEndian, cfw.csh); err != nil {
    		return err
    	}
    	// ... and finally return to the original offset.
    	if _, err := ws.Seek(off, io.SeekStart); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

        }
        tasks { t ->
            $.components.main.binaries.each { binary ->
                def preLinkTask = binary.tasks.taskName("preLink")
                t.create(preLinkTask) {
                    dependsOn binary.tasks.withType(CppCompile)
                    doLast {
                        println "Pre Link"
                    }
                }
                binary.tasks.link.dependsOn preLinkTask
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/DefaultVisualStudioProject.java

                Set<File> allSourcesFromBinaries = new LinkedHashSet<>();
                for (VisualStudioTargetBinary binary : configurations.keySet()) {
                    allSourcesFromBinaries.addAll(binary.getSourceFiles().getFiles());
                }
                return allSourcesFromBinaries;
            }), providerFactory.provider(() -> additionalFiles));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeExecutableBinaryRenderer.java

        }
    
        @Override
        protected void renderTasks(NativeExecutableBinarySpec binary, TextReportBuilder builder) {
            builder.item("install using task", binary.getTasks().getInstall().getPath());
        }
    
        @Override
        protected void renderOutputs(NativeExecutableBinarySpec binary, TextReportBuilder builder) {
            builder.item("executable file", binary.getExecutable().getFile());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/tasks/StripSymbolsIntegrationTest.groovy

            """
        }
    
        @ToBeFixedForConfigurationCache
        def "strips symbols from binary"() {
            when:
            succeeds ":stripSymbolsDebug"
    
            then:
            executedAndNotSkipped":stripSymbolsDebug"
            executable("build/exe/main/debug/app").assertHasDebugSymbolsFor(withoutHeaders(app.original))
            binary("build/stripped").assertDoesNotHaveDebugSymbolsFor(withoutHeaders(app.original))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. src/internal/trace/raw/writer.go

    	spec := w.specs[e.Ev]
    	for _, arg := range e.Args[:len(spec.Args)] {
    		w.buf = binary.AppendUvarint(w.buf, arg)
    	}
    	if spec.IsStack {
    		frameArgs := e.Args[len(spec.Args):]
    		for i := 0; i < len(frameArgs); i++ {
    			w.buf = binary.AppendUvarint(w.buf, frameArgs[i])
    		}
    	}
    
    	// Write out the length of the data.
    	if spec.HasData {
    		w.buf = binary.AppendUvarint(w.buf, uint64(len(e.Data)))
    	}
    
    	// Write out varint events.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top