Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for myorg (0.04 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParserTest.groovy

            when:
            def file = temporaryFolder.file("ivy.xml") << """
    <ivy-module version="1.0">
        <info organisation="myorg"
              module="mymodule"
              revision="myrev"
        />
    </ivy-module>
    """
            parse(parseContext, file)
    
            then:
            metadata.id == componentId("myorg", "mymodule", "myrev")
            metadata.status == "integration"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  2. security/pkg/pki/util/generate_cert_test.go

    	// Options to generate a CA cert with RSA.
    	rsaCaCertOptions := CertOptions{
    		Host:         host,
    		NotBefore:    caCertNotBefore,
    		TTL:          caCertTTL,
    		SignerCert:   nil,
    		SignerPriv:   nil,
    		Org:          "MyOrg",
    		IsCA:         true,
    		IsSelfSigned: true,
    		IsClient:     false,
    		IsServer:     true,
    		RSAKeySize:   2048,
    	}
    
    	rsaCaCertPem, rsaCaPrivPem, err := GenCertKeyFromOptions(rsaCaCertOptions)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 06 12:48:53 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    ----
    
    The class `HttpResponse` represents a good candidate for a unit test.
    It does not reach out to any other classes nor does it use the Gradle API.
    
    .HttpResponseTest.groovy
    [source,groovy]
    ----
    include::{snippetsPath}/developingPlugins/testingPlugins/groovy/url-verifier-plugin/src/test/groovy/org/myorg/http/HttpResponseTest.groovy[]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. security/pkg/pki/util/keycertbundle_test.go

    			caKeyFile:     rootKeyFile,
    			certChainFile: nil,
    			rootCertFile:  rootCertFile,
    			certOptions: &CertOptions{
    				Host:       "test_ca.com",
    				TTL:        time.Hour,
    				Org:        "MyOrg",
    				IsCA:       true,
    				RSAKeySize: 2048,
    			},
    			expectedErr: "failed to extract id the SAN extension does not exist",
    		},
    		"RSA Success": {
    			caCertFile:    certChainFile1,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    [source,java]
    ----
    include::{snippetsPath}/developingPlugins/defaultDependency/groovy/buildSrc/src/main/java/org/myorg/DataProcessingPlugin.java[tags=snippet]
    ----
    
    .DataProcessing.java
    [source,java]
    ----
    include::{snippetsPath}/developingPlugins/defaultDependency/groovy/buildSrc/src/main/java/org/myorg/DataProcessing.java[tags=snippet]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    	configWithAnotherClusterCa := setupKubeConfigWithClientAuth(t, anotherCaCert, anotherCaKey, notAfter, "https://1.2.3.4:1234", "test-cluster", "myOrg1", "myOrg2")
    	configWithAnotherClusterAddress := setupKubeConfigWithClientAuth(t, caCert, caKey, notAfter, "https://3.4.5.6:3456", "myOrg1", "test-cluster", "myOrg2")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

     *   implementation configuration: 'someConf', group: 'org.someOrg', name: 'someModule', version: '1.0'
     *
     *   //configuring dependency on 'someLib' module
     *   implementation(group: 'org.myorg', name: 'someLib', version:'1.0') {
     *     //explicitly adding the dependency artifact:
     *     artifact {
     *       //useful when some artifact properties unconventional
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/init.go

    	)
    	flagSet.StringVar(
    		&cfg.Networking.DNSDomain, options.NetworkingDNSDomain, cfg.Networking.DNSDomain,
    		`Use alternative domain for services, e.g. "myorg.internal".`,
    	)
    
    	flagSet.StringVar(
    		&cfg.ControlPlaneEndpoint, options.ControlPlaneEndpoint, cfg.ControlPlaneEndpoint,
    		`Specify a stable IP address or DNS name for the control plane.`,
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top