Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,104 for Binary (0.12 sec)

  1. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/psiDeclarationProvider/FirStandaloneNormalAnalysisLibraryBinaryDecompiledModulePsiDeclarationProviderTestGenerated.java

      }
    
      @Test
      @TestMetadata("jvmNameOnGetter.kt")
      public void testJvmNameOnGetter() {
        runTest("analysis/analysis-api/testData/standalone/binary/jvmNameOnGetter.kt");
      }
    
      @Test
      @TestMetadata("jvmNameOnSetter.kt")
      public void testJvmNameOnSetter() {
        runTest("analysis/analysis-api/testData/standalone/binary/jvmNameOnSetter.kt");
      }
    
      @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 10:23:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/swift/SwiftBinary.java

    /**
     * A binary built from Swift source and linked from the resulting object files.
     *
     * @since 4.2
     */
    public interface SwiftBinary extends ComponentWithObjectFiles, ComponentWithDependencies {
        /**
         * Returns the name of the Swift module that this binary defines.
         */
        Provider<String> getModule();
    
        /**
         * Returns true if this binary has testing enabled.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/rc/plugins/internal/WindowsResourcesCompileTaskConfig.java

        @Override
        public void configureTask(Task task, BinarySpec binary, LanguageSourceSet sourceSet, ServiceRegistry serviceRegistry) {
            configureResourceCompileTask((WindowsResourceCompile) task, (NativeBinarySpecInternal) binary, (WindowsResourceSet) sourceSet);
        }
    
        private void configureResourceCompileTask(WindowsResourceCompile task, final NativeBinarySpecInternal binary, final WindowsResourceSet sourceSet) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CompilationDetails.java

         */
        List<File> getFrameworkSearchPaths();
    
        /**
         * Returns the system search paths for this binary.
         */
        List<File> getSystemHeaderSearchPaths();
    
        /**
         * Returns the user search paths for this binary. This includes the header directories for the binary itself, plus any dependencies of the binary.
         */
        List<File> getUserHeaderSearchPaths();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinary.java

        private final NativeBinarySpecInternal binary;
    
        public NativeSpecVisualStudioTargetBinary(NativeBinarySpec binary) {
            this.binary = (NativeBinarySpecInternal) binary;
        }
    
        @Override
        public String getProjectPath() {
            return binary.getProjectPath();
        }
    
        @Override
        public String getComponentName() {
            return binary.getComponent().getName();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/components/internal/AbstractBinaryRenderer.java

        }
    
        @Override
        public void render(BinarySpec binary, TextReportBuilder builder) {
            String heading = StringUtils.capitalize(binary.getDisplayName());
            if (!binary.isBuildable()) {
                heading += " (not buildable)";
            }
            builder.heading(heading);
    
            if (binary.getBuildTask() != null) {
                builder.item("build using task", binary.getBuildTask().getPath());
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeBinarySpec.java

    import java.util.Collection;
    
    /**
     * Represents a binary artifact that is the result of building a native component.
     */
    @Incubating @HasInternalProtocol
    public interface NativeBinarySpec extends BinarySpec {
        /**
         * The component that this binary was built from.
         */
        NativeComponentSpec getComponent();
    
        /**
         * The {@link org.gradle.nativeplatform.Flavor} that this binary was built with.
         */
        @Variant
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/platform/base/plugins/BinaryBasePlugin.java

                binary.setBuildTask(binaryLifecycleTask);
            }
    
            @Finalize
            void addSourceSetsOwnedByBinariesToTheirInputs(@Each BinarySpecInternal binary) {
                if (binary.isLegacyBinary()) {
                    return;
                }
                binary.getInputs().addAll(binary.getSources().values());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomBinaryIntegrationTest.groovy

                                assert binary.displayName == "SampleBinary 'sampleBinary'"
                                assert binary.toString() == binary.displayName
                            }
                        }
                    }
                }
                apply plugin: Rules
    '''
    
            then:
            succeeds "checkModel"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/CppStaticLibraryVisualStudioTargetBinary.java

        private final CppStaticLibrary binary;
    
        public CppStaticLibraryVisualStudioTargetBinary(String projectName, String projectPath, CppComponent component, CppStaticLibrary 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)
Back to top