Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 281 for ACME (0.03 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

            repository {
                'org:module:1.0'()
            }
            file("included/build.gradle") << """
                group = 'com.acme'
                version = '0.x'
    
                configurations {
                        create 'default'
                    }
    
                    dependencies {
                        add('default', 'org:module:1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced-published/groovy/producer/build.gradle

    plugins {
        id 'java-library'
        id 'maven-publish'
    }
    
    apply plugin: com.acme.InstrumentedJarsPlugin
    
    publishing {
        repositories {
            maven {
                url "${buildDir}/repo"
            }
        }
        publications {
            myPublication(MavenPublication) {
                from components.myAdhocComponent
            }
        }
    }
    
    if (project.hasProperty("disableGradleMetadata")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 859 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/tls-cert-cross-namespace.yaml

    #$ Used in:
    #$ - site-src/v1alpha2/guides/tls.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: cross-namespace-tls-gateway
      namespace: gateway-api-example-ns1
    spec:
      gatewayClassName: acme-lb
      listeners:
      - name: https
        protocol: HTTPS
        port: 443
        hostname: "*.example.com"
        tls:
          certificateRefs:
          - kind: Secret
            group: ""
            name: wildcard-example-com-cert
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 778 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java/fixtures/kotlin/src/main/java/com/acme/Family.java

    package com.acme;
    
    import java.util.List;
    import java.util.Arrays;
    
    public class Family {
        private final List<Person> members;
    
        public Family(Person... members) {
            this.members = Arrays.asList(members);
        }
    
        public List<Person> getMembers() {
            return members;
        }
    
        public int size() {
            return members.size();
        }
    
        public boolean contains(Person person) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 601 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/java/fixtures/groovy/lib/src/main/java/com/acme/Person.java

    package com.acme;
    
    // tag::sample[]
    public class Person {
        private final String firstName;
        private final String lastName;
    
        public Person(String firstName, String lastName) {
            this.firstName = firstName;
            this.lastName = lastName;
        }
    
        public String getFirstName() {
            return firstName;
        }
    
        public String getLastName() {
            return lastName;
        }
    
        // ...
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ParallelDependencyResolutionIntegrationTest.groovy

            executer.withArgument('--info')
    
            executer.requireOwnGradleUserHomeDir()
        }
    
        def "dependency is only downloaded at most once per build using Maven"() {
            def module = mavenHttpRepo.module("com.acme", "dummy", "1.0-SNAPSHOT").publish()
    
            given:
            module.metaData.expectGet()
            ('a'..'z').each {
                createDirs(it)
                settingsFile << "include '$it'\n"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/VariantAwareResolutionWithConfigurationAttributesIntegrationTest.groovy

                            'core.txt'('core')
                        }
                        java {
                            com {
                                acme {
                                    core {
                                        'Hello.java'('''package com.acme.core;
    
                                import org.apache.commons.lang3.StringUtils;
    
                                public class Hello {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/fixtures/kotlin/lib/src/main/java/com/acme/Person.java

    package com.acme;
    
    // tag::sample[]
    public class Person {
        private final String firstName;
        private final String lastName;
    
        public Person(String firstName, String lastName) {
            this.firstName = firstName;
            this.lastName = lastName;
        }
    
        public String getFirstName() {
            return firstName;
        }
    
        public String getLastName() {
            return lastName;
        }
    
        // ...
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java/fixtures/groovy/lib/src/testFixtures/java/com/acme/Simpsons.java

    package com.acme;
    
    import java.util.List;
    import java.util.ArrayList;
    import org.apache.commons.text.WordUtils;
    import org.apache.commons.lang3.tuple.Pair;
    
    // tag::sample[]
    public class Simpsons {
        private static final Person HOMER = new Person("Homer", "Simpson");
        private static final Person MARGE = new Person("Marjorie", "Simpson");
        private static final Person BART = new Person("Bartholomew", "Simpson");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/plugins/ApplicationPluginTest.groovy

            when:
            plugin.apply(project);
            project.mainClassName = "Acme"
    
            then:
            def startScripts = project.tasks[ApplicationPlugin.TASK_START_SCRIPTS_NAME]
            startScripts.mainClassName == "Acme"
        }
    
        void "applicationDefaultJvmArgs in project delegates to jvmArgs in run task"() {
            when:
            plugin.apply(project)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top