Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 281 for ACME (0.04 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced-published/groovy/buildSrc/src/main/groovy/com/acme/InstrumentedJarsPlugin.groovy

    package com.acme
    
    import org.gradle.api.JavaVersion
    import org.gradle.api.Plugin
    import org.gradle.api.Project
    import org.gradle.api.artifacts.Configuration
    import org.gradle.api.attributes.Bundling
    import org.gradle.api.attributes.Category
    import org.gradle.api.attributes.LibraryElements
    import org.gradle.api.attributes.Usage
    import org.gradle.api.attributes.java.TargetJvmVersion
    import org.gradle.api.component.SoftwareComponentFactory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishIssuesIntegTest.groovy

        def "gradle ignores maven mirror configuration for uploading archives"() {
            given:
            m2.globalSettingsFile << """
    <settings>
      <mirrors>
        <mirror>
          <id>ACME</id>
          <name>ACME Central</name>
          <url>http://acme.maven.org/maven2</url>
          <mirrorOf>*</mirrorOf>
        </mirror>
      </mirrors>
    </settings>
    """
    
            and:
            settingsFile << "rootProject.name = 'root'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSAPSS

    000000e0  07 41 63 6d 65 20 43 6f  30 1e 17 0d 31 37 31 31  |.Acme Co0...1711|
    000000f0  32 33 31 36 31 36 31 30  5a 17 0d 31 38 31 31 32  |23161610Z..18112|
    00000100  33 31 36 31 36 31 30 5a  30 12 31 10 30 0e 06 03  |3161610Z0.1.0...|
    00000110  55 04 0a 13 07 41 63 6d  65 20 43 6f 30 81 9f 30  |U....Acme Co0..0|
    00000120  0d 06 09 2a 86 48 86 f7  0d 01 01 01 05 00 03 81  |...*.H..........|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r27/TestLauncherCrossVersionSpec.groovy

            given:
            collectDescriptorsFromBuild()
            and:
            testClassRemoved()
            when:
            launchTests { TestLauncher launcher ->
                launcher.withJvmTestClasses("org.acme.NotExistingTestClass")
                launcher.withJvmTestMethods("example.MyTest", "unknownMethod")
                launcher.withJvmTestMethods("example.MyTest", "unknownMethod2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/options/options.go

    	provCert = env.Register("PROV_CERT", "",
    		"Set to a directory containing provisioned certs, for VMs").Get()
    
    	// set to "SYSTEM" for ACME/public signed XDS servers.
    	xdsRootCA = env.Register("XDS_ROOT_CA", "",
    		"Explicitly set the root CA to expect for the XDS connection.").Get()
    
    	// set to "SYSTEM" for ACME/public signed CA servers.
    	caRootCA = env.Register("CA_ROOT_CA", "",
    		"Explicitly set the root CA to expect for the CA connection.").Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/initialization/EvaluateSettingsBuildOperationIntegrationTest.groovy

            def nestedSettingsFile = file("nested/settings.gradle")
            nestedSettingsFile << """
                rootProject.name = "nested"
            """
            file("nested/build.gradle") << """
            group = "org.acme"
            version = "1.0"
            """
    
            when:
            succeeds('help')
    
            then:
            operations().size() == 2
            verifySettings(operations()[0], settingsFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/networkfilter_test.go

    				LbPolicy: &networking.LoadBalancerSettings_Simple{},
    			},
    		},
    	}
    
    	simpleDestinationRule := config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.DestinationRule,
    			Name:             "acme-v3-0",
    			Namespace:        "not-default",
    		},
    		Spec: simpleDestinationRuleSpec,
    	}
    
    	destinationRuleSpec := &networking.DestinationRule{
    		Host: "test.com",
    		TrafficPolicy: &networking.TrafficPolicy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecationHandlingIntegrationTest.groovy

                        project.getTasks().create("thisIsADeprecatedTask", DeprecatedTask.class);
                    }
                }
            """.stripIndent()
            file('buildSrc/src/main/resources/META-INF/gradle-plugins/org.acme.deprecated.properties') << """
                implementation-class=DeprecatedPlugin
            """.stripIndent()
        }
    
        def 'DeprecatedPlugin and DeprecatedTask - #scenario'() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:16:32 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishResolvedVersionsJavaIntegTest.groovy

                def dep = dependencies.values()[0]
                assert dep.groupId == 'com.acme'
                assert dep.artifactId == 'lib'
                assert dep.version == '1.45'
            }
            javaLibrary.parsedModuleMetadata.variant("runtimeElements") {
                dependency("com.acme", "lib", "1.45")
                noMoreDependencies()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Server-TLSv12-ClientAuthRequestedAndEd25519Given

    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: Thu May 25 00:13:30 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top