Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 281 for ACME (0.06 sec)

  1. src/crypto/tls/testdata/Client-TLSv12-ClientCert-Ed25519

    00000040  07 41 63 6d 65 20 43 6f  30 1e 17 0d 31 39 30 35  |.Acme Co0...1905|
    00000050  31 36 32 31 35 34 32 36  5a 17 0d 32 30 30 35 31  |16215426Z..20051|
    00000060  35 32 31 35 34 32 36 5a  30 12 31 10 30 0e 06 03  |5215426Z0.1.0...|
    00000070  55 04 0a 13 07 41 63 6d  65 20 43 6f 30 2a 30 05  |U....Acme Co0*0.|
    00000080  06 03 2b 65 70 03 21 00  0b e0 b5 60 b5 e2 79 30  |..+ep.!....`..y0|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/java/archives/internal/DefaultManifestTest.groovy

            TestFile manifestFile = tmpDir.file('someManifestFile')
            fileResolver.resolve('manifestFile') >> manifestFile
    
            and:
            // Means 'long russian text'
            String attributeValue = 'com.acme.example.pack.**, длинный.текст.на.русском.языке.**'
            DefaultManifest gradleManifest = new DefaultManifest(fileResolver)
            gradleManifest.getAttributes().put('Looong-Name-Of-Manifest-Entry', attributeValue)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/AlreadyOnClasspathPluginUseIntegrationTest.groovy

            """ : ""
            file("$projectPath/build.gradle") << """
    
                plugins {
                    id("groovy")
                    id("java-gradle-plugin")
                }
    
                group = "com.acme"
                version = "$version"
    
                gradlePlugin {
                    plugins {
                        myPlugin {
                            id = "my-plugin"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/simple/DefaultCompositeExcludeTest.groovy

    class DefaultCompositeExcludeTest extends Specification {
        private static final DefaultExcludeFactory FACTORY = new DefaultExcludeFactory()
        private static final String[] GROUPS = ["org.foo", "org.bar", "org.baz", "com.acme"]
        private static final String[] MODULES = ["mercury", "venus", "earth", "mars", "jupiter", "saturn", "uranus", "neptune"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/test-full.xml

    			<exclude name="toexclude"/>
    		</dependency>
    		<dependency org="yourorg" name="yourmodule11" rev="11.1" conf="*->@"/>
    
    		<exclude module="*servlet*" matcher="glob" conf="myconf1" />
    		<exclude org="acme" module="test" artifact="test" type="source" ext="jar" />
            <override org="yourorg" module=".*1" matcher="regexp" branch="BRANCH" rev="1.0" />
    		<conflict org="yourorg" module=".*" matcher="regexp" manager="all" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Client-TLSv10-ClientCert-Ed25519

    00000040  07 41 63 6d 65 20 43 6f  30 1e 17 0d 31 39 30 35  |.Acme Co0...1905|
    00000050  31 36 32 31 35 34 32 36  5a 17 0d 32 30 30 35 31  |16215426Z..20051|
    00000060  35 32 31 35 34 32 36 5a  30 12 31 10 30 0e 06 03  |5215426Z0.1.0...|
    00000070  55 04 0a 13 07 41 63 6d  65 20 43 6f 30 2a 30 05  |U....Acme Co0*0.|
    00000080  06 03 2b 65 70 03 21 00  0b e0 b5 60 b5 e2 79 30  |..+ep.!....`..y0|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:13:45 UTC 2019
    - 8.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    	env.SetPushContext(pushContext)
    	pushContext.SetDestinationRulesForTesting([]config.Config{
    		{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.DestinationRule,
    				Name:             "acme",
    			},
    			Spec: &networking.DestinationRule{
    				Host: "test.example.org",
    				TrafficPolicy: &networking.TrafficPolicy{
    					OutlierDetection: &networking.OutlierDetection{},
    				},
    			},
    		},
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/initialization/LoadBuildStructureBuildOperationIntegrationTest.groovy

            """
    
            file("nested/settings.gradle") << """
            rootProject.name = "nested"
            include "b"
            """
    
            file("nested/build.gradle") << """
            group = "org.acme"
            version = "1.0"
            """
    
            when:
            succeeds('help')
    
    
            then:
            def buildOperations = buildOperations.all(LoadProjectsBuildOperationType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 08:24:10 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. src/crypto/tls/generate_cert.go

    	if err != nil {
    		log.Fatalf("Failed to generate serial number: %v", err)
    	}
    
    	template := x509.Certificate{
    		SerialNumber: serialNumber,
    		Subject: pkix.Name{
    			Organization: []string{"Acme Co"},
    		},
    		NotBefore: notBefore,
    		NotAfter:  notAfter,
    
    		KeyUsage:              keyUsage,
    		ExtKeyUsage:           []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth},
    		BasicConstraintsValid: true,
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 08 15:22:02 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    For example,
    
    [.multi-language-sample]
    ====
    .build.gradle
    =====
    [source,groovy]
    ----
    group 'com.acme'
    dependencies {
        implementation 'com.acme:example:1.0'
    }
    ----
    =====
    ====
    
    becomes:
    
    [.multi-language-sample]
    ====
    .build.gradle
    =====
    [source,groovy]
    ----
    group "com.acme"
    dependencies {
        implementation "com.acme:example:1.0"
    }
    ----
    =====
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top