Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 128 for _base (0.04 sec)

  1. platforms/software/platform-base/src/main/resources/META-INF/gradle-plugins/org.gradle.component-model-base.properties

    implementation-class=org.gradle.language.base.plugins.ComponentModelBasePlugin...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 79 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.testing.base.TestingExtension.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.platform.base.LibrarySpec.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.platform.base.SourceComponentSpec.xml

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

    	check := t.check
    	// Ensure that the original method is type-checked.
    	if check != nil {
    		check.objDecl(origm, nil)
    	}
    
    	origSig := origm.typ.(*Signature)
    	rbase, _ := deref(origSig.Recv().Type())
    
    	// If rbase is t, then origm is already the instantiated method we're looking
    	// for. In this case, we return origm to preserve the invariant that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser.go

    	// an empty filename means to use the previous filename.
    	filename := text[:i-1] // lop off ":line"
    	trimmed := false
    	if filename == "" && ok2 {
    		filename = p.base.Filename()
    		trimmed = p.base.Trimmed()
    	}
    
    	p.base = NewLineBase(pos, filename, trimmed, line, col)
    }
    
    func commentText(s string) string {
    	if s[:2] == "/*" {
    		return s[2 : len(s)-2] // lop off /* and */
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest.groovy

    repositories {
        maven { url '${repo.uri}' }
    }
    configurations {
        base
        extendedWithClassifier.extendsFrom base
        extendedWithOther.extendsFrom base
        justDefault
        justClassifier
        rawBase
        rawExtended.extendsFrom rawBase
        cBase
        cExtended.extendsFrom cBase
    }
    dependencies {
        base 'org.gradle.test:external1:1.0'
        base 'org.gradle.test:external1:1.0:baseClassifier'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  8. src/crypto/sha512/sha512block_arm64.s

    	SHA512H	V7.D2, V6, i3 \
    	VADD	i3.D2, i1.D2, i4.D2 \
    	SHA512H2	i0.D2, i1, i3
    
    // func blockAsm(dig *digest, p []byte)
    TEXT ·blockAsm(SB),NOSPLIT,$0
    	MOVD	dig+0(FP), R0
    	MOVD	p_base+8(FP), R1
    	MOVD	p_len+16(FP), R2
    	MOVD	·_K+0(SB), R3
    
    	// long enough to prefetch
    	PRFM	(R3), PLDL3KEEP
    	// load digest
    	VLD1	(R0), [V8.D2, V9.D2, V10.D2, V11.D2]
    loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. src/go/types/named.go

    	check := t.check
    	// Ensure that the original method is type-checked.
    	if check != nil {
    		check.objDecl(origm, nil)
    	}
    
    	origSig := origm.typ.(*Signature)
    	rbase, _ := deref(origSig.Recv().Type())
    
    	// If rbase is t, then origm is already the instantiated method we're looking
    	// for. In this case, we return origm to preserve the invariant that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. src/runtime/mheap.go

    	}
    
    	if base == 0 {
    		// Try to acquire a base address.
    		base, scav = h.pages.alloc(npages)
    		if base == 0 {
    			var ok bool
    			growth, ok = h.grow(npages)
    			if !ok {
    				unlock(&h.lock)
    				return nil
    			}
    			base, scav = h.pages.alloc(npages)
    			if base == 0 {
    				throw("grew heap, but no adequate free space found")
    			}
    		}
    	}
    	if s == nil {
    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