Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,315 for _obj (0.06 sec)

  1. src/cmd/go/testdata/script/build_cwd_newline.txt

    [cgo] ! go tool cgo main.go
    [cgo] stderr 'cgo: input path contains newline character: .*uh-oh'
    [cgo] ! exists _obj
    
    [cgo] go tool cgo -trimpath=$PWD main.go
    [cgo] grep '//line main\.go:1:1' _obj/main.cgo1.go
    [cgo] ! grep 'uh-oh' _obj/main.cgo1.go
    [cgo] rm _obj
    
    
    # Since we do preserve $PWD (or set it appropriately) for commands, and we do
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/.gitignore

    _obj/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:27:03 UTC 2019
    - 16 bytes
    - Viewed (0)
  3. docs_src/sql_databases_peewee/sql_app/schemas.py

    import peewee
    from pydantic import BaseModel
    from pydantic.utils import GetterDict
    
    
    class PeeweeGetterDict(GetterDict):
        def get(self, key: Any, default: Any = None):
            res = getattr(self._obj, key, default)
            if isinstance(res, peewee.ModelSelect):
                return list(res)
            return res
    
    
    class ItemBase(BaseModel):
        title: str
        description: Union[str, None] = None
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 868 bytes
    - Viewed (0)
  4. .gitignore

    .DS_Store
    *.[56789ao]
    *.a[56789o]
    *.so
    *.pyc
    ._*
    .nfs.*
    [56789a].out
    *~
    *.orig
    *.rej
    *.exe
    .*.swp
    core
    *.cgo*.go
    *.cgo*.c
    _cgo_*
    _obj
    _test
    _testmain.go
    
    /VERSION.cache
    /bin/
    /build.out
    /doc/articles/wiki/*.bin
    /goinstall.log
    /last-change
    /misc/cgo/life/run.out
    /misc/cgo/stdio/run.out
    /misc/cgo/testso/main
    /pkg/
    /src/*.*/
    /src/cmd/cgo/zdefaultcc.go
    /src/cmd/dist/dist
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 958 bytes
    - Viewed (0)
  5. src/cmd/go/internal/clean/clean.go

    tools or by manual invocations of go build.
    
    If a package argument is given or the -i or -r flag is set,
    clean removes the following files from each of the
    source directories corresponding to the import paths:
    
    	_obj/            old object directory, left from Makefiles
    	_test/           old test directory, left from Makefiles
    	_testmain.go     old gotest file, left from Makefiles
    	test.out         old test log, left from Makefiles
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. src/cmd/distpack/pack.go

    		log.Fatal(err)
    	}
    	base.SetTime(versionTime)
    	base.SetMode(mode)
    	base.Remove(
    		".git/**",
    		".gitattributes",
    		".github/**",
    		".gitignore",
    		"VERSION.cache",
    		"misc/cgo/*/_obj/**",
    		"**/.DS_Store",
    		"**/*.exe~", // go.dev/issue/23894
    		// Generated during make.bat/make.bash.
    		"src/cmd/dist/dist",
    		"src/cmd/dist/dist.exe",
    	)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testcarchive/carchive_test.go

    		}
    	}
    }
    
    // checkELFArchiveObject checks an object in an ELF archive.
    func checkELFArchiveObject(t *testing.T, arname string, off int64, obj io.ReaderAt) {
    	t.Helper()
    
    	ef, err := elf.NewFile(obj)
    	if err != nil {
    		t.Errorf("%s: failed to open ELF file at %d: %v", arname, off, err)
    		return
    	}
    	defer ef.Close()
    
    	// Verify section types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/loong64/obj.go

    		p.From.Sym = sym
    		p.From.Name = obj.NAME_GOTREF
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = REGTMP
    		p.To.Name = obj.NAME_NONE
    		p.To.Offset = 0
    		p.To.Sym = nil
    		p1 := obj.Appendp(p, newprog)
    		p1.As = AADDV
    		p1.From.Type = obj.TYPE_CONST
    		p1.From.Offset = offset
    		p1.To.Type = obj.TYPE_REG
    		p1.To.Reg = REGTMP
    		p2 := obj.Appendp(p1, newprog)
    		p2.As = AJAL
    		p2.To.Type = obj.TYPE_MEM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/obj.go

    		adjargp := obj.Appendp(testargp, newprog)
    		adjargp.As = AADDI
    		adjargp.From = obj.Addr{Type: obj.TYPE_CONST, Offset: int64(ctxt.Arch.PtrSize)}
    		adjargp.Reg = REG_SP
    		adjargp.To = obj.Addr{Type: obj.TYPE_REG, Reg: REG_X6}
    
    		setargp := obj.Appendp(adjargp, newprog)
    		setargp.As = AMOV
    		setargp.From = obj.Addr{Type: obj.TYPE_REG, Reg: REG_X6}
    		setargp.Reg = obj.REG_NONE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  10. src/cmd/link/internal/x86/obj.go

    // Inferno utils/8l/obj.c
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/8l/obj.c
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top