Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 376 for PACKAGE (0.15 sec)

  1. .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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. .teamcity/src/main/kotlin/util/UtilPerformanceProject.kt

    package util
    
    import jetbrains.buildServer.configs.kotlin.Project
    
    object UtilPerformanceProject : Project({
        id("Util_Performance")
        name = "Performance"
    
        buildType(AdHocPerformanceScenarioLinux)
        buildType(AdHocPerformanceScenarioWindows)
        buildType(AdHocPerformanceScenarioMacOS)
        buildType(AdHocPerformanceScenarioMacAppleSilicon)
    
        params {
            param("env.DEVELOCITY_ACCESS_KEY", "%ge.gradle.org.access.key%")
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 24 03:34:53 GMT 2024
    - 450 bytes
    - Viewed (0)
  10. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/classanalysis/ClassAnalysisException.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.basics.classanalysis
    
    import org.gradle.internal.exceptions.Contextual
    
    
    @Contextual
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 821 bytes
    - Viewed (0)
Back to top