Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for pack20 (0.26 sec)

  1. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

                        byte[] bytes = new byte[9]
                        DatagramPacket packet = new DatagramPacket(bytes, bytes.length)
                        receivingSocket.receive(packet)
                        if (selectedAddress == null) {
                            selectedAddress = packet.address
                        }
                        if (selectedAddress == packet.address) {
                            reactOnRequest.run()
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. cni/pkg/iptables/iptables.go

    	//
    	// DESC: If we have a packet mark, set a connmark.
    	iptablesBuilder.AppendRule(iptableslog.UndefinedCommand, ChainInpodPrerouting, iptablesconstants.MANGLE, "-m", "mark",
    		"--mark", inpodMark,
    		"-j", "CONNMARK",
    		"--set-xmark", inpodTproxyMark)
    
    	// Handle healthcheck probes from the host node. In the host netns, before the packet enters the pod, we SNAT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/nettest/nettest.go

    			return nil, err
    		}
    		return net.Listen(network, path)
    	}
    	return nil, fmt.Errorf("%s is not supported on %s/%s", network, runtime.GOOS, runtime.GOARCH)
    }
    
    // NewLocalPacketListener returns a packet listener which listens to a
    // loopback IP address or local file system path.
    //
    // The provided network must be "udp", "udp4", "udp6" or "unixgram".
    func NewLocalPacketListener(network string) (net.PacketConn, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

                    when (filePropertyType) {
                        OutputFilePropertyType.DIRECTORY -> dir(pack(propertyValue))
                        OutputFilePropertyType.DIRECTORIES -> dirs(pack(propertyValue))
                        OutputFilePropertyType.FILE -> file(pack(propertyValue))
                        OutputFilePropertyType.FILES -> files(pack(propertyValue))
                    }
                }.run {
                    withPropertyName(propertyName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/nettest/conntest.go

    		t.Errorf("unexpected Write error: %v", err)
    	}
    }
    
    // chunkedCopy copies from r to w in fixed-width chunks to avoid
    // causing a Write that exceeds the maximum packet size for packet-based
    // connections like "unixpacket".
    // We assume that the maximum packet size is at least 1024.
    func chunkedCopy(w io.Writer, r io.Reader) error {
    	b := make([]byte, 1024)
    	_, err := io.CopyBuffer(struct{ io.Writer }{w}, struct{ io.Reader }{r}, b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/net/net.go

    	}
    	return
    }
    
    // PacketConn is a generic packet-oriented network connection.
    //
    // Multiple goroutines may invoke methods on a PacketConn simultaneously.
    type PacketConn interface {
    	// ReadFrom reads a packet from the connection,
    	// copying the payload into p. It returns the number of
    	// bytes copied into p and the return address that
    	// was on the packet.
    	// It returns the number of bytes read (0 <= n <= len(p))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  7. manifests/charts/ztunnel/templates/daemonset.yaml

                - NET_ADMIN # Required for TPROXY and setsockopt
                - SYS_ADMIN # Required for `setns` - doing things in other netns
                - NET_RAW # Required for RAW/PACKET sockets, TPROXY
              readOnlyRootFilesystem: true
              runAsGroup: 1337
              runAsNonRoot: false
              runAsUser: 0
    {{- if .Values.seLinuxOptions }}
              seLinuxOptions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/capture/run.go

    	}
    
    	if cfg.cfg.InboundInterceptionMode == constants.TPROXY {
    		// save packet mark set by envoy.filters.listener.original_src as connection mark
    		cfg.ruleBuilder.AppendRule(iptableslog.UndefinedCommand, constants.PREROUTING, constants.MANGLE,
    			"-p", constants.TCP, "-m", "mark", "--mark", cfg.cfg.InboundTProxyMark, "-j", "CONNMARK", "--save-mark")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    };
    
    // Converts tf.Const containing variant of type TensorList to a tensor of
    // primitive element types. Each of the individual tensor in the list is
    // converted to an ElementsAttr and then those are packed together using
    // tf.Pack op.
    struct ConvertConst : public OpConversionPattern<TF::ConstOp> {
      using OpConversionPattern::OpConversionPattern;
    
      LogicalResult matchAndRewrite(
          TF::ConstOp op, OpAdaptor adaptor,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  10. src/internal/trace/event.go

    	Batches []ExperimentalBatch
    }
    
    // ExperimentalBatch represents a packet of unparsed data along with metadata about that packet.
    type ExperimentalBatch struct {
    	// Thread is the ID of the thread that produced a packet of data.
    	Thread ThreadID
    
    	// Data is a packet of unparsed data all produced by one thread.
    	Data []byte
    }
    
    // Event represents a single event in the trace.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
Back to top