Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 453 for LISTEN (0.1 sec)

  1. .github/workflows/mint/nginx-4-node.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: Wed May 15 16:52:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. .github/workflows/mint/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: Wed May 15 16:52:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. .github/workflows/mint/nginx-8-node.conf

            server minio4:9001;
            server minio5:9001;
            server minio6:9001;
            server minio7:9001;
            server minio8: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: Wed May 15 16:52:29 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. src/net/ipsock_plan9.go

    	if err != nil {
    		listen.Close()
    		return nil, err
    	}
    	name := string(buf[:n])
    	ctl, err := os.OpenFile(netdir+"/"+fd.net+"/"+name+"/ctl", os.O_RDWR, 0)
    	if err != nil {
    		listen.Close()
    		return nil, err
    	}
    	data, err := os.OpenFile(netdir+"/"+fd.net+"/"+name+"/data", os.O_RDWR, 0)
    	if err != nil {
    		listen.Close()
    		ctl.Close()
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 20:38:53 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top