Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 97 for initDS (0.43 sec)

  1. platforms/documentation/docs/src/snippets/plugins/pluginManagement/groovy/init.gradle

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 172 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/initScripts/externalDependency/groovy/init.gradle

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 318 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/environmentVariables/groovy/init.gradle

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 61 bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/fetch.go

    	// to checkSumDB.
    
    	// Check whether mod+h is listed in go.sum already. If so, we're done.
    	goSum.mu.Lock()
    	inited, err := initGoSum()
    	if err != nil {
    		goSum.mu.Unlock()
    		return err
    	}
    	done := inited && haveModSumLocked(mod, h)
    	if inited {
    		st := goSum.status[modSum{mod, h}]
    		st.used = true
    		goSum.status[modSum{mod, h}] = st
    	}
    	goSum.mu.Unlock()
    
    	if done {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. test/codegen/structs.go

    	// amd64:`.*runtime[.]gcWriteBarrier.*\(SB\)`
    	*t = Z2{}
    }
    
    // ------------------ //
    //    Initializing    //
    // ------------------ //
    
    type I1 struct {
    	a, b, c, d int
    }
    
    func Init1(p *I1) { // Issue #18872
    	// amd64:`MOVQ\t[$]1`,`MOVQ\t[$]2`,`MOVQ\t[$]3`,`MOVQ\t[$]4`
    	*p = I1{1, 2, 3, 4}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 923 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/buildCache/configure-by-init-script/kotlin/init.gradle.kts

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 254 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/gradleProperties/kotlin/init.gradle.kts

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 336 bytes
    - Viewed (0)
  8. src/crypto/sha1/sha1.go

    	"errors"
    	"hash"
    	"internal/byteorder"
    )
    
    func init() {
    	crypto.RegisterHash(crypto.SHA1, New)
    }
    
    // The size of a SHA-1 checksum in bytes.
    const Size = 20
    
    // The blocksize of SHA-1 in bytes.
    const BlockSize = 64
    
    const (
    	chunk = 64
    	init0 = 0x67452301
    	init1 = 0xEFCDAB89
    	init2 = 0x98BADCFE
    	init3 = 0x10325476
    	init4 = 0xC3D2E1F0
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/initScripts/plugins/kotlin/init.gradle.kts

    // tag::init-script-plugin[]
    
    apply<EnterpriseRepositoryPlugin>()
    
    class EnterpriseRepositoryPlugin : Plugin<Gradle> {
        companion object {
            const val ENTERPRISE_REPOSITORY_URL = "https://repo.gradle.org/gradle/repo"
        }
    
        override fun apply(gradle: Gradle) {
            // ONLY USE ENTERPRISE REPO FOR DEPENDENCIES
            gradle.allprojects {
                repositories {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tutorial/environmentVariables/kotlin/init.gradle.kts

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 62 bytes
    - Viewed (0)
Back to top