Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 241 for probing (0.22 sec)

  1. pkg/probe/tcp/tcp_test.go

    	}
    
    	tests := []struct {
    		host string
    		port int
    
    		expectedStatus probe.Result
    		expectedError  error
    	}{
    		// A connection is made and probing would succeed
    		{tHost, tPort, probe.Success, nil},
    		// No connection can be made and probing would fail
    		{tHost, -1, probe.Failure, nil},
    	}
    
    	prober := New()
    	for i, tt := range tests {
    		status, _, err := prober.Probe(tt.host, tt.port, 1*time.Second)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 18:23:33 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  2. releasenotes/notes/agent-probe-keepalives.yaml

    upgradeNotes:
    - title: Health Probes will no longer re-use connections
      content: |
        Health probes using the istio-agent [health probe rewrite](https://istio.io/latest/docs/ops/configuration/mesh/app-health-check/) will
        now no longer re-use connections for the probe. This behavior was changed to match probing behavior of Kubernetes',
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 07 20:06:21 UTC 2021
    - 963 bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/SmallCharMatcher.java

    import com.google.common.base.CharMatcher.NamedFastMatcher;
    import java.util.BitSet;
    
    /**
     * An immutable version of CharMatcher for smallish sets of characters that uses a hash table with
     * linear probing to check for matches.
     *
     * @author Christopher Swenson
     */
    @GwtIncompatible // no precomputation is done in GWT
    @ElementTypesAreNonnullByDefault
    final class SmallCharMatcher extends NamedFastMatcher {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/SmallCharMatcher.java

    import com.google.common.base.CharMatcher.NamedFastMatcher;
    import java.util.BitSet;
    
    /**
     * An immutable version of CharMatcher for smallish sets of characters that uses a hash table with
     * linear probing to check for matches.
     *
     * @author Christopher Swenson
     */
    @GwtIncompatible // no precomputation is done in GWT
    @ElementTypesAreNonnullByDefault
    final class SmallCharMatcher extends NamedFastMatcher {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. LICENSES/vendor/github.com/xiang90/probing/LICENSE

    = vendor/github.com/xiang90/probing licensed under: =
    
    The MIT License (MIT)
    
    Copyright (c) 2015 Xiang Li
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  6. pkg/kubelet/prober/worker.go

    		w.resultsManager.Set(w.containerID, results.Success, w.pod)
    		// Stop probing at this point.
    		return false
    	}
    
    	// Probe disabled for InitialDelaySeconds.
    	if int32(time.Since(c.State.Running.StartedAt.Time).Seconds()) < w.spec.InitialDelaySeconds {
    		return true
    	}
    
    	if c.Started != nil && *c.Started {
    		// Stop probing for startup once container has started.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 01:28:06 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. pkg/probe/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package probe contains utilities for health probing, as well as health status information.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 719 bytes
    - Viewed (0)
  8. pkg/probe/probe.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package probe
    
    // Result is a string used to handle the results for probing container readiness/liveness
    type Result string
    
    const (
    	// Success Result
    	Success Result = "success"
    	// Warning Result. Logically success, but with additional debugging information attached.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:20:50 UTC 2019
    - 966 bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/metrics/metrics.go

    var (
    	typeTag = monitoring.CreateLabel("type")
    
    	// StartupTime measures the time it takes for the agent to get ready Note: This
    	// is dependent on readiness probes. This means our granularity is correlated to
    	// the probing interval.
    	startupTime = monitoring.NewGauge(
    		"startup_duration_seconds",
    		"The time from the process starting to being marked ready.",
    	)
    
    	// scrapeErrors records total number of failed scrapes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. pkg/kubelet/prober/prober_manager.go

    		Help:           "Duration in seconds for a probe response.",
    		StabilityLevel: metrics.ALPHA,
    	},
    	[]string{"probe_type",
    		"container",
    		"pod",
    		"namespace"},
    )
    
    // Manager manages pod probing. It creates a probe "worker" for every container that specifies a
    // probe (AddPod). The worker periodically probes its assigned container and caches the results. The
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top