Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 618 for sock (0.37 sec)

  1. api/go1.11.txt

    pkg syscall (netbsd-arm-cgo), func Pipe2([]int, int) error
    pkg syscall (openbsd-386), const SOCK_CLOEXEC = 32768
    pkg syscall (openbsd-386), const SOCK_CLOEXEC ideal-int
    pkg syscall (openbsd-386), const SOCK_NONBLOCK = 16384
    pkg syscall (openbsd-386), const SOCK_NONBLOCK ideal-int
    pkg syscall (openbsd-386), const SYS_ACCEPT4 = 93
    pkg syscall (openbsd-386), const SYS_ACCEPT4 ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 22 03:48:56 GMT 2018
    - 25K bytes
    - Viewed (2)
  2. common/scripts/run.sh

    # following command only
    # shellcheck disable=SC2086
    "${CONTAINER_CLI}" run \
        --rm \
        "${DOCKER_RUN_OPTIONS[@]}" \
        --init \
        --sig-proxy=true \
        ${DOCKER_SOCKET_MOUNT:--v /var/run/docker.sock:/var/run/docker.sock} \
        $CONTAINER_OPTIONS \
        --env-file <(env | grep -v ${ENV_BLOCKLIST}) \
        -e IN_BUILD_CONTAINER=1 \
        -e TZ="${TIMEZONE:-$TZ}" \
        --mount "type=bind,source=${MOUNT_SOURCE},destination=/work" \
    Shell Script
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Aug 11 02:34:11 GMT 2023
    - 2.2K bytes
    - Viewed (1)
  3. samples/unixdomainsockets/src/main/java/okhttp3/unixdomainsockets/ClientAndServer.java

     * cannot do TLS over domain sockets.
     */
    public class ClientAndServer {
      public void run() throws Exception {
        File socketFile = new File("/tmp/ClientAndServer.sock");
        socketFile.delete(); // Clean up from previous runs.
    
        MockWebServer server = new MockWebServer();
        server.setServerSocketFactory(new UnixDomainServerSocketFactory(socketFile));
    Java
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Dec 24 03:46:30 GMT 2018
    - 2.1K bytes
    - Viewed (0)
  4. manifests/charts/ztunnel/templates/daemonset.yaml

            - mountPath: /var/run/secrets/istio
              name: istiod-ca-cert
            - mountPath: /var/run/secrets/tokens
              name: istio-token
            - mountPath: /var/run/ztunnel
              name: cni-ztunnel-sock-dir
            {{- with .Values.volumeMounts }}
              {{- toYaml . | nindent 8 }}
            {{- end }}
          priorityClassName: system-node-critical
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 5K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/cni-watcher_test.go

    		netServer:  fs,
    	}
    
    	handlers := setupHandlers(ctx, client, dpServer, "istio-system")
    
    	// We are not going to start the server, so the sockpath is irrelevant
    	pluginServer := startCniPluginServer(ctx, "/tmp/test.sock", handlers, dpServer)
    
    	// label the namespace
    	labelsPatch := []byte(fmt.Sprintf(`{"metadata":{"labels":{"%s":"%s"}}}`,
    		constants.DataplaneMode, constants.DataplaneModeAmbient))
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Feb 02 08:18:40 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  6. cni/pkg/cmd/root.go

    	registerStringParameter(constants.CNIEventAddress, "/var/run/istio-cni/pluginevent.sock",
    		"The UDS server address which CNI plugin will forward ambient pod creation events to")
    	registerStringParameter(constants.ZtunnelUDSAddress, "/var/run/ztunnel/ztunnel.sock", "The UDS server address which ztunnel will connect to")
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  7. api/go1.3.txt

    pkg syscall (freebsd-386), const SIGLIBRT = 33
    pkg syscall (freebsd-386), const SIGLIBRT Signal
    pkg syscall (freebsd-386), const SOCK_CLOEXEC = 268435456
    pkg syscall (freebsd-386), const SOCK_CLOEXEC ideal-int
    pkg syscall (freebsd-386), const SOCK_NONBLOCK = 536870912
    pkg syscall (freebsd-386), const SOCK_NONBLOCK ideal-int
    pkg syscall (freebsd-386), const SO_VENDOR = 2147483648
    pkg syscall (freebsd-386), const SO_VENDOR ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  8. manifests/charts/istio-cni/templates/daemonset.yaml

                - mountPath: /host/var/run/netns
                  mountPropagation: HostToContainer
                  name: cni-netns-dir
                - mountPath: /var/run/ztunnel
                  name: cni-ztunnel-sock-dir
                {{ end }}
              resources:
    {{- if .Values.cni.resources }}
    {{ toYaml .Values.cni.resources | trim | indent 12 }}
    {{- else }}
    {{ toYaml .Values.global.defaultResources | trim | indent 12 }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Feb 28 17:29:38 GMT 2024
    - 9.4K bytes
    - Viewed (0)
  9. cni/pkg/log/uds_test.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    func TestUDSLog(t *testing.T) {
    	// Start UDS log server
    	udsSockDir := t.TempDir()
    	udsSock := filepath.Join(udsSockDir, "cni.sock")
    	logger := NewUDSLogger()
    	pluginLog.SetOutputLevel(log.DebugLevel) // this will be configured by global.logging.level
    	stop := make(chan struct{})
    	defer close(stop)
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Mar 16 00:20:01 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  10. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SOCK_CLOEXEC = 268435456
    pkg syscall (freebsd-arm64), const SOCK_CLOEXEC ideal-int
    pkg syscall (freebsd-arm64), const SOCK_MAXADDRLEN = 255
    pkg syscall (freebsd-arm64), const SOCK_MAXADDRLEN ideal-int
    pkg syscall (freebsd-arm64), const SOCK_NONBLOCK = 536870912
    pkg syscall (freebsd-arm64), const SOCK_NONBLOCK ideal-int
    pkg syscall (freebsd-arm64), const SOCK_RDM = 4
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
Back to top