Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. build-logic/documentation/src/test/resources/org/gradle/test/sub2/Sub2Interface.java

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

    package org.gradle.test;
    
    public enum JavaEnum {
        A, B
    Java
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 60 bytes
    - Viewed (0)
  3. build-logic/documentation/src/test/resources/org/gradle/test/JavaClassWithConstants.java

    package org.gradle.test;
    
    public class JavaClassWithConstants {
        public static final String STRING_CONST = "some-string";
        static final char CHAR_CONST = 'a';
        static final int INT_CONST = 9;
        protected static final Object OBJECT_CONST = new JavaClassWithConstants();
    
        static String ignored = "ignore";
        String ignored2 = "ignore";
    Java
    - Registered: Wed Apr 10 11:36:10 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 353 bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/configurations/SanityCheck.kt

    package configurations
    
    import model.CIBuildModel
    import model.Stage
    
    class SanityCheck(model: CIBuildModel, stage: Stage) : BaseGradleBuildType(stage = stage, init = {
        id(buildTypeId(model))
        name = "Sanity Check"
        description = "Static code analysis, checkstyle, release notes verification, etc."
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        applyDefaults(
            model,
            this,
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Nov 30 11:15:05 GMT 2021
    - 708 bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/projects/GradleBuildToolRootProject.kt

    package projects
    
    import common.VersionedSettingsBranch
    import common.isSecurityFork
    import jetbrains.buildServer.configs.kotlin.Project
    import model.CIBuildModel
    import model.DefaultFunctionalTestBucketProvider
    import model.JsonBasedGradleSubprojectProvider
    import promotion.PromotionProject
    import util.UtilPerformanceProject
    import util.UtilProject
    import java.io.File
    
    class GradleBuildToolRootProject(branch: VersionedSettingsBranch) : Project({
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 1002 bytes
    - Viewed (0)
  6. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/tasks/PackageListGenerator.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.tasks
    
    import org.gradle.api.DefaultTask
    import org.gradle.api.file.ConfigurableFileCollection
    import org.gradle.api.file.RegularFileProperty
    import org.gradle.api.provider.ListProperty
    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)
  7. build-logic/documentation/src/test/resources/org/gradle/test/JavaInterfaceWithAnnotation.java

     * 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 org.gradle.test;
    
    @Deprecated @JavaAnnotation
    public interface JavaInterfaceWithAnnotation {
        @Deprecated @JavaAnnotation
        String getAnnotatedProperty();
    
        @Deprecated @JavaAnnotation
    Java
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 848 bytes
    - Viewed (0)
  8. build-logic/documentation/src/test/resources/org/gradle/test/JavaClassWithStaticImport.java

     * 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 org.gradle.test;
    
    import static java.util.Collections.emptyList;
    
    import java.util.List;
    
    public class JavaClassWithStaticImport {
        List<String> getProperty() { return emptyList(); }
    Java
    - Registered: Wed Apr 10 11:36:10 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 813 bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/AcceptedApiChange.groovy

     * 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.binarycompatibility
    
    import groovy.transform.Immutable
    import groovy.transform.ToString
    
    @Immutable @ToString
    class AcceptedApiChange {
        String type
        String member
        String acceptation
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 952 bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/DocGenerationException.java

     * 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.docs;
    
    import org.gradle.internal.exceptions.Contextual;
    
    @Contextual
    public class DocGenerationException extends RuntimeException {
        public DocGenerationException(String message) {
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 968 bytes
    - Viewed (0)
Back to top