Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for fromlen (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	r1, _, e1 := syscall.Syscall9(procWSARecvFrom.Addr(), 9, uintptr(s), uintptr(unsafe.Pointer(bufs)), uintptr(bufcnt), uintptr(unsafe.Pointer(recvd)), uintptr(unsafe.Pointer(flags)), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)), uintptr(unsafe.Pointer(overlapped)), uintptr(unsafe.Pointer(croutine)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Maps.java

        }
    
        @Override
        public SortedMap<K, V2> subMap(@ParametricNullness K fromKey, @ParametricNullness K toKey) {
          return transformEntries(fromMap().subMap(fromKey, toKey), transformer);
        }
    
        @Override
        public SortedMap<K, V2> tailMap(@ParametricNullness K fromKey) {
          return transformEntries(fromMap().tailMap(fromKey), transformer);
        }
      }
    
      @GwtIncompatible // NavigableMap
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Maps.java

        }
    
        @Override
        public SortedMap<K, V2> subMap(@ParametricNullness K fromKey, @ParametricNullness K toKey) {
          return transformEntries(fromMap().subMap(fromKey, toKey), transformer);
        }
    
        @Override
        public SortedMap<K, V2> tailMap(@ParametricNullness K fromKey) {
          return transformEntries(fromMap().tailMap(fromKey), transformer);
        }
      }
    
      @GwtIncompatible // NavigableMap
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    // Supports following actions:
    // - restart (restarts all the MinIO instances in a setup)
    // - stop (stops all the MinIO instances in a setup)
    // - freeze (freezes all incoming S3 API calls)
    // - unfreeze (unfreezes previously frozen S3 API calls)
    func (a adminAPIHandlers) ServiceHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	vars := mux.Vars(r)
    	action := vars["action"]
    
    	var serviceSig serviceSignal
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    	// build -n. We tried using a file that does not exist, but that fails on
    	// systems with GCC version 4.2.1; that is the last GPLv2 version of GCC,
    	// so some systems have frozen on it. Now we pass an empty file on stdin,
    	// which should work at least for GCC and clang.
    	//
    	// If the argument is "-Wl,", then it is testing the linker. In that case,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top