Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,063 for binaryA (0.11 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/VisualStudioTargetBinary.java

         */
        @Internal
        FileCollection getSourceFiles();
    
        /**
         * Returns the resource files associated with this binary
         */
        @Internal
        FileCollection getResourceFiles();
    
        /**
         * Returns the header files associated with this binary
         */
        @Internal
        FileCollection getHeaderFiles();
    
        /**
         * Returns whether or not this binary represents an executable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. hack/grab-profiles.sh

    function grab_profiles_from_component {
      local requested_profiles=$1
      local mem_pprof_flags=$2
      local binary=$3
      local tunnel_port=$4
      local path=$5
      local output_prefix=$6
      local timestamp=$7
    
      echo "binary: $binary"
    
      for profile in ${requested_profiles}; do
        case ${profile} in
          cpu)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 17 06:47:05 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeComponents.java

            private final NativeBinarySpec binary;
    
            public BinaryLibs(NativeBinarySpec binary) {
                this.binary = binary;
            }
    
            @Override
            public List<FileCollection> call() throws Exception {
                List<FileCollection> runtimeFiles = new ArrayList<>();
                for (NativeDependencySet nativeDependencySet : binary.getLibs()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/internal/DefaultSwiftLibraryTest.groovy

            expect:
            def binary = library.addSharedLibrary(identity, true, targetPlatform, toolChain, platformToolProvider)
            binary.name == "mainTest"
            binary.debuggable
            !binary.optimized
            binary.testable
            binary.targetPlatform == targetPlatform
            binary.toolChain == toolChain
            binary.platformToolProvider == platformToolProvider
    
            library.binaries.realizeNow()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. internal/s3select/genmessage.go

    	totalLength := totalByteLength(headerLength, payloadLength)
    
    	buf = new(bytes.Buffer)
    	binary.Write(buf, binary.BigEndian, uint32(totalLength))
    	binary.Write(buf, binary.BigEndian, uint32(headerLength))
    	prelude := buf.Bytes()
    	binary.Write(buf, binary.BigEndian, crc32.ChecksumIEEE(prelude))
    	buf.Write(header)
    	message := buf.Bytes()
    	binary.Write(buf, binary.BigEndian, crc32.ChecksumIEEE(message))
    
    	fmt.Println(buf.Bytes())
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultStaticLibraryBinarySpecTest.groovy

            and:
            binary.linkFiles.files == [binary.staticLibraryFile] as Set
            binary.linkFiles.buildDependencies.getDependencies(Stub(Task)) == [lifecycleTask] as Set
            binary.linkFiles.toString() == "Link files for static library 'main:staticLibrary'"
    
            and:
            binary.runtimeFiles.files.isEmpty()
            binary.runtimeFiles.buildDependencies.getDependencies(Stub(Task)) == [] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/cpp/plugins/CppBasePlugin.java

                    final Callable<List<File>> systemIncludes = () -> binary.getPlatformToolProvider().getSystemLibraries(ToolType.CPP_COMPILER).getIncludeDirs();
    
                    task.includes(binary.getCompileIncludePath());
                    task.getSystemIncludes().from(systemIncludes);
                    task.source(binary.getCppSource());
                    if (binary.isDebuggable()) {
                        task.setDebuggable(true);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/language/base/internal/model/BinarySourceTransformations.java

                    Task task = tasks.create(taskName, taskConfig.getTaskType());
                    taskConfig.configureTask(task, binary, sourceSetToCompile, serviceRegistry);
    
                    task.dependsOn(sourceSetToCompile);
                    binary.getTasks().add(task);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. src/packaging/deb/lintian/fess

    # Ignore arch dependent warnings, we chose the right libs on start
    fess binary: arch-independent-package-contains-binary-or-object
    # Not stripping external libraries
    fess binary: unstripped-binary-or-object
    # Ignore arch dependent warnings, we chose the right libs on start
    fess binary: arch-dependent-file-in-usr-share
    # Please check our changelog at https://github.com/codelibs/fess
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 439 bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomBinaryTasksIntegrationTest.groovy

            "sampleLibBinaryOne" | "binary lifecycle task"
        }
    
        def "details of rule-added tasks are visible in model report"() {
            given:
            buildFile << '''
            class BinaryTasksPlugin extends RuleSource {
                @BinaryTasks
                void createSampleComponentComponents(ModelMap<Task> tasks, SampleBinary binary) {
                    tasks.create("${binary.projectScopedName}Task")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top