Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 356 for pack20 (0.19 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    // where a round consists of virtually transmitting one bit from every
    // non-empty queue in the router (regardless of which queue holds the
    // packet that is really being transmitted at the moment); in this
    // conception, a packet is considered to be "in" its queue until the
    // packet’s transmission is finished. For our problem, we can define a
    // round to be giving one nanosecond of CPU to every non-empty queue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/locklistener/FileLockCommunicatorTest.groovy

            communicator.getPort() == -1
        }
    
        def "can receive lock id and type"() {
            FileLockPacketPayload receivedPayload
    
            start {
                def packet = communicator.receive()
                receivedPayload = communicator.decode(packet)
            }
    
            poll {
                assert communicator.getPort() != -1 && receivedPayload == null
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/TaskOutputPackagingTypeBenchmark.java

        @Param({"tar.snappy", "tar.snappy.commons", "tar.snappy.dain"})
        String packer;
    
        @Param({"direct", "buffered"})
        String accessor;
    
        @Override
        protected String getPackerName() {
            return packer;
        }
    
        @Override
        protected String getAccessorName() {
            return accessor;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. releasenotes/notes/36566.yaml

    kind: bug-fix
    area: traffic-management
    issue:
      - https://github.com/istio/istio/pull/36566
    releaseNotes:
      - |
        **Fixed** an issue that sidecar iptables will cause intermittent connection reset due to the out of window packet.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 05 19:45:07 UTC 2022
    - 360 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/vcstest/svn/test1-svn-git.txt

    mkdir .git/refs/remotes/origin
    echo 'ref: refs/remotes/origin/master'
    cp stdout .git/refs/remotes/origin/HEAD
    unquote '# pack-refs with: peeled fully-peeled \n7f800d2ac276dd7042ea0e8d7438527d236fd098 refs/remotes/origin/master\n'
    cp stdout .git/packed-refs
    git branch --set-upstream-to=origin/master
    
    git add pkg/pkg.go
    at 2017-09-22T11:41:28-04:00
    git commit -a -m 'add pkg'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/README.md

    https://en.wikipedia.org/wiki/Netfilter#/media/File:Netfilter-packet-flow.svg and
    https://wiki.nftables.org/wiki-nftables/index.php/Netfilter_hooks but note that in the the
    standard version of this diagram, the top two boxes are squished together into "local
    process" which (a) fails to make a few important distinctions, and (b) makes it look like
    a single packet can go `input` -> "local process" -> `output`, which it cannot. Note also
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. src/net/resolverdialfunc_test.go

    	return a.rbuf.Read(p)
    }
    
    func (a *resolverFuncConn) Write(packet []byte) (n int, err error) {
    	if len(packet) < 2 {
    		return 0, fmt.Errorf("short write of %d bytes; want 2+", len(packet))
    	}
    	reqLen := int(packet[0])<<8 | int(packet[1])
    	req := packet[2:]
    	if len(req) != reqLen {
    		return 0, fmt.Errorf("packet declared length %d doesn't match body length %d", reqLen, len(req))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/DefaultFileLockContentionHandler.java

                }
    
                private void doRun() {
                    while (true) {
                        DatagramPacket packet;
                        FileLockPacketPayload payload;
                        try {
                            packet = communicator.receive();
                            payload = communicator.decode(packet);
                        } catch (GracefullyStoppedException e) {
                            return;
                        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/profile/proto.go

    func encodeUint64(b *buffer, tag int, x uint64) {
    	// append varint to b.data
    	encodeVarint(b, uint64(tag)<<3)
    	encodeVarint(b, x)
    }
    
    func encodeUint64s(b *buffer, tag int, x []uint64) {
    	if len(x) > 2 {
    		// Use packed encoding
    		n1 := len(b.data)
    		for _, u := range x {
    			encodeVarint(b, u)
    		}
    		n2 := len(b.data)
    		encodeLength(b, tag, n2-n1)
    		n3 := len(b.data)
    		copy(b.tmp[:], b.data[n2:n3])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/TaskOutputPackagingTarBenchmark.java

    public class TaskOutputPackagingTarBenchmark extends AbstractTaskOutputPackagingBenchmark {
        @Param({"tar", "tar.commons", "tar.jtar"})
        String packer;
    
        @Param({"direct", "buffered"})
        String accessor;
    
        @Override
        protected String getPackerName() {
            return packer;
        }
    
        @Override
        protected String getAccessorName() {
            return accessor;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top