Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 98 for publishTest (0.2 sec)

  1. src/net/rpc/server.go

    		t = t.Elem()
    	}
    	// PkgPath will be non-empty even for an exported type,
    	// so we need to check the type name as well.
    	return token.IsExported(t.Name()) || t.PkgPath() == ""
    }
    
    // Register publishes in the server the set of methods of the
    // receiver value that satisfy the following conditions:
    //   - exported method of exported type
    //   - two arguments, both of exported type
    //   - the second argument is a pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. pkg/serviceaccount/openidmetadata_test.go

    					Certificates:                []*x509.Certificate{},
    					CertificateThumbprintSHA1:   []uint8{},
    					CertificateThumbprintSHA256: []uint8{},
    				},
    			},
    		},
    		{
    			Name: "only publishes public keys",
    			Keys: []interface{}{
    				getPrivateKey(rsaPrivateKey),
    				getPrivateKey(ecdsaPrivateKey),
    			},
    			WantKeys: []jose.JSONWebKey{
    				{
    					Algorithm:                   "RS256",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 01:53:17 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    image::plugin-portal-plugin-page.png[]
    
    === Sources & Javadoc ===
    
    The Plugin Publish Plugin automatically generates and publishes the <<building_java_projects.adoc#sec:java_packaging,Javadoc, and sources JARs>> for your plugin publication.
    
    === Sign artifacts ===
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. helm/minio/README.md

    | IMPORTANT |
    | -------------------------- |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 07:27:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishIssuesIntegTest.groovy

            )
    
            then:
            succeeds "help"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/26468")
        def "publishes jar type and extension when publishing dependency on artifact with classifier"() {
            given:
            mavenRepo.module("org", "foo").artifact(classifier: "cls").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

            report.assertHasClassCoverage("transitive.Powerize")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/25618")
        def "can aggregate jacoco reports when dependency publishes test fixtures"() {
            given:
            buildFile << """
                apply plugin: 'org.gradle.jacoco-report-aggregation'
    
                dependencies {
                    jacocoAggregation project(":application")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 26.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    # Gradle Module Metadata 1.1 specification
    
    _Gradle Module Metadata 1.1 is supported in Gradle 6._
    
    Gradle publishes Gradle Module Metadata along with traditional metadata. Gradle Module Metadata is automatically consumed when available.
    
    ## Goal
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. src/runtime/mbarrier.go

    // but use the old value of arena_used. In this case, tracing will not
    // mark the object, even though it's reachable. However, the mutator
    // is guaranteed to execute a write barrier when it publishes the
    // pointer, so it will take care of marking the object. A general
    // consequence of this is that the garbage collector may cache the
    // value of mheap_.arena_used. (See issue #9984.)
    //
    //
    // Stack writes:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. pkg/security/security.go

    // in the request will be returned - server may replace it.
    type Client interface {
    	CSRSign(csrPEM []byte, certValidTTLInSec int64) ([]string, error)
    	Close()
    	// Retrieve CA root certs If CA publishes API endpoint for this
    	GetRootCertBundle() ([]string, error)
    }
    
    // SecretManager defines secrets management interface which is used by SDS.
    type SecretManager interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_block.go

    	if err != nil {
    		return "", err
    	}
    
    	klog.V(4).Infof(log("blockMapper.stageVolumeForBlock successfully requested NodeStageVolume [%s]", stagingPath))
    	return stagingPath, nil
    }
    
    // publishVolumeForBlock publishes a block volume to publishPath
    func (m *csiBlockMapper) publishVolumeForBlock(
    	ctx context.Context,
    	csi csiClient,
    	accessMode v1.PersistentVolumeAccessMode,
    	csiSource *v1.CSIPersistentVolumeSource,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
Back to top