Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 398 for pread (0.22 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/SocketConnection.java

            }
    
            @Override
            public int read() throws IOException {
                int nread = read(readBuffer, 0, 1);
                if (nread <= 0) {
                    return nread;
                }
                return readBuffer[0];
            }
    
            @Override
            public int read(byte[] dest, int offset, int max) throws IOException {
                if (max == 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), func Pathconf(string, int) (int, error)
    pkg syscall (freebsd-386-cgo), func Pipe([]int) error
    pkg syscall (freebsd-386-cgo), func Pread(int, []uint8, int64) (int, error)
    pkg syscall (freebsd-386-cgo), func Pwrite(int, []uint8, int64) (int, error)
    pkg syscall (freebsd-386-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 18 04:36:59 UTC 2013
    - 1.9M bytes
    - Viewed (0)
  3. releasenotes/notes/helm_chart_pilot_topologyspreadconstraints.yaml

    issue:
    - 42938
    
    docs: []
    
    releaseNotes:
    - |
      **Added** values to the Istiod Helm chart for configuring [topologySpreadConstraints](https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/) on the Deployment. Can be used for better placement of istiod workloads.
    
    upgradeNotes: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 11 06:41:50 UTC 2023
    - 448 bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/GraphBuilder.java

     * graph.putEdge("bread", "bread");
     * graph.putEdge("chocolate", "peanut butter");
     * graph.putEdge("peanut butter", "jelly");
     *
     * // Building an immutable graph
     * ImmutableGraph<String> immutableGraph =
     *     GraphBuilder.undirected()
     *         .allowsSelfLoops(true)
     *         .<String>immutable()
     *         .putEdge("bread", "bread")
     *         .putEdge("chocolate", "peanut butter")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  5. src/net/http/httputil/persist.go

    	cc.mu.Lock()
    	defer cc.mu.Unlock()
    	return cc.nwritten - cc.nread
    }
    
    // Read reads the next response from the wire. A valid response might be
    // returned together with an [ErrPersistEOF], which means that the remote
    // requested that this be the last request serviced. Read can be called
    // concurrently with [ClientConn.Write], but not with another Read.
    func (cc *ClientConn) Read(req *http.Request) (resp *http.Response, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/imagelocality/image_locality.go

    // This heuristic aims to mitigate the undesirable "node heating problem", i.e., pods get assigned to the same or
    // a few nodes due to image locality.
    func scaledImageScore(imageState *framework.ImageStateSummary, totalNumNodes int) int64 {
    	spread := float64(imageState.NumNodes) / float64(totalNumNodes)
    	return int64(float64(imageState.Size) * spread)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. releasenotes/notes/helm_chart_gateway_topologyspreadconstraints.yaml

    issue: []
    
    docs: []
    
    releaseNotes:
    - |
      **Added** values to the Istio Gateway Helm chart for configuring [topologySpreadConstraints](https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/) on the Deployment. Can be used for better placement of Istio gateway workloads.
    
    upgradeNotes: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 10 20:53:09 UTC 2022
    - 457 bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_illumos_amd64.go

    //go:build illumos && amd64
    
    package unix
    
    import (
    	"unsafe"
    )
    
    //go:cgo_import_dynamic libc_readv readv "libc.so"
    //go:cgo_import_dynamic libc_preadv preadv "libc.so"
    //go:cgo_import_dynamic libc_writev writev "libc.so"
    //go:cgo_import_dynamic libc_pwritev pwritev "libc.so"
    //go:cgo_import_dynamic libc_accept4 accept4 "libsocket.so"
    
    //go:linkname procreadv libc_readv
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. src/io/multi_test.go

    	}))
    
    	// chain a bunch of multiReaders
    	for i := 0; i < 100; i++ {
    		r = MultiReader(r)
    	}
    
    	r.Read(nil) // don't care about errors, just want to check the call-depth for Read
    
    	if readDepth != myDepth+2 { // 2 should be multiReader.Read and fakeReader.Read
    		t.Errorf("multiReader did not flatten chained multiReaders: expected readDepth %d, got %d",
    			myDepth+2, readDepth)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:32 UTC 2022
    - 10K bytes
    - Viewed (0)
  10. src/time/sys_windows.go

    			err = syscall.ENOENT
    		}
    		return 0, err
    	}
    	return uintptr(fd), nil
    }
    
    func read(fd uintptr, buf []byte) (int, error) {
    	return syscall.Read(syscall.Handle(fd), buf)
    }
    
    func closefd(fd uintptr) {
    	syscall.Close(syscall.Handle(fd))
    }
    
    func preadn(fd uintptr, buf []byte, off int) error {
    	whence := seekStart
    	if off < 0 {
    		whence = seekEnd
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 08 17:19:07 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top