Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for yerine (1.59 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
          "dev": true
        },
        "node_modules/define-properties": {
          "version": "1.2.0",
          "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz",
          "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==",
          "dev": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    			return false
    		}
    	}
    	return true
    }
    
    // moduleImportPath translates import paths found in go modules
    // back down to paths that can be resolved in ordinary builds.
    //
    // Define “new” code as code with a go.mod file in the same directory
    // or a parent directory. If an import in new code says x/y/v2/z but
    // x/y/v2/z does not exist and x/y/go.mod says “module x/y/v2”,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // users would configure go using:
    //
    //	GOPRIVATE=*.corp.example.com
    //	GOPROXY=proxy.example.com
    //	GONOPROXY=none
    //
    // The GOPRIVATE variable is also used to define the "public" and "private"
    // patterns for the GOVCS variable; see 'go help vcs'. For that usage,
    // GOPRIVATE applies even in GOPATH mode. In that case, it matches import paths
    // instead of module paths.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    	plan9privates *obj.LSym
    )
    
    // Instruction layout.
    
    // Loop alignment constants:
    // want to align loop entry to loopAlign-byte boundary,
    // and willing to insert at most maxLoopPad bytes of NOP to do so.
    // We define a loop entry as the target of a backward jump.
    //
    // gcc uses maxLoopPad = 10 for its 'generic x86-64' config,
    // and it aligns all jump targets, not just backward jump targets.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    // the groundwork for turning a given relocation into an external reloc
    // (to be applied by the external linker). For more on how relocations
    // work in general, see
    //
    //	"Linkers and Loaders", by John R. Levine (Morgan Kaufmann, 1999), ch. 7
    //
    // This is a performance-critical function for the linker; be careful
    // to avoid introducing unnecessary allocations in the main loop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    	name string  "any string is permitted as a tag"
    	_    [4]byte "ceci n'est pas un champ de structure"
    }
    
    // A struct corresponding to a TimeStamp protocol buffer.
    // The tag strings define the protocol buffer field numbers;
    // they follow the convention outlined by the reflect package.
    struct {
    	microsec  uint64 `protobuf:"1"`
    	serverIP6 uint64 `protobuf:"2"`
    }
    </pre>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top