Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 378 for packages (0.21 sec)

  1. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/tasks/PackageListGenerator.kt

    import java.util.zip.ZipEntry
    import java.util.zip.ZipInputStream
    
    
    /**
     * This task will generate the list of relocated packages into a file that will in turn be used when generating the runtime shaded jars. All we need is a list of packages that need to be relocated, so
     * we'll make sure to filter the list of packages before generating the file.
     *
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 6.3K bytes
    - Viewed (0)
  2. .idea/codeStyles/Project.xml

        <option name="IMPORT_LAYOUT_TABLE">
          <value>
            <package name="" withSubpackages="true" static="true" />
            <emptyLine />
            <package name="" withSubpackages="true" static="false" />
            <emptyLine />
            <package name="javax" withSubpackages="true" static="false" />
            <package name="java" withSubpackages="true" static="false" />
          </value>
        </option>
    XML
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Jul 31 14:47:08 GMT 2023
    - 3.4K bytes
    - Viewed (1)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/GenerateDefaultImports.java

            try (PrintWriter writer = new PrintWriter(new FileWriter(getImportsDestFile().getAsFile().get()))) {
                for (String packageName : packages) {
                    writer.print("import ");
                    writer.print(packageName);
                    writer.println(".*");
                }
            }
        }
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  4. build-logic/documentation/src/test/resources/org/gradle/test/sub/SubJavaInterface.java

    package org.gradle.test.sub;
    
    public interface SubJavaInterface {
    Java
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 68 bytes
    - Viewed (0)
  5. build-logic/documentation/src/test/resources/org/gradle/test/JavaAnnotation.java

    package org.gradle.test;
    
    public @interface JavaAnnotation {
    Java
    - Registered: Wed Apr 10 11:36:10 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 63 bytes
    - Viewed (0)
  6. build-logic/documentation/src/test/resources/org/gradle/test/GroovyAnnotation.groovy

    package org.gradle.test
    
    public @interface GroovyAnnotation {
    
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Apr 26 10:58:32 GMT 2023
    - 65 bytes
    - Viewed (0)
  7. build-logic/documentation/src/test/resources/org/gradle/test/GroovyEnum.groovy

    package org.gradle.test
    
    public enum GroovyEnum {
        A, B
    Groovy
    - Registered: Wed Apr 10 11:36:10 GMT 2024
    - Last Modified: Wed Apr 26 10:58:32 GMT 2023
    - 61 bytes
    - Viewed (0)
  8. build-logic/documentation/src/test/resources/org/gradle/test/GroovyClassWithAnnotation.groovy

    package org.gradle.test
    
    @Deprecated @JavaAnnotation
    class GroovyClassWithAnnotation {
        @Deprecated @JavaAnnotation
        String annotatedProperty
    
        @Deprecated @JavaAnnotation
        void annotatedMethod() { }
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 214 bytes
    - Viewed (0)
  9. build-logic/documentation/src/test/resources/org/gradle/test/GroovyClassWithImports.groovy

    package org.gradle.test
    
    import org.gradle.test.sub.*;
    
    class GroovyClassWithImports extends SubGroovyClass implements SubJavaInterface, GroovyInterface {
        void close() {
        }
    }
    
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 228 bytes
    - Viewed (0)
  10. build-logic/documentation/src/test/resources/org/gradle/test/JavaClassWithAnnotation.java

    package org.gradle.test;
    
    @Deprecated @JavaAnnotation
    public class JavaClassWithAnnotation {
        @Deprecated @JavaAnnotation
        String getAnnotatedProperty() { return "hi"; }
    
        @Deprecated @JavaAnnotation
        void annotatedMethod() { }
    Java
    - Registered: Wed Apr 10 11:36:10 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 242 bytes
    - Viewed (0)
Back to top