Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 359 for prober (0.16 sec)

  1. pkg/probe/dialer_windows.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package probe
    
    import (
    	"net"
    	"syscall"
    )
    
    // ProbeDialer returns a dialer optimized for probes to avoid lingering sockets on TIME-WAIT state.
    // The dialer reduces the TIME-WAIT period to 1 seconds instead of the OS default of 60 seconds.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 16:57:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/https-probes.yaml

    John Howard <******@****.***> 1597787025 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 984 bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/merge-probers.yaml

    dwq <******@****.***> 1673232888 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 09 02:54:48 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/tcp-probes.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. internal/http/dial_linux.go

    				// TCP starts sending keepalive probes
    				_ = syscall.SetsockoptInt(fd, syscall.IPPROTO_TCP, syscall.TCP_KEEPIDLE, 15)
    
    				// Number of probes.
    				// ~ cat /proc/sys/net/ipv4/tcp_keepalive_probes (defaults to 9, we reduce it to 5)
    				_ = syscall.SetsockoptInt(fd, syscall.IPPROTO_TCP, syscall.TCP_KEEPCNT, 5)
    
    				// Wait time after successful probe in seconds.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.8K bytes
    - Viewed (3)
  6. src/net/ipsock_plan9.go

    	"io/fs"
    	"os"
    	"syscall"
    )
    
    // probe probes IPv4, IPv6 and IPv4-mapped IPv6 communication
    // capabilities.
    //
    // Plan 9 uses IPv6 natively, see ip(3).
    func (p *ipStackCapabilities) probe() {
    	p.ipv4Enabled = probe(netdir+"/iproute", "4i")
    	p.ipv6Enabled = probe(netdir+"/iproute", "6i")
    	if p.ipv4Enabled && p.ipv6Enabled {
    		p.ipv4MappedIPv6Enabled = true
    	}
    }
    
    func probe(filename, query string) bool {
    	var file *file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 20:38:53 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherUpdater.java

     *     See {@link org.gradle.internal.watch.registry.impl.NonHierarchicalFileWatcherUpdater}.</dd>
     *
     *     <dt>probed hierarchies</dt>
     *     <dd>The list of file system hierarchies that we've activated a file system probe for.
     *     We list every hierarchy here, even if there are ones nested inside others.
     *     See {@link FileWatcherProbeRegistry}.</dd>
     * </dl>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. releasenotes/notes/33734.yaml

    kind: feature
    
    area: traffic-management
    issue: []
    
    releaseNotes:
    - |
      '**Improved** TCP probes now working as expected: When using TCP probes with older versions of istio the check was always successful, even if the application didn't open the port.'
    
    upgradeNotes:
      - title: TCP probes now working as expected
        content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 26 08:44:57 UTC 2021
    - 842 bytes
    - Viewed (0)
  9. releasenotes/notes/drop-tcp-probe.yaml

    John Howard <******@****.***> 1682620617 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 27 18:36:57 UTC 2023
    - 139 bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/hello-probes.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top