Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 106 of 106 for nack (0.04 sec)

  1. gradlew

                esac
            then
                arg=$( cygpath --path --ignore --mixed "$arg" )
            fi
            # Roll the args list around exactly as many times as the number of
            # args, so each arg winds up back in the position where it started, but
            # possibly modified.
            #
            # NB: a `for` loop captures its iteration list before it begins, so
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. src/internal/coverage/encodecounter/encode.go

    	// record position
    	off, err := ws.Seek(0, io.SeekCurrent)
    	if err != nil {
    		return fmt.Errorf("error seeking in patchSegmentHeader: %v", err)
    	}
    	// seek back to start so that we can update the segment header
    	if _, err := ws.Seek(0, io.SeekStart); err != nil {
    		return fmt.Errorf("error seeking in patchSegmentHeader: %v", err)
    	}
    	if cfw.debug {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. src/internal/poll/fd_wasip1.go

    		atomic.StoreUint32(&fd.Filetype, uint32(fileType))
    	}
    
    	if fileType == syscall.FILETYPE_DIRECTORY {
    		// If the file descriptor is opened on a directory, we reset the readdir
    		// cookie when seeking back to the beginning to allow reusing the file
    		// descriptor to scan the directory again.
    		if offset == 0 && whence == 0 {
    			fd.Dircookie = 0
    			return 0, nil
    		} else {
    			return 0, syscall.EINVAL
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:14:02 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/sync/mutex.go

    	// the tail of the wait queue.
    	//
    	// If a waiter receives ownership of the mutex and sees that either
    	// (1) it is the last waiter in the queue, or (2) it waited for less than 1 ms,
    	// it switches mutex back to normal operation mode.
    	//
    	// Normal mode has considerably better performance as a goroutine can acquire
    	// a mutex several times in a row even if there are blocked waiters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/runtime/runtime.go

    	for _, socket := range knownCRISockets {
    		if isSocket(socket) {
    			foundCRISockets = append(foundCRISockets, socket)
    		}
    	}
    
    	switch len(foundCRISockets) {
    	case 0:
    		// Fall back to the default socket if no CRI is detected, we can error out later on if we need it
    		return constants.DefaultCRISocket, nil
    	case 1:
    		// Precisely one CRI found, use that
    		return foundCRISockets[0], nil
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. src/net/ipsock_posix.go

    //     both IPv6 and IPv4-mapped IPv6 communication capabilities,
    //     or does not support IPv4, we use a dual stack, AF_INET6 and
    //     IPV6_V6ONLY=0, wildcard address listen. The dual stack
    //     wildcard address listen may fall back to an IPv6-only,
    //     AF_INET6 and IPV6_V6ONLY=1, wildcard address listen.
    //     Otherwise we prefer an IPv4-only, AF_INET, wildcard address
    //     listen.
    //
    //   - A listen for a wildcard communication domain, "tcp" or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top