Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,733 for Binary (0.45 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/metadata/CompilerMetaDataProviderFactoryTest.groovy

            def binary = new File("any")
            when:
            def metadata = metadataProvider(compiler).getCompilerMetaData([]) { it.executable(binary) }
    
            then:
            interaction compilerShouldBeExecuted
    
            when:
            def newMetadata = metadataProvider(compiler).getCompilerMetaData([]) { it.executable(binary) }
    
            then:
            0 * _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentBinarySourcesIntegrationTest.groovy

        }
        tasks {
            verify(Task) {
                doLast {
                    def comp = $.components.mylib
                    def binary = comp.binaries.main
                    assert comp.sources.size() == 1
                    assert binary.sources.size() == 1
                    assert binary.inputs == comp.sources + binary.sources as Set
                }
            }
        }
    }
    '''
    
            expect:
            succeeds "verify"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/dependencies/implementation.go

    //
    // Basic selection logic is as follows:
    // 1. see if we have `nft` binary set in our $PATH
    // 2. see if we have existing rules in `nft` in our netns
    // 3. If so, use `nft` binary set
    // 4. Otherwise, see if we have `legacy` binary set, and use that.
    // 5. Otherwise, see if we have `iptables` binary set, and use that (detecting whether it's nft or legacy).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 19:54:50 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/list_goroot_symlink.txt

    exec $WORK/lib/goroot/bin/go list -f '{{.ImportPath}}: {{.Dir}}' encoding/binary
    stdout '^encoding/binary: '$WORK${/}lib${/}goroot${/}src${/}encoding${/}binary'$'
    
    exec $WORK/lib/goroot/bin/go list -f '{{.ImportPath}}: {{.Dir}}' std
    stdout '^encoding/binary: '$WORK${/}lib${/}goroot${/}src${/}encoding${/}binary'$'
    
    # Most path lookups in GOROOT are not sensitive to symlinks. However, patterns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:01:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. 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)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/plugins/NativeComponentModelPlugin.java

                        linkTask.getTargetPlatform().set(binary.getTargetPlatform());
                        linkTask.getLinkedFile().set(binary.getSharedLibraryFile());
                        linkTask.getInstallName().set(binary.getSharedLibraryFile().getName());
                        linkTask.getLinkerArgs().set(binary.getLinker().getArgs());
                        linkTask.getImportLibrary().set(binary.getSharedLibraryLinkFile());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/BinariesLifecycleTaskIntegrationTest.groovy

            failure.assertHasCause("""No buildable binaries found:
      - SampleBinary 'lib:notBuildableBinary1':
          - Binary notBuildableBinary1 has 'notBuildable' in the name
      - SampleBinary 'lib:notBuildableBinary2':
          - Binary notBuildableBinary2 has 'notBuildable' in the name""")
        }
    
        def "builds those component binaries that are buildable and skips those that are not" () {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top