Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 509 for meisten (0.14 sec)

  1. docs/de/docs/advanced/testing-dependencies.md

    # Testen mit Ersatz für Abhängigkeiten
    
    ## Abhängigkeiten beim Testen überschreiben
    
    Es gibt einige Szenarien, in denen Sie beim Testen möglicherweise eine Abhängigkeit überschreiben möchten.
    
    Sie möchten nicht, dass die ursprüngliche Abhängigkeit ausgeführt wird (und auch keine der möglicherweise vorhandenen Unterabhängigkeiten).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:17:32 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. docs/orchestration/docker-compose/nginx.conf

        }
    
        upstream console {
            ip_hash;
            server minio1:9001;
            server minio2:9001;
            server minio3:9001;
            server minio4:9001;
        }
    
        server {
            listen       9000;
            listen  [::]:9000;
            server_name  localhost;
    
            # To allow special characters in headers
            ignore_invalid_headers off;
            # Allow any size file to be uploaded.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 05 06:32:39 UTC 2022
    - 3K bytes
    - Viewed (0)
  3. src/net/listen_test.go

    	network2, address2 string // second listener
    	xerr               error  // expected error value, nil or other
    }{
    	// Test cases and expected results for the attempting 2nd listen on the same port
    	// 1st listen                2nd listen                 darwin  freebsd  linux  openbsd
    	// ------------------------------------------------------------------------------------
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  4. src/crypto/des/block.go

    	left = (left << 1) | (left >> 31)
    	right = (right << 1) | (right >> 31)
    
    	if decrypt {
    		for i := 0; i < 8; i++ {
    			left, right = feistel(left, right, subkeys[15-2*i], subkeys[15-(2*i+1)])
    		}
    	} else {
    		for i := 0; i < 8; i++ {
    			left, right = feistel(left, right, subkeys[2*i], subkeys[2*i+1])
    		}
    	}
    
    	left = (left << 31) | (left >> 1)
    	right = (right << 31) | (right >> 1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. pkg/istio-agent/health/health_check_test.go

    	d.port = sa.(*syscall.SockaddrInet4).Port
    	return d, nil
    }
    
    func (d *DelayedListener) Address() string {
    	return net.JoinHostPort("127.0.0.1", strconv.Itoa(d.port))
    }
    
    func (d *DelayedListener) Listen() error {
    	if err := syscall.Listen(d.fd, 128); err != nil {
    		return nil
    	}
    	return nil
    }
    
    func (d *DelayedListener) Close() error {
    	if err := syscall.Close(d.fd); err != nil {
    		return nil
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 16:50:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. internal/http/check_port_linux.go

    				}
    			})
    			return nil
    		},
    	}
    
    	ctx, cancel := context.WithTimeout(context.Background(), time.Second)
    	defer cancel()
    
    	l, err := lc.Listen(ctx, "tcp", net.JoinHostPort(host, port))
    	if err != nil {
    		return err
    	}
    
    	// As we are able to listen on this network, the port is not in use.
    	// Close the listener and continue check other networks.
    	return l.Close()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 03 21:12:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_activity_logging_listener.cc

    class XlaActivityLoggingListener final : public XlaActivityListener {
     public:
      Status Listen(
          const XlaAutoClusteringActivity& auto_clustering_activity) override {
        if (!IsEnabled()) {
          VLOG(3) << "Logging XlaAutoClusteringActivity disabled";
          return absl::OkStatus();
        }
    
        return absl::OkStatus();
      }
    
      Status Listen(
          const XlaJitCompilationActivity& jit_compilation_activity) override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_activity_listener.h

      // Called after TensorFlow auto-clusters a graph.
      virtual Status Listen(
          const XlaAutoClusteringActivity& auto_clustering_activity) = 0;
    
      // Called after TensorFlow JIT compiles an XLA cluster.
      virtual Status Listen(
          const XlaJitCompilationActivity& jit_compilation_activity) = 0;
    
      // Called after TensorFlow realizes possible lost performance.
      virtual Status Listen(const XlaOptimizationRemark& optimization_remark) = 0;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 07 11:04:01 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  9. internal/http/check_port_test.go

    	if runtime.GOOS != "linux" {
    		t.Skip()
    	}
    
    	l, err := net.Listen("tcp", "localhost:0") // ask kernel for a free port.
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer l.Close()
    
    	port := l.Addr().(*net.TCPAddr).Port
    
    	testCases := []struct {
    		host        string
    		port        int
    		expectedErr error
    	}{
    		{"", port, fmt.Errorf("listen tcp :%v: bind: address already in use", port)},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 03 21:12:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. docs/de/docs/deployment/index.md

    Ich zeige Ihnen einige der wichtigsten Konzepte, die Sie beim Deployment einer **FastAPI**-Anwendung wahrscheinlich berücksichtigen sollten (obwohl das meiste davon auch für jede andere Art von Webanwendung gilt).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top