Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for meisten (0.17 sec)

  1. cmd/test-utils_test.go

    	queryValue := url.Values{}
    	queryValue.Set("uploadId", uploadID)
    	return makeTestTargetURL(endPoint, bucketName, objectName, queryValue)
    }
    
    // return URL for listen bucket notification.
    func getListenNotificationURL(endPoint, bucketName string, prefixes, suffixes, events []string) string {
    	queryValue := url.Values{}
    
    	queryValue["prefix"] = prefixes
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	procgetsockopt                                           = modws2_32.NewProc("getsockopt")
    	proclisten                                               = modws2_32.NewProc("listen")
    	procntohs                                                = modws2_32.NewProc("ntohs")
    	procrecvfrom                                             = modws2_32.NewProc("recvfrom")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    		return fmt.Errorf("body Close = %v", err)
    	}
    	return nil
    }
    
    func newLocalListener(t *testing.T) net.Listener {
    	ln, err := net.Listen("tcp", "127.0.0.1:0")
    	if err != nil {
    		ln, err = net.Listen("tcp6", "[::1]:0")
    	}
    	if err != nil {
    		t.Fatal(err)
    	}
    	return ln
    }
    
    type countCloseReader struct {
    	n *int
    	io.Reader
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                            unique across all servers.
                          type: string
                        port:
                          description: The Port on which the proxy should listen for incoming
                            connections.
                          properties:
                            name:
                              description: Label assigned to the port.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  5. manifests/charts/base/crds/crd-all.gen.yaml

                            unique across all servers.
                          type: string
                        port:
                          description: The Port on which the proxy should listen for incoming
                            connections.
                          properties:
                            name:
                              description: Label assigned to the port.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

        etcd_apiserver_protocol="https"
        etcd_listen_metrics_port="2382"
        etcd_extra_args+=" --listen-metrics-urls=http://${ETCD_LISTEN_CLIENT_IP:-127.0.0.1}:${etcd_listen_metrics_port} "
      fi
    
      if [[ -n "${ETCD_PROGRESS_NOTIFY_INTERVAL:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    	if server := os.Getenv("TEST_BENCH_SERVER"); server != "" {
    		// Server process mode.
    		port := os.Getenv("TEST_BENCH_SERVER_PORT") // can be set by user
    		if port == "" {
    			port = "0"
    		}
    		ln, err := net.Listen("tcp", "localhost:"+port)
    		if err != nil {
    			fmt.Fprintln(os.Stderr, err.Error())
    			os.Exit(1)
    		}
    		fmt.Println(ln.Addr().String())
    		HandleFunc("/", func(w ResponseWriter, r *Request) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top