Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for datagram (0.25 sec)

  1. src/net/sock_posix.go

    	//   datagram connection, known as a datagram listener
    	//
    	// - An endpoint holder that opens an active stream or a
    	//   destination-specific datagram connection, known as a
    	//   dialer
    	//
    	// - An endpoint holder that opens the other connection, such
    	//   as talking to the protocol stack inside the kernel
    	//
    	// For stream and datagram listeners, they will only require
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. src/net/internal/socktest/switch_posix.go

    	default:
    		return fmt.Sprintf("%d", family)
    	}
    }
    
    func typeString(sotype int) string {
    	var s string
    	switch sotype & 0xff {
    	case syscall.SOCK_STREAM:
    		s = "stream"
    	case syscall.SOCK_DGRAM:
    		s = "datagram"
    	case syscall.SOCK_RAW:
    		s = "raw"
    	case syscall.SOCK_SEQPACKET:
    		s = "seqpacket"
    	default:
    		s = fmt.Sprintf("%d", sotype&0xff)
    	}
    	if flags := uint(sotype) & ^uint(0xff); flags != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1K bytes
    - Viewed (0)
  3. src/net/sockopt_bsd.go

    	return os.NewSyscallError("setsockopt", syscall.SetsockoptInt(s, syscall.SOL_SOCKET, syscall.SO_REUSEADDR, 1))
    }
    
    func setDefaultMulticastSockopts(s int) error {
    	// Allow multicast UDP and raw IP datagram sockets to listen
    	// concurrently across multiple listeners.
    	if err := syscall.SetsockoptInt(s, syscall.SOL_SOCKET, syscall.SO_REUSEADDR, 1); err != nil {
    		return os.NewSyscallError("setsockopt", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/doc/c4/README.adoc

    image::images/C4_2_Container.svg[]
    
    ## Level 3: Component diagram
    
    The following diagram detail each container components and gets closer to how the Kotlin DSL is organized.
    It should be useful enough to know where to find what in the Kotlin DSL source code.
    
    image::images/C4_3_Component.svg[]
    
    NOTE: This diagram diverges from the C4 Model because the scope is the whole Kotlin DSL system instead of having one diagram per container.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 19 00:01:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/doc/c4/build.gradle.kts

    }
    
    defaultTasks = listOf("generateDiagrams")
    
    plantuml {
        options {
            outputDir = file("images")
        }
        diagrams {
            for (diagram in listOf("C4_1_Context", "C4_2_Container", "C4_3_Component")) {
                register(diagram) {
                    sourceFile = file("$diagram.puml")
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 380 bytes
    - Viewed (0)
  6. pkg/proxy/nftables/README.md

    represent netfilter hooks. More detailed versions of this diagram can be seen at
    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
    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. internal/s3select/message.go

    	"encoding/binary"
    	"fmt"
    	"hash/crc32"
    	"net/http"
    	"strconv"
    	"sync/atomic"
    	"time"
    )
    
    // A message is in the format specified in
    // https://docs.aws.amazon.com/AmazonS3/latest/API/images/s3select-frame-diagram-frame-overview.png
    // hence the calculation is made accordingly.
    func totalByteLength(headerLength, payloadLength int) int {
    	return 4 + 4 + 4 + headerLength + payloadLength + 4
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 30 15:26:43 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/README.md

    1 Try to break down the whole graph into several subgraphs based on hardwares'
    capabilities. See the diagram below, let's say our desired target backends are
    "GPU" and "CPU", and currently "C" is not supported on "GPU", but the rest are
    supported by "GPU". So we will end up with 3 subgraphs as shown in the diagram.
    
    ![Target Annotation](g3doc/images/target_annotation.png)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  9. samples/ambient-argo/README.md

    ## Repository Layout
    
    The meta-application.yaml file is an App-of-Apps that references all other applications needed for running Istio and the demo application via ArgoCD.  The diagram below demonstrates the deployment mechanism for each part of the platform.
    
    ![architecture diagram][layout]
    
    ## Principles
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. architecture/platforms.md

      -- Note: this file contains a generated diagram. Use `./gradlew :architectureDoc` to generate 
      -->
    
    # Gradle platform architecture
    
    Gradle is arranged into coarse-grained components called "architecture modules" and "platforms".
    See [ADR4](standards/0004-use-a-platform-architecture.md) for a definition of these terms.
    
    The diagram below shows the current set of architecture modules and platforms:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top