Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 545 for Here (0.04 sec)

  1. platforms/documentation/docs/src/samples/readme-templates/library-summary.adoc.template

    Now you could complete this exercise by trying to compile some ${language.raw} code that uses the library you just built.
    
    == Next steps
    
    Building a library is just one aspect of reusing code across project boundaries.
    From here, you may be interested in:
    
     - link:{userManualPath}/building_java_projects.html[Building Java & JVM projects]
     - link:{userManualPath}/java_library_plugin.html[Java Library Plugin documentation]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 781 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java/toolchain-management/groovy/buildSrc/src/main/java/org/myorg/JavaToolchainResolverImplementation.java

            implements JavaToolchainResolver { // <1>
    
        public Optional<JavaToolchainDownload> resolve(JavaToolchainRequest request) { // <2>
            return Optional.empty(); // custom mapping logic goes here instead
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 613 bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/swift/tasks/internal/SymbolHider.java

    import java.nio.charset.StandardCharsets;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    import java.util.Arrays;
    
    
    /**
     * Parse and hide given symbols in on object file based on COFF format documented
     * here: https://docs.microsoft.com/en-us/windows/desktop/debug/pe-format
     */
    public class SymbolHider {
        DataReader data;
        private byte[] objectBytes;
    
        private static class DataReader {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/DefaultImmutableCapability.java

            this.group = group;
            this.name = name;
            this.version = version;
    
            this.hashCode = computeHashcode(group, name, version);
    
            // Using a string instead of a plain ID here might look strange, but this turned out to be
            // the fastest of several experiments, including:
            //
            //    using ModuleIdentifier (initial implementation)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/DefaultArtifactHandler.java

        private void warnIfConfigurationIsDeprecated(DeprecatableConfiguration configuration) {
            // To avoid potentially adding new deprecation warnings in Gradle 8.0, we will maintain
            // the existing fully deprecated logic here (migrating the method out of DefaultConfiguration
            // so it isn't mistakenly used elsewhere)
            if (isFullyDeprecated(configuration)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

        else -> actualBranch
    }
    
    /**
     * The build environment.
     *
     * WARNING: Every val in here must not change for they same daemon. If it does, changes will go undetected,
     *          since this whole object is kept in the classloader between builds.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 16:58:31 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/ivy-publish/publish-artifact/groovy/build.gradle

        type "rpm"
        builtBy "rpm"
    }
    // end::custom-artifact[]
    
    tasks.register('rpm') {
        outputs.file rpmFile
        def rpmFileLocation = rpmFile
        doLast {
            // produce real RPM here
            rpmFileLocation.get().asFile << "file contents"
        }
    }
    
    // tag::custom-artifact[]
    publishing {
        publications {
            ivy(IvyPublication) {
                artifact rpmArtifact
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 919 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/proguard-rules.pro

    # Add project specific ProGuard rules here.
    # You can control the set of applied configuration files using the
    # proguardFiles setting in build.gradle.
    #
    # For more details, see
    #   http://developer.android.com/guide/developing/tools/proguard.html
    
    # If your project uses WebView with JS, uncomment the following
    # and specify the fully qualified class name to the JavaScript interface
    # class:
    #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 751 bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXContainerItem.java

     * limitations under the License.
     */
    
    package org.gradle.ide.xcode.internal.xcodeproj;
    
    /**
     * Superclass in Xcode's object hierarchy, has no non-structural functionality here.
     */
    public abstract class PBXContainerItem extends PBXObject {
    
        @Override
        public String isa() {
            return "PBXContainerItem";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 903 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/templates/build-src-plugin-java-module-transform/buildSrc/src/main/java/org/gradle/sample/transform/javamodules/ExtraModuleInfoPluginExtension.java

    
    import org.gradle.api.Action;
    
    import javax.annotation.Nullable;
    import java.util.HashMap;
    import java.util.Map;
    
    /**
     * A data class to collect all the module information we want to add.
     * Here the class is used as extension that can be configured in the build script
     * and as input to the ExtraModuleInfoTransform that add the information to Jars.
     */
    public class ExtraModuleInfoPluginExtension {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top