- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 65 for nasm (0.1 seconds)
-
MODULE.bazel
"gloo", "highwayhash", "hwloc", "implib_so", "llvm-raw", "llvm_openmp", "mkl_dnn_acl_compatible", "ml_dtypes_py", "mpitrampoline", "nanobind", "nasm", "nvshmem", "onednn", "onednn_async", "pthreadpool", "raft", "riegeli", "rocm_device_libs", "shardy", "slinky", "stablehlo",
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Thu Apr 02 01:32:13 GMT 2026 - 11K bytes - Click Count (0) -
src/cmd/asm/internal/asm/asm.go
// Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package asm import ( "fmt" "internal/abi" "strconv" "strings" "text/scanner" "cmd/asm/internal/arch" "cmd/asm/internal/flags" "cmd/asm/internal/lex" "cmd/internal/obj" "cmd/internal/obj/arm64" "cmd/internal/obj/ppc64" "cmd/internal/obj/riscv" "cmd/internal/obj/x86"
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Mar 20 17:02:17 GMT 2026 - 27.5K bytes - Click Count (0) -
doc/asm.html
"Path": "/doc/asm" }--> <h2 id="introduction">A Quick Guide to Go's Assembler</h2> <p> This document is a quick outline of the unusual form of assembly language used by the <code>gc</code> Go compiler. The document is not comprehensive. </p> <p> The assembler is based on the input style of the Plan 9 assemblers, which is documented in detail <a href="https://9p.io/sys/doc/asm.html">elsewhere</a>.
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Nov 14 19:09:46 GMT 2025 - 36.5K bytes - Click Count (0) -
src/main/resources/fess_label_nl.properties
labels.user_configuration=Gebruiker labels.user_list_name=Naam labels.user_password=Wachtwoord labels.user_confirm_password=Wachtwoord (bevestigen) labels.user_title_details=Gebruiker labels.role_configuration=Rol labels.role_list_name=Naam labels.role_name=Naam labels.role_title_details=Rol labels.group_configuration=Groep labels.group_list_name=Naam labels.group_name=Naam labels.group_title_details=Groep
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 51.3K bytes - Click Count (1) -
src/cmd/asm/main.go
import ( "bufio" "flag" "fmt" "internal/buildcfg" "log" "os" "cmd/asm/internal/arch" "cmd/asm/internal/asm" "cmd/asm/internal/flags" "cmd/asm/internal/lex" "cmd/internal/bio" "cmd/internal/obj" "cmd/internal/objabi" "cmd/internal/telemetry/counter" ) func main() { log.SetFlags(0) log.SetPrefix("asm: ") counter.Open() buildcfg.Check() GOARCH := buildcfg.GOARCH
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Apr 02 17:07:18 GMT 2026 - 3K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy
import org.gradle.model.internal.asm.AsmConstants import org.objectweb.asm.AnnotationVisitor import org.objectweb.asm.ClassReader import org.objectweb.asm.ClassVisitor import org.objectweb.asm.FieldVisitor import org.objectweb.asm.MethodVisitor import org.objectweb.asm.Type import org.objectweb.asm.TypePath import org.objectweb.asm.TypeReference import org.objectweb.asm.signature.SignatureReader
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Oct 27 09:26:32 GMT 2025 - 15.4K bytes - Click Count (0) -
lib/wasm/go_wasip1_wasm_exec
;; "wazero") exec wazero run -mount /:/ -env-inherit -cachedir "${TMPDIR:-/tmp}"/wazero ${GOWASIRUNTIMEARGS:-} "$1" "${@:2}" ;; "wasmtime" | "") exec wasmtime run --dir=/ --env PWD="$PWD" --env PATH="$PATH" -W max-wasm-stack=8388608 ${GOWASIRUNTIMEARGS:-} "$1" "${@:2}" ;; *) echo "Unknown Go WASI runtime specified: $GOWASIRUNTIME" exit 1 ;;
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Tue Jun 24 01:21:07 GMT 2025 - 797 bytes - Click Count (0) -
ci/official/containers/ml_build/builder.devtoolset/build_devtoolset.sh
;; esac # Put the current kernel headers from ubuntu in place. ln -s "/usr/include/linux" "/${TARGET}/usr/include/linux" ln -s "/usr/include/asm-generic" "/${TARGET}/usr/include/asm-generic" ln -s "/usr/include/x86_64-linux-gnu/asm" "/${TARGET}/usr/include/asm" # Symlinks in the binary distribution are set up for installation in /usr, we # need to fix up all the links to stay within /${TARGET}. /fixlinks.sh "/${TARGET}"Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Fri Jan 16 21:51:13 GMT 2026 - 8K bytes - Click Count (0) -
pom.xml
</dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>${asm.version}</version> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-commons</artifactId> <version>${asm.version}</version> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-util</artifactId> <version>${asm.version}</version>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 49.9K bytes - Click Count (0) -
docs/pt/docs/tutorial/extra-data-types.md
* `frozenset`: * Em requisições e respostas, será tratado da mesma forma que um `set`: * Nas requisições, uma lista será lida, eliminando duplicadas e convertendo-a em um `set`. * Nas respostas, o `set` será convertido para uma `list`. * O esquema gerado vai especificar que os valores do `set` são únicos (usando o `uniqueItems` do JSON Schema). * `bytes`:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 2.9K bytes - Click Count (0)