Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 175 for aranes (0.14 sec)

  1. src/cmd/internal/obj/wasm/a.out.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package wasm
    
    import "cmd/internal/obj"
    
    //go:generate go run ../stringer.go -i $GOFILE -o anames.go -p wasm
    
    const (
    	/* mark flags */
    	DONE          = 1 << iota
    	PRESERVEFLAGS // not allowed to clobber flags
    )
    
    /*
     *	wasm
     */
    const (
    	AGet = obj.ABaseWasm + obj.A_ARCHSPECIFIC + iota
    	ASet
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. src/runtime/mkpreempt.go

    func main() {
    	flag.Parse()
    	if flag.NArg() > 0 {
    		out = os.Stdout
    		for _, arch := range flag.Args() {
    			gen, ok := arches[arch]
    			if !ok {
    				log.Fatalf("unknown arch %s", arch)
    			}
    			header(arch)
    			gen()
    		}
    		return
    	}
    
    	for arch, gen := range arches {
    		f, err := os.Create(fmt.Sprintf("preempt_%s.s", arch))
    		if err != nil {
    			log.Fatal(err)
    		}
    		out = f
    		header(arch)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/cpu.go

    // THE SOFTWARE.
    
    package riscv
    
    import (
    	"errors"
    	"fmt"
    
    	"cmd/internal/obj"
    )
    
    //go:generate go run ../stringer.go -i $GOFILE -o anames.go -p riscv
    
    const (
    	// Base register numberings.
    	REG_X0 = obj.RBaseRISCV + iota
    	REG_X1
    	REG_X2
    	REG_X3
    	REG_X4
    	REG_X5
    	REG_X6
    	REG_X7
    	REG_X8
    	REG_X9
    	REG_X10
    	REG_X11
    	REG_X12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/handling-errors.md

    ```
    
    !!! note "Detalhes Técnicos"
        Você também pode usar `from starlette.requests import Request` and `from starlette.responses import JSONResponse`.
    
        **FastAPI** disponibiliza o mesmo `starlette.responses` através do `fastapi.responses` por conveniência ao desenvolvedor. Contudo, a maior parte das respostas disponíveis vem diretamente do Starlette. O mesmo acontece com o `Request`.
    
    ## Sobrescreva o manipulador padrão de exceções
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

                <property name="tokens" value="LITERAL_CATCH"/>
            </module>
            <module name="AvoidNestedBlocks">
                <property name="allowInSwitchCase" value="true"/>
            </module>
    
            <!-- Braces -->
            <module name="LeftCurly"/>
            <module name="RightCurly"/>
            <module name="NeedBraces"/>
    
            <!-- Whitespace -->
            <module name="GenericWhitespace"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:16 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  6. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/Pmd.java

        /**
         * The built-in rule sets to be used. See the <a href="https://docs.pmd-code.org/pmd-doc-6.55.0/pmd_rules_java.html">official list</a> of built-in rule sets.
         *
         * <pre>
         *     ruleSets = ["basic", "braces"]
         * </pre>
         */
        @Input
        public List<String> getRuleSets() {
            return ruleSets;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/loong64/a.out.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package loong64
    
    import (
    	"cmd/internal/obj"
    )
    
    //go:generate go run ../stringer.go -i $GOFILE -o anames.go -p loong64
    
    const (
    	NSNAME = 8
    	NSYM   = 50
    	NREG   = 32 // number of general registers
    	NFREG  = 32 // number of floating point registers
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/list6.go

    	"TR4",
    	"TR5",
    	"TR6",
    	"TR7",
    	"TLS",    // [D_TLS]
    	"MAXREG", // [MAXREG]
    }
    
    func init() {
    	obj.RegisterRegister(REG_AL, REG_AL+len(Register), rconv)
    	obj.RegisterOpcode(obj.ABaseAMD64, Anames)
    	obj.RegisterRegisterList(obj.RegListX86Lo, obj.RegListX86Hi, rlconv)
    	obj.RegisterOpSuffix("386", opSuffixString)
    	obj.RegisterOpSuffix("amd64", opSuffixString)
    }
    
    func rconv(r int) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testsanitizers/asan_test.go

    		{src: "asan_global5.go"},
    		{src: "arena_fail.go", memoryAccessError: "use-after-poison", errorLocation: "arena_fail.go:26", experiments: []string{"arenas"}},
    	}
    	for _, tc := range cases {
    		tc := tc
    		name := strings.TrimSuffix(tc.src, ".go")
    		t.Run(name, func(t *testing.T) {
    			t.Parallel()
    
    			dir := newTempDir(t)
    			defer dir.RemoveAll(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:31 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. src/debug/elf/testdata/go-relocation-test-gcc930-ranges-no-rela-x86-64

    Victor Michel <******@****.***> 1598820219 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 31 18:42:38 UTC 2020
    - 5.6K bytes
    - Viewed (0)
Back to top