- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 27 for Assembler (0.12 sec)
-
compat/maven-model-builder/src/test/java/org/apache/maven/model/inheritance/DefaultInheritanceAssemblerTest.java
Model assembled = assembler.assembleModelInheritance(child, parent, null, problems); // write baseName + "-actual" File actual = new File( "target/test-classes/poms/inheritance/" + baseName + (fromRepo ? "-build" : "-repo") + "-actual.xml"); writer.write(actual, null, assembled); // check with getPom( baseName + "-expected" )
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.9K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/ppc64.s
// 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 // TODO: These are preprocessed by the assembler into MOVD $const>>shift, R5; SLD $shift, R5.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Oct 29 13:14:38 UTC 2024 - 51K bytes - Viewed (0) -
src/cmd/asm/internal/arch/arm.go
// license that can be found in the LICENSE file. // This file encapsulates some of the odd characteristics of the ARM // instruction set, to minimize its interaction with the core of the // assembler. package arch import ( "strings" "cmd/internal/obj" "cmd/internal/obj/arm" ) var armLS = map[string]uint8{ "U": arm.C_UBIT, "S": arm.C_SBIT, "W": arm.C_WBIT,
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 23 15:18:14 UTC 2024 - 6.1K bytes - Viewed (0) -
src/cmd/asm/internal/asm/parse.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package asm implements the parser and instruction generator for the assembler. // TODO: Split apart? package asm import ( "fmt" "io" "log" "os" "strconv" "strings" "text/scanner" "unicode/utf8" "cmd/asm/internal/arch" "cmd/asm/internal/flags"
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 04 18:16:59 UTC 2024 - 36.9K bytes - Viewed (0) -
.teamcity/performance-test-durations.json
"scenario" : "org.gradle.performance.regression.buildcache.TaskOutputCachingJavaPerformanceTest.clean assemble for abi change with local cache", "durations" : [ { "testProject" : "largeJavaMultiProject", "linux" : 828 } ] }, { "scenario" : "org.gradle.performance.regression.buildcache.TaskOutputCachingJavaPerformanceTest.clean assemble for non-abi change with local cache", "durations" : [ {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Sep 12 14:38:24 UTC 2024 - 27.9K bytes - Viewed (0) -
src/cmd/asm/internal/asm/asm.go
p.errorf("%s: expected immediate constant; found %s", pseudo, obj.Dconv(&emptyProg, addr)) return false } return true } // asmText assembles a TEXT pseudo-op. // TEXT runtimeĀ·sigtramp(SB),4,$0-0 func (p *Parser) asmText(operands [][]lex.Token) { if len(operands) != 2 && len(operands) != 3 { p.errorf("expect two or three operands for TEXT") return
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Oct 21 14:11:44 UTC 2024 - 25.5K bytes - Viewed (0) -
.teamcity/performance-tests-ci.json
"groups" : [ { "testProject" : "largeJavaMultiProjectNoBuildSrc", "coverage" : { "per_commit" : [ "linux" ] } } ] }, { "testId" : "org.gradle.performance.regression.java.JavaConfigurationCachePerformanceTest.assemble loading configuration cache state with hot daemon",
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Sep 12 14:38:24 UTC 2024 - 36.4K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/ToolchainsBuildingResult.java
*/ @Deprecated(since = "4.0.0") public interface ToolchainsBuildingResult { /** * Gets the assembled toolchains. * * @return The assembled toolchains, never {@code null}. */ PersistedToolchains getEffectiveToolchains(); /** * Return a list of problems, if any. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingResult.java
* @deprecated since 4.0.0, use {@link org.apache.maven.api.services.SettingsBuilder} instead */ @Deprecated(since = "4.0.0") public interface SettingsBuildingResult { /** * Gets the assembled settings. * * @return The assembled settings, never {@code null}. */ Settings getEffectiveSettings(); /** * Gets the problems that were encountered during the settings building. Note that only problems of severity
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java
* * @return the effective model of the parent POM, never {@code null} */ @Nonnull Model getParentModel(); /** * Gets the assembled model with inheritance, interpolation and profile injection. * * @return The assembled model, never {@code null}. */ @Nonnull Model getEffectiveModel(); /** * Gets the profiles that were active during model building. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 3.2K bytes - Viewed (0)