Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 68 of 68 for Pkgs (0.07 sec)

  1. src/cmd/compile/internal/staticdata/data.go

    		s := nam.Sym()
    		sf := s.Pkg.Lookup(ir.FuncSymName(s)).Linksym()
    
    		// While compiling package runtime, we might try to create
    		// funcsyms for functions from both types.LocalPkg and
    		// ir.Pkgs.Runtime.
    		if base.Flag.CompilingRuntime && sf.OnList() {
    			continue
    		}
    
    		// Function values must always reference ABIInternal
    		// entry points.
    		target := s.Linksym()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    	// Copy the runtime packages into a temporary GOROOT
    	// so that we can change files.
    	var dirs []string
    	tg.run("list", "-deps", "runtime")
    	pkgs := strings.Split(strings.TrimSpace(tg.getStdout()), "\n")
    	for _, pkg := range pkgs {
    		dirs = append(dirs, filepath.Join("src", pkg))
    	}
    	dirs = append(dirs,
    		filepath.Join("pkg/tool", goHostOS+"_"+goHostArch),
    		"pkg/include",
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    	if l.flags&FlagCheckLinkname == 0 {
    		return
    	}
    
    	error := func() {
    		log.Fatalf("%s: invalid reference to %s", pkg, name)
    	}
    	pkgs, ok := blockedLinknames[name]
    	if ok {
    		for _, p := range pkgs {
    			if pkg == p {
    				return // pkg is allowed
    			}
    		}
    		error()
    	}
    	r, li := l.toLocal(s)
    	if r == l.extReader { // referencing external symbol is okay
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    		if gover.Compare(ld.requirements.GoVersion(), gover.TidyGoModSumVersion) < 0 && (ld.Tidy || cfg.BuildMod != "mod") {
    			keepPkgGoModSums = false
    			keepModSumsForZipSums = false
    		}
    		for _, pkg := range ld.pkgs {
    			// We check pkg.mod.Path here instead of pkg.inStd because the
    			// pseudo-package "C" is not in std, but not provided by any module (and
    			// shouldn't force loading the whole module graph).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    		s.callResult(n, callNormal)
    		if n.Op() == ir.OCALLFUNC && n.Fun.Op() == ir.ONAME && n.Fun.(*ir.Name).Class == ir.PFUNC {
    			if fn := n.Fun.Sym().Name; base.Flag.CompilingRuntime && fn == "throw" ||
    				n.Fun.Sym().Pkg == ir.Pkgs.Runtime &&
    					(fn == "throwinit" || fn == "gopanic" || fn == "panicwrap" || fn == "block" ||
    						fn == "panicmakeslicelen" || fn == "panicmakeslicecap" || fn == "panicunsafeslicelen" ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    github.com/influxdb/influxdb,v1.7.9,h1:KMBwwvyJyBppIwrg5t0662p+Yei/ucnIkqUl8txiQdQ=,ad251d4cc00aec767465dc60d6b702a3635b68402123a4ee5d1ee2b5006310b3
    github.com/iotexproject/go-pkgs,v0.1.1,h1:AyWJf8jqOg4aMSrxi+MInFFBZhTvSm0LCu1o08heijk=,c5099edde7450b4f8b9a0f49c42697f5e9bcb92d2bf58395aa0681f3ef6b583d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/NtlmUtil.java

            }
            System.arraycopy(passwordBytes, 0, p14, 0, passwordLength);
            NtlmUtil.E(p14, NtlmUtil.S8, p21);
            NtlmUtil.E(p21, challenge, p24);
            return p24;
        }
    
        // KGS!@#$%
        static final byte[] S8 = {
            (byte) 0x4b, (byte) 0x47, (byte) 0x53, (byte) 0x21, (byte) 0x40, (byte) 0x23, (byte) 0x24, (byte) 0x25
        };
    
    
        /*
         * Accepts key multiple of 7
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 9.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

                Config.getInt("jcifs.smb1.smb.lmCompatibility", 3);
    
        private static final Random RANDOM = new Random();
    
        private static LogStream log = LogStream.getInstance();
    
        // KGS!@#$%
        private static final byte[] S8 = {
            (byte)0x4b, (byte)0x47, (byte)0x53, (byte)0x21,
            (byte)0x40, (byte)0x23, (byte)0x24, (byte)0x25
        };
        /* Accepts key multiple of 7
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.5K bytes
    - Viewed (0)
Back to top