Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 386 for zopload (0.12 sec)

  1. src/cmd/compile/internal/ssa/rewritedec.go

    			break
    		}
    		v.reset(OpSliceMake)
    		v0 := b.NewValue0(v.Pos, OpLoad, t.Elem().PtrTo())
    		v0.AddArg2(ptr, mem)
    		v1 := b.NewValue0(v.Pos, OpLoad, typ.Int)
    		v2 := b.NewValue0(v.Pos, OpOffPtr, typ.IntPtr)
    		v2.AuxInt = int64ToAuxInt(config.PtrSize)
    		v2.AddArg(ptr)
    		v1.AddArg2(v2, mem)
    		v3 := b.NewValue0(v.Pos, OpLoad, typ.Int)
    		v4 := b.NewValue0(v.Pos, OpOffPtr, typ.IntPtr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/work_empty_panic_GOPATH.txt

    # Regression test for https://go.dev/issue/58767:
    # with an empty go.work file in GOPATH mode, calls to load.defaultGODEBUG for a
    # package named "main" panicked in modload.MainModules.GoVersion.
    
    env GO111MODULE=off
    cd example
    go list example/m
    
    -- example/go.work --
    go 1.21
    -- example/m/main.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 28 18:50:18 UTC 2023
    - 329 bytes
    - Viewed (0)
  3. src/cmd/go/internal/fmtcmd/fmt.go

    package fmtcmd
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"os"
    	"path/filepath"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/load"
    	"cmd/go/internal/modload"
    	"cmd/internal/sys"
    )
    
    func init() {
    	base.AddBuildFlagsNX(&CmdFmt.Flag)
    	base.AddChdirFlag(&CmdFmt.Flag)
    	base.AddModFlag(&CmdFmt.Flag)
    	base.AddModCommonFlags(&CmdFmt.Flag)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 12:16:35 UTC 2022
    - 3K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/plugins/form-validator/file.js

    "jpeg"):a.inArray("jpeg",c)>-1&&a.inArray("jpg",c)===-1&&c.push("jpg"),c},e=function(a,b,c,d){var e=d[b]||"";a.errorMessageKey="",a.errorMessage=e.replace("%s",c)},f=function(c,d,e){var f=new FileReader,g=new Image;f.readAsDataURL(c),f.onload=function(c){g.onload=function(){a(b).trigger("imageValidation",[this]),d(this)},g.onerror=function(){e()},g.src=c.target.result}};a.formUtils.addValidator({name:"mime",validatorFunction:function(b,f,g,h){if(c){var i=!0,j=f.get(0).files||[],k="",l=d(f);return...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 4.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/query.go

    		}
    		return nil
    	}
    
    	if q.pattern == "all" {
    		// If there is no main module, "all" is not meaningful.
    		if !modload.HasModRoot() {
    			return fmt.Errorf(`cannot match "all": %v`, modload.ErrNoModRoot)
    		}
    		if !versionOkForMainModule(q.version) {
    			// TODO(bcmills): "all@none" seems like a totally reasonable way to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 15:48:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/stat_windows.go

    // Copyright 2019 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.
    
    //go:build windows
    
    package modload
    
    import "io/fs"
    
    // hasWritePerm reports whether the current user has permission to write to the
    // file with the given info.
    func hasWritePerm(_ string, fi fs.FileInfo) bool {
    	// Windows has a read-only attribute independent of ACLs, so use that to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 733 bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/stat_openfile.go

    // are checked by the server and group information is not known to the client,
    // access must open the file to check permissions.”
    //
    // js,wasm is similar, in that it does not define syscall.Access.
    
    package modload
    
    import (
    	"io/fs"
    	"os"
    )
    
    // hasWritePerm reports whether the current user has permission to write to the
    // file with the given info.
    func hasWritePerm(path string, _ fs.FileInfo) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 12 16:45:11 UTC 2022
    - 791 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/memcombine.go

    		orOp == OpOr32 && (v.Op == OpZeroExt8to32 || v.Op == OpZeroExt16to32) ||
    		orOp == OpOr16 && v.Op == OpZeroExt8to16 {
    		extOp = v.Op
    		v = v.Args[0]
    	} else {
    		return false
    	}
    	if v.Op != OpLoad {
    		return false
    	}
    	base, _ := splitPtr(v.Args[0])
    	mem := v.Args[1]
    	size := v.Type.Size()
    
    	if root.Block.Func.Config.arch == "S390X" {
    		// s390x can't handle unaligned accesses to global variables.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/gopath_vendor_dup_err.txt

    # Issue 17119: Test more duplicate load errors.
    ! go build dupload
    ! stderr 'duplicate load|internal error'
    stderr 'dupload/vendor/p must be imported as p'
    
    -- dupload/dupload.go --
    package main
    
    import (
    	_ "dupload/p2"
    	_ "p"
    )
    
    func main() {}
    -- dupload/p/p.go --
    package p
    -- dupload/p2/p2.go --
    package p2
    
    import _ "dupload/vendor/p"
    -- dupload/vendor/p/p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 399 bytes
    - Viewed (0)
  10. src/cmd/go/internal/workcmd/sync.go

    				SilencePackageErrors:     true,
    			}, "all")
    			modload.WriteGoMod(ctx, modload.WriteOpts{})
    		}
    		goV = gover.Max(goV, modload.MainModules.GoVersion())
    	}
    
    	wf, err := modload.ReadWorkFile(workFilePath)
    	if err != nil {
    		base.Fatal(err)
    	}
    	modload.UpdateWorkGoVersion(wf, goV)
    	modload.UpdateWorkFile(wf)
    	if err := modload.WriteWorkFile(workFilePath, wf); err != nil {
    		base.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top