Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 55 for dev2 (0.07 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Mknod(path string, mode uint32, dev int) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	_, _, e1 := syscall_syscall(libc_mknod_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	// create pod
    	containers := []v1.Container{
    		{
    			VolumeDevices: []v1.VolumeDevice{
    				{
    					Name:       "dswp-test-volume-name",
    					DevicePath: "/dev/sdb",
    				},
    			},
    		},
    	}
    	pod := createPodWithVolume("dswp-test-pod", "dswp-test-volume-name", "block-bound", containers)
    
    	fakePodManager.AddPod(pod)
    
    	podName := util.GetUniquePodName(pod)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  3. gradle/verification-metadata.xml

             <trusted-key id="416952B945B78A34C6C7678562EBFC78FE4156D1" group="org.jruby"/>
             <trusted-key id="47063E8BA7A6450E4A52E7AE466CAED6E0747D50">
                <trusting group="net.java.dev.jna"/>
                <trusting group="org.codehaus.plexus"/>
             </trusted-key>
             <trusted-key id="47504B76CF89C15C0512D9AFE16AB52D79FD224F" group="^com[.]google($|([.].*))" regex="true"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Mknod(path string, mode uint32, dev int) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	_, _, e1 := syscall_syscall(libc_mknod_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/compare/testdata/configdump.json

                                "typed_config": {
                                  "@type": "type.googleapis.com/envoy.extensions.access_loggers.file.v3.FileAccessLog",
                                  "path": "/dev/stdout",
                                  "log_format": {
                                    "text_format_source": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
  6. istioctl/pkg/proxyconfig/testdata/config_dump.json

                "ISTIO_PROXY_SHA": "ee85c5f28702f00621aed895915fca565796b9e4",
                "ISTIO_VERSION": "1.21.0-1226",
                "metadata": {
                  "build.type": "RELEASE",
                  "build.label": "dev",
                  "revision.sha": "ee85c5f28702f00621aed895915fca565796b9e4",
                  "revision.status": "Clean",
                  "ssl.version": "BoringSSL"
                }
              }
            }
          },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
  7. src/runtime/malloc.go

    //   - github.com/cloudwego/frugal
    //   - github.com/cockroachdb/cockroach
    //   - github.com/cockroachdb/pebble
    //   - github.com/ugorji/go/codec
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname mallocgc
    func mallocgc(size uintptr, typ *_type, needzero bool) unsafe.Pointer {
    	if gcphase == _GCmarktermination {
    		throw("mallocgc called with gcphase == _GCmarktermination")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/net/http/request.go

    		// Some users have relied on this truncation to convert a network
    		// address such as Unix domain socket path into a valid, ignored
    		// Host header (see https://go.dev/issue/61431).
    		//
    		// We don't preserve the truncation, because sending an altered
    		// header field opens a smuggling vector. Instead, zero out the
    		// Host header entirely if it isn't valid. (An empty Host is valid;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. src/go/parser/parser.go

    				par.typ = typ
    				par.name = nil
    			}
    		}
    		if tparams {
    			// This is the same error handling as below, adjusted for type parameters only.
    			// See comment below for details. (go.dev/issue/64534)
    			var errPos token.Pos
    			var msg string
    			if named == typed /* same as typed == 0 */ {
    				errPos = p.pos // position error at closing ]
    				msg = "missing type constraint"
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  10. src/time/time_test.go

    		t.Errorf("14th weekday = %q; want %q", got, want)
    	}
    }
    
    func TestReadFileLimit(t *testing.T) {
    	const zero = "/dev/zero"
    	if _, err := os.Stat(zero); err != nil {
    		t.Skip("skipping test without a /dev/zero")
    	}
    	_, err := ReadFile(zero)
    	if err == nil || !strings.Contains(err.Error(), "is too large") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
Back to top