Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for remoteIov (0.18 sec)

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

    func ProcessVMReadv(pid int, localIov []Iovec, remoteIov []RemoteIovec, flags uint) (n int, err error) {
    	var _p0 unsafe.Pointer
    	if len(localIov) > 0 {
    		_p0 = unsafe.Pointer(&localIov[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    	var _p1 unsafe.Pointer
    	if len(remoteIov) > 0 {
    		_p1 = unsafe.Pointer(&remoteIov[0])
    	} else {
    		_p1 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // would confuse the Go garbage collector.
    type RemoteIovec struct {
    	Base uintptr
    	Len  int
    }
    
    //sys	ProcessVMReadv(pid int, localIov []Iovec, remoteIov []RemoteIovec, flags uint) (n int, err error) = SYS_PROCESS_VM_READV
    //sys	ProcessVMWritev(pid int, localIov []Iovec, remoteIov []RemoteIovec, flags uint) (n int, err error) = SYS_PROCESS_VM_WRITEV
    
    //sys	PidfdOpen(pid int, flags int) (fd int, err error) = SYS_PIDFD_OPEN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  3. .devcontainer/devcontainer.json

    {
      "name": "istio build-tools",
      "image": "gcr.io/istio-testing/build-tools:master-89ff97db972e1ec7d61a7831bf9408f509e17d73",
      "privileged": true,
      "remoteEnv": {
        "USE_GKE_GCLOUD_AUTH_PLUGIN": "True",
        "BUILD_WITH_CONTAINER": "0",
        "CARGO_HOME": "/home/.cargo",
        "RUSTUP_HOME": "/home/.rustup"
      },
      "features": {
        "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {},
        "ghcr.io/mpriscella/features/kind:1": {}
      },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 879 bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/msrpc/srvsvc.idl

    		uint32_t secs;  
    		uint32_t hunds;
    		uint32_t timezone;  
    		uint32_t tinterval;  
    		uint32_t day;  
    		uint32_t month;  
    		uint32_t year;  
    		uint32_t weekday;
    	} TimeOfDayInfo;
    
    	[op(0x1c)]
    	int RemoteTOD([in,string,unique] wchar_t *servername,
    			[out,unique] TimeOfDayInfo *info);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.idl

    		uint32_t secs;  
    		uint32_t hunds;
    		uint32_t timezone;  
    		uint32_t tinterval;  
    		uint32_t day;  
    		uint32_t month;  
    		uint32_t year;  
    		uint32_t weekday;
    	} TimeOfDayInfo;
    
    	[op(0x1c)]
    	int RemoteTOD([in,string,unique] wchar_t *servername,
    			[out,unique] TimeOfDayInfo *info);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  6. pkg/test/framework/components/istio/kube.go

    		return iopFiles{}, err
    	}
    
    	// Generate the istioctl config file for remote cluster
    	i.remoteIOP.file = filepath.Join(workDir, "remote.yaml")
    	if i.remoteIOP.spec, err = initIOPFile(cfg, i.remoteIOP.file, cfg.RemoteClusterValues); err != nil {
    		return iopFiles{}, err
    	}
    
    	// Generate the istioctl config file for config cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java

                weekday = (int)_src.dec_ndr_long();
    
            }
        }
        public static class RemoteTOD extends DcerpcMessage {
    
            public int getOpnum() { return 0x1c; }
    
            public int retval;
            public String servername;
            public TimeOfDayInfo info;
    
            public RemoteTOD(String servername, TimeOfDayInfo info) {
                this.servername = servername;
                this.info = info;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 18.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/dcerpc/msrpc/srvsvc.java

            }
        }
    
        public static class RemoteTOD extends DcerpcMessage {
    
            @Override
            public int getOpnum () {
                return 0x1c;
            }
    
            public int retval;
            public String servername;
            public TimeOfDayInfo info;
    
    
            public RemoteTOD ( String servername, TimeOfDayInfo info ) {
                this.servername = servername;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:40:13 UTC 2019
    - 19.9K bytes
    - Viewed (0)
Back to top