- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 76 for assemble (0.08 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilderResult.java
import org.apache.maven.api.toolchain.PersistedToolchains; /** * * @since 4.0.0 */ @Experimental public interface ToolchainsBuilderResult { /** * Gets the assembled toolchains. * * @return the assembled toolchains, never {@code null} */ @Nonnull PersistedToolchains getEffectiveToolchains(); /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Feb 28 23:54:53 UTC 2024 - 1.8K bytes - Viewed (0) -
src/cmd/asm/main.go
break } } if ok && !*flags.SymABIs { ctxt.NumberSyms() obj.WriteObjFile(ctxt, buf) } if !ok || diag { if failedFile != "" { log.Printf("assembly of %s failed", failedFile) } else { log.Print("assembly failed") } buf.Close() os.Remove(*flags.OutputFile) os.Exit(1) }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Jun 21 19:58:04 UTC 2024 - 2.9K bytes - Viewed (0) -
doc/next/5-toolchain.md
## Compiler {#compiler} ## Assembler {#assembler} ## Linker {#linker} ## Bootstrap {#bootstrap} <!-- go.dev/issue/64751 --> As mentioned in the [Go 1.22 release notes](/doc/go1.22#bootstrap), Go 1.24 now requires Go 1.22.6 or later for bootstrap.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Aug 20 17:52:42 UTC 2024 - 338 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) -
pom.xml
<!-- Add bin directory --> <data> <type>files</type> <paths> <path>${project.basedir}/src/main/assemblies/files/fess</path> <path>${project.basedir}/src/main/assemblies/files/fess.in.sh</path> <path>${project.basedir}/src/main/assemblies/files/generate-thumbnail</path> <path>${project.basedir}/plugin.xml</path> </paths> <dst>${packaging.fess.bin.dir}</dst>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 02:16:03 UTC 2024 - 49.1K 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) -
src/main/assemblies/common-bin.xml
<fileSet> <filtered>true</filtered> <directory>src/main/assemblies/files</directory> <outputDirectory>fess-${project.version}/bin</outputDirectory> <lineEnding>dos</lineEnding> <includes> <include>fess.in.bat</include> <include>fess.bat</include> <include>service.bat</include> </includes> </fileSet> <fileSet> <directory>src/main/assemblies/extension</directory>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Mar 17 02:29:43 UTC 2022 - 3.7K 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) -
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) -
src/cmd/asm/internal/asm/testdata/loong64.s
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Mar 22 18:50:59 UTC 2023 - 434 bytes - Viewed (0)