Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 509 for meisten (0.21 sec)

  1. hack/run-prometheus-on-etcd-scrapes.sh

    	     awk '{ print $2 }' | awk -F/ '{ print $1 }')
    fi
    
    echo
    echo "Historic metrics will be at http://\${any_local_address}:9091/\${any_path}"
    echo "Prometheus will listen on port 9090 and scrape historic metrics from http://${IPADDR}:9091/metrics"
    sleep 1
    echo
    
    cat > "$CONFIG" <<EOF
    global:
      scrape_interval: 30s
    
    scrape_configs:
    
    - job_name: local
      static_configs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 08 20:28:05 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/sds/server.go

    					setUpUdsOK = false
    				}
    			}
    			if s.grpcWorkloadListener != nil {
    				sdsServiceLog.Infof("Starting SDS server for workload certificates, will listen on %q", security.WorkloadIdentitySocketPath)
    				if err = s.grpcWorkloadServer.Serve(s.grpcWorkloadListener); err != nil {
    					sdsServiceLog.Errorf("SDS grpc server for workload proxies failed to start: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 17:44:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. src/net/udpsock_posix.go

    			return sl.ListenConfig.Control(network, address, c)
    		}
    	}
    	fd, err := internetSocket(ctx, sl.network, laddr, nil, syscall.SOCK_DGRAM, 0, "listen", ctrlCtxFn)
    	if err != nil {
    		return nil, err
    	}
    	return newUDPConn(fd), nil
    }
    
    func (sl *sysListener) listenMulticastUDP(ctx context.Context, ifi *Interface, gaddr *UDPAddr) (*UDPConn, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/extra-models.md

    Um das zu tun, verwenden Sie Pythons Standard-Typhinweis <a href="https://docs.python.org/3/library/typing.html#typing.Union" class="external-link" target="_blank">`typing.Union`</a>:
    
    !!! note "Hinweis"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/testing/testserver.go

    	return nil
    }
    
    func createLocalhostListenerOnFreePort() (net.Listener, int, error) {
    	ln, err := net.Listen("tcp", "127.0.0.1:0")
    	if err != nil {
    		return nil, 0, err
    	}
    
    	// get port
    	tcpAddr, ok := ln.Addr().(*net.TCPAddr)
    	if !ok {
    		ln.Close()
    		return nil, 0, fmt.Errorf("invalid listen address: %q", ln.Addr().String())
    	}
    
    	return ln, tcpAddr.Port, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 9K bytes
    - Viewed (1)
  6. pkg/util/filesystem/util_windows_test.go

    	}
    	testFile := generatePipeName(4)
    	pipeln, err := winio.ListenPipe(testFile, &winio.PipeConfig{SecurityDescriptor: "D:P(A;;GA;;;BA)(A;;GA;;;SY)"})
    	defer pipeln.Close()
    
    	require.NoErrorf(t, err, "Failed to listen on named pipe for test purposes: %v", err)
    	result, err := IsUnixDomainSocket(testFile)
    	assert.NoError(t, err, "Unexpected error from IsUnixDomainSocket.")
    	assert.False(t, result, "Unexpected result: true from IsUnixDomainSocket.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:10:26 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/deprecated_insecure_serving.go

    	Listener net.Listener
    	// optional server name for log messages
    	Name string
    }
    
    // Serve starts an insecure http server with the given handler. It fails only if
    // the initial listen call fails. It does not block.
    func (s *DeprecatedInsecureServingInfo) Serve(handler http.Handler, shutdownTimeout time.Duration, stopCh <-chan struct{}) error {
    	insecureServer := &http.Server{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 27 15:58:45 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  8. pkg/log/uds_test.go

    }
    
    func TestUDSLog(t *testing.T) {
    	srv := udsServer{messages: make([]string, 0)}
    	udsDir := t.TempDir()
    	socketPath := filepath.Join(udsDir, "test.sock")
    	unixListener, err := net.Listen("unix", socketPath)
    	if err != nil {
    		t.Fatalf("failed to create uds listener: %v", err)
    	}
    	loggingOptions := DefaultOptions()
    	loggingOptions.JSONEncoding = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 01:05:12 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. cni/pkg/install/install_test.go

    			}
    
    			// Copy a valid config file into tempDir
    			if err := file.AtomicCopy(filepath.Join("testdata", c.validConfigFilename), tempDir, c.cniConfigFilename); err != nil {
    				t.Fatal(err)
    			}
    
    			// Listen for isReady to be set to true
    			ticker := time.NewTicker(500 * time.Millisecond)
    			defer ticker.Stop()
    			readyChan := make(chan bool)
    			go func(ctx context.Context, tick <-chan time.Time) {
    				for {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. samples/extauthz/cmd/extauthz/main.go

    	}
    }
    
    func (s *ExtAuthzServer) startGRPC(address string, wg *sync.WaitGroup) {
    	defer func() {
    		wg.Done()
    		log.Printf("Stopped gRPC server")
    	}()
    
    	listener, err := net.Listen("tcp", address)
    	if err != nil {
    		log.Fatalf("Failed to start gRPC server: %v", err)
    		return
    	}
    	// Store the port for test only.
    	s.grpcPort <- listener.Addr().(*net.TCPAddr).Port
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 15 18:23:48 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top