Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for Assembly (0.55 sec)

  1. .teamcity/src/main/kotlin/model/CIBuildModel.kt

                            PerformanceScenario(
                                Scenario(
                                    "org.gradle.performance.regression.corefeature.FileSystemWatchingPerformanceTest",
                                    "assemble for non-abi change with file system watching and configuration caching"
                                ),
                                it
                            )
                        }
                    )
                )
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Feb 23 01:54:48 GMT 2024
    - 20.9K bytes
    - Viewed (0)
  2. build-logic/cleanup/src/test/groovy/gradlebuild/cleanup/services/LeakingProcessKillPatternTest.groovy

            def projectDir = 'C:\\some\\agent\\workspace'
    
            expect:
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Sep 28 07:00:39 GMT 2023
    - 14.4K bytes
    - Viewed (0)
  3. doc/go_spec.html

    	}
    	return y
    }
    </pre>
    
    <p>
    A function declaration without type parameters may omit the body.
    Such a declaration provides the signature for a function implemented outside Go,
    such as an assembly routine.
    </p>
    
    <pre>
    func flushICache(begin, end uintptr)  // implemented externally
    </pre>
    
    <h3 id="Method_declarations">Method declarations</h3>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/asm.go

    			targetAddr.Type = obj.TYPE_REG
    		}
    	case target.Type == obj.TYPE_CONST:
    		// JMP $4
    		*targetAddr = a[0]
    	case target.Type == obj.TYPE_NONE:
    		// JMP
    	default:
    		p.errorf("cannot assemble jump %+v", target)
    		return
    	}
    
    	p.append(prog, cond, true)
    }
    
    func (p *Parser) patch() {
    	for _, patch := range p.toPatch {
    		targetProg := p.labels[patch.label]
    		if targetProg == nil {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 25.3K bytes
    - Viewed (0)
  5. cmd/encryption-v1.go

    		err = errors.New("Object is not encrypted")
    		return
    	}
    
    	if rs == nil {
    		// No range, so offsets refer to the whole object.
    		return 0, o.Size, 0, 0, 0, nil
    	}
    
    	// Assemble slice of (decrypted) part sizes in `sizes`
    	var sizes []int64
    	var decObjSize int64 // decrypted total object size
    	if o.isMultipart() {
    		sizes = make([]int64, len(o.Parts))
    		for i, part := range o.Parts {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 36.5K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/ppc64.s

    	// Hex constant 0xFFFFFFFE00000002 (load of constant on < power10, pli on >= power10
    	MOVD $-8589934590, R5           // 3ca00000e8a50000 or 0602000038a00002
    
    	// For backwards compatibility, MOVW $const,Rx and MOVWZ $const,Rx assemble identically
    	// and accept the same constants.
    	MOVW $2147483648, R5            // 64058000
    	MOVWZ $-2147483648, R5          // 3ca08000
    
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Apr 24 15:53:25 GMT 2024
    - 49K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     *
     * ### Paths and Queries should decompose
     *
     * Neither of the built-in URL models offer direct access to path segments or query parameters.
     * Manually using `StringBuilder` to assemble these components is cumbersome: do '+' characters get
     * silently replaced with spaces? If a query parameter contains a '&amp;', does that get escaped?
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 63.5K bytes
    - Viewed (1)
  8. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        void testProfilePlugins() throws Exception {
            PomTestWrapper pom = this.buildPom("profile-plugins", "standard");
            assertEquals(2, ((List<?>) pom.getValue("build/plugins")).size());
            assertEquals("maven-assembly2-plugin", pom.getValue("build/plugins[2]/artifactId"));
        }
    
        @Test
        void testPluginInheritanceSimple() throws Exception {
            PomTestWrapper pom = this.buildPom("plugin-inheritance-simple/sub");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  9. ChangeLog.md

    - [`KT-53687`](https://youtrack.jetbrains.com/issue/KT-53687) Don't trigger npm and yarn related tasks if it not relevant for assemble
    - [`KT-49915`](https://youtrack.jetbrains.com/issue/KT-49915) KJS / Gradle: Gradle build cache miss because of absolute path in `KotlinJsIrLink.filteredArgumentsMap`
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Dec 21 17:48:12 GMT 2023
    - 268.7K bytes
    - Viewed (1)
Back to top