Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,069 for dev2 (0.05 sec)

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

    # Regression test for https://go.dev/issue/47215 and https://go.dev/issue/50183:
    # A missing $CC caused the C dependencies of the net
    # package to appear stale, and it could not be rebuilt due to a missing $CC.
    
    [!cgo] skip
    
    # This test may start with the runtime/cgo package already stale.
    # Explicitly rebuild it to ensure that it is cached.
    # (See https://go.dev/issue/50892.)
    #
    # If running in non-short mode, explicitly vary CGO_CFLAGS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation_test.go

    			user: &user.DefaultInfo{
    				Name:   "dev",
    				Groups: []string{"sa-impersonater"},
    			},
    			impersonationUser: "tester",
    			expectedUser: &user.DefaultInfo{
    				Name:   "dev",
    				Groups: []string{"sa-impersonater"},
    			},
    			expectedCode: http.StatusForbidden,
    		},
    		{
    			name: "allowed-sa-impersonating",
    			user: &user.DefaultInfo{
    				Name:   "dev",
    				Groups: []string{"sa-impersonater"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 06 17:13:16 UTC 2021
    - 17.2K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/04-vuln.yml

      - type: markdown
        attributes:
          value: "Please answer these questions before submitting your issue. Thanks! To add a new vulnerability to the Go vulnerability database (https://vuln.go.dev), see https://go.dev/s/vulndb-report-new. To report an issue about a report, see https://go.dev/s/vulndb-report-feedback."
      - type: textarea
        id: govulncheck-version
        attributes:
          label: govulncheck version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. README.md

    #### Binary Distributions
    
    Official binary distributions are available at https://go.dev/dl/.
    
    After downloading a binary release, visit https://go.dev/doc/install
    for installation instructions.
    
    #### Install From Source
    
    If a binary distribution is not available for your combination of
    operating system and architecture, visit
    https://go.dev/doc/install/source
    for source installation instructions.
    
    ### Contributing
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 20:14:56 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/dev_zos.go

    package unix
    
    // Major returns the major component of a z/OS device number.
    func Major(dev uint64) uint32 {
    	return uint32((dev >> 16) & 0x0000FFFF)
    }
    
    // Minor returns the minor component of a z/OS device number.
    func Minor(dev uint64) uint32 {
    	return uint32(dev & 0x0000FFFF)
    }
    
    // Mkdev returns a z/OS device number generated from the given major and minor
    // components.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 830 bytes
    - Viewed (0)
  6. doc/next/7-ports.md

    ## Ports {#ports}
    
    ### Darwin {#darwin}
    
    <!-- go.dev/issue/64207 -->
    As [announced](go1.22#darwin) in the Go 1.22 release notes,
    Go 1.23 requires macOS 11 Big Sur or later;
    support for previous versions has been discontinued.
    
    ### Linux {#linux}
    
    <!-- go.dev/issue/67001 -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. test/fixedbugs/bug453.go

    package main
    
    func formula() float32 {
    	mA := [1]float32{1.0}
    	det1 := mA[0]
    	det2 := mA[0]
    	det3 := mA[0]
    	det4 := mA[0]
    	det5 := mA[0]
    	det6 := mA[0]
    	det7 := mA[0]
    	det8 := mA[0]
    	det9 := mA[0]
    	det10 := mA[0]
    	det11 := mA[0]
    	det12 := mA[0]
    
    	return det1 + det2*det3 +
    		det4*det5 + det6*det7 +
    		det8*det9 + det10*det11 +
    		det12
    }
    
    func main() {
    	x := formula()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 703 bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods_linux_test.go

    				{
    					PathInContainer: "/dev/sda",
    					PathOnHost:      "/dev/sda",
    					Permissions:     "mrw",
    				},
    				{
    					PathInContainer: "/dev/xvda",
    					PathOnHost:      "/dev/disk/by-path/diskPath",
    					Permissions:     "r",
    				},
    				{
    					PathInContainer: "/dev/xvdb",
    					PathOnHost:      "/dev/disk/by-id/diskUuid",
    					Permissions:     "mrw",
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 18:00:59 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/netlink_linux.go

    // Only the addresses of the current family are returned.
    // IPv6 link-local and loopback addresses are excluded.
    func (h *netlinkHandle) GetLocalAddresses(dev string) (sets.Set[string], error) {
    	ifi, err := net.InterfaceByName(dev)
    	if err != nil {
    		return nil, fmt.Errorf("Could not get interface %s: %v", dev, err)
    	}
    	addr, err := ifi.Addrs()
    	if err != nil {
    		return nil, fmt.Errorf("Can't get addresses from %s: %v", ifi.Name, err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 30 16:18:49 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/12-telemetry.yml

          do they measure, and why is it important to collect them?
          Note that uploaded data must not carry sensitive user information.
          See [go.dev/doc/telemetry#proposals](https://go.dev/doc/telemetry#proposals)
          for more details on telemetry proposals.
      validations:
        required: true
    - type: input
      attributes:
        label: Proposed Config Change
        description: >
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 19:58:26 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top