Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for publishTest (0.12 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

            javaLibrary.parsedIvy.expectArtifact("publishTest", "jar", "source").hasAttributes("jar", "sources", ["runtime"], "source")
    
            and:
            javaLibrary.removeGradleMetadataRedirection()
            resolveArtifacts(javaLibrary) {
                withoutModuleMetadata {
                    expectFiles "commons-collections-3.2.2.jar", "commons-io-1.4.jar", "publishTest-1.9.jar", "publishTest-1.9-source.jar"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  2. src/runtime/mprof.go

    func eqslice(x, y []uintptr) bool {
    	if len(x) != len(y) {
    		return false
    	}
    	for i, xi := range x {
    		if xi != y[i] {
    			return false
    		}
    	}
    	return true
    }
    
    // mProf_NextCycle publishes the next heap profile cycle and creates a
    // fresh heap profile cycle. This operation is fast and can be done
    // during STW. The caller must call mProf_Flush before calling
    // mProf_NextCycle again.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

       </artifact>
    </component>
    ----
    
    There are multiple reasons why you'd like to do so:
    
    1. an official site doesn't publish _secure_ checksums (SHA-256, SHA-512) but publishes multiple insecure ones (MD5, SHA1).
    While it's easy to fake a MD5 checksum and hard but possible to fake a SHA1 checksum, it's harder to fake both of them for the same artifact.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    	// before that happens) or pageInUse is updated.
    	h.setSpans(s.base(), npages, s)
    
    	if !typ.manual() {
    		// Mark in-use span in arena page bitmap.
    		//
    		// This publishes the span to the page sweeper, so
    		// it's imperative that the span be completely initialized
    		// prior to this line.
    		arena, pageIdx, pageMask := pageIndexOf(s.base())
    		atomic.Or8(&arena.pageInUse[pageIdx], pageMask)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top