Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 534 for Opened (0.12 sec)

  1. pkg/probe/tcp/tcp.go

    type tcpProber struct{}
    
    // Probe checks that a TCP connection to the address can be opened.
    func (pr tcpProber) Probe(host string, port int, timeout time.Duration) (probe.Result, string, error) {
    	return DoTCPProbe(net.JoinHostPort(host, strconv.Itoa(port)), timeout)
    }
    
    // DoTCPProbe checks that a TCP socket to the address can be opened.
    // If the socket can be opened, it returns Success
    // If the socket fails to open, it returns Failure.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 16:57:41 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. src/runtime/internal/wasitest/testdata/tcpecho.go

    	}
    	if err := c.(*net.TCPConn).CloseWrite(); err != nil {
    		return err
    	}
    	return c.Close()
    }
    
    func findListener() (net.Listener, error) {
    	// We start looking for pre-opened sockets at fd=3 because 0, 1, and 2
    	// are reserved for stdio. Pre-opened directors also start at fd=3, so
    	// we skip fds that aren't sockets. Once we reach EBADF we know there
    	// are no more pre-opens.
    	for preopenFd := uintptr(3); ; preopenFd++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:12:41 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/counter/countertest/countertest.go

    	"golang.org/x/telemetry/internal/telemetry"
    )
    
    var (
    	openedMu sync.Mutex
    	opened   bool
    )
    
    // SupportedPlatform reports if this platform supports Open()
    const SupportedPlatform = !telemetry.DisabledOnPlatform
    
    func isOpen() bool {
    	openedMu.Lock()
    	defer openedMu.Unlock()
    	return opened
    }
    
    // Open enables telemetry data writing to disk.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/core-plugins/plugin_reference.adoc

    <<eclipse_plugin.adoc#eclipse_plugin,Eclipse>>::
    Generates Eclipse project files for the build that can be opened by the IDE. This set of plugins can also be used to fine tune http://projects.eclipse.org/projects/tools.buildship[Buildship's] import process for Gradle builds.
    
    <<idea_plugin.adoc#idea_plugin,IntelliJ IDEA>>::
    Generates IDEA project files for the build that can be opened by the IDE. It can also be used to fine tune IDEA's import process for Gradle builds.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/AbstractCrossProcessCacheAccess.java

        /**
         * Opens this cache access instance when the cache is opened. State lock is held while this method is called.
         */
        public abstract void open();
    
        /**
         * Closes this cache access instance when the cache is opened. State lock is held while this method is called.
         */
        @Override
        public abstract void close();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/net/internal/socktest/switch.go

    }
    
    // A Stat represents a per-cookie socket statistics.
    type Stat struct {
    	Family   int // address family
    	Type     int // socket type
    	Protocol int // protocol number
    
    	Opened    uint64 // number of sockets opened
    	Connected uint64 // number of sockets connected
    	Listened  uint64 // number of sockets listened
    	Accepted  uint64 // number of sockets accepted
    	Closed    uint64 // number of sockets closed
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testcshared/testdata/main2.c

      // give a chance to get opened.
      for (i = 0; i < 200; i++) {
        n = read(fd, buf, sizeof buf);
        if (n >= 0)
          break;
        if (errno != EBADF && errno != EINVAL) {
          fprintf(stderr, "BUG: read: %s\n", strerror(errno));
          return 2;
        }
    
        // An EBADF error means that the shared library has not opened the
        // descriptor yet.
        ts.tv_sec = 0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/SmbPipeResource.java

        /**
         * The pipe should be opened read-only.
         */
    
        public static final int PIPE_TYPE_RDONLY = SmbConstants.O_RDONLY;
    
        /**
         * The pipe should be opened only for writing.
         */
    
        public static final int PIPE_TYPE_WRONLY = SmbConstants.O_WRONLY;
    
        /**
         * The pipe should be opened for both reading and writing.
         */
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  9. .github/workflows/issues.yaml

    # @format
    
    name: Issue Workflow
    
    on:
      issues:
        types:
          - opened
    
    jobs:
      add-to-project:
        name: Add issue to project
        runs-on: ubuntu-latest
        steps:
          - uses: actions/add-to-project@v0.5.0
            with:
              project-url: https://github.com/orgs/miniohq/projects/2
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 11 07:02:00 UTC 2024
    - 338 bytes
    - Viewed (0)
  10. .github/workflows/issue-metadata.yml

    name: Check issues metadata
    
    on:
      issues:
        types: [ opened, unlabeled, closed ]
    
    permissions: {}
    
    jobs:
      check_issue_metadata:
        permissions:
          issues: write
        runs-on: ubuntu-latest
        steps:
          # Check that issues have proper metadata: labels and milestone
          # https://github.com/gradle/issue-management-action/blob/main/src/issue-metadata.ts
          - uses: gradle/issue-management-action@v1
            with:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 463 bytes
    - Viewed (0)
Back to top