Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 775 for prober3 (0.18 sec)

  1. pkg/istio-agent/health/health_probers.go

    }
    
    type EnvoyProber struct {
    	Config ready.Prober
    }
    
    var _ Prober = &EnvoyProber{}
    
    func (a EnvoyProber) Probe(time.Duration) (ProbeResult, error) {
    	if err := a.Config.Check(); err != nil {
    		return Unhealthy, err
    	}
    	return Healthy, nil
    }
    
    type AggregateProber struct {
    	Probes []Prober
    }
    
    var _ Prober = &AggregateProber{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherProbeRegistry.java

    /**
     * A registry of watch probes. A probe serves as a way to prove that a hierarchy Gradle is interested in
     * indeed receives file system events from the operating system.
     * This is to avoid trusting locations where OSs silently not send any events, despite watchers being registered.
     *
     * When the hierarchy is first registered via {@link #registerProbe(File)}, we don't yet create the probe.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/merge-probers.yaml.injected

    John Howard <******@****.***> 1697239654 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 13 23:27:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. pkg/probe/grpc/grpc_test.go

    	"github.com/stretchr/testify/assert"
    	"google.golang.org/grpc"
    	grpchealth "google.golang.org/grpc/health/grpc_health_v1"
    
    	"k8s.io/kubernetes/pkg/probe"
    )
    
    func TestNew(t *testing.T) {
    	t.Run("Should: implement Probe interface", func(t *testing.T) {
    		s := New()
    		assert.Implements(t, (*Prober)(nil), s)
    	})
    }
    
    type successServerMock struct {
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 20 00:23:53 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/tcp-probes.yaml

    Ralf Pannemans <******@****.***> 1627289097 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 26 08:44:57 UTC 2021
    - 607 bytes
    - Viewed (0)
  6. cmd/kubelet/app/plugins_providers.go

    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/csimigration"
    	"k8s.io/kubernetes/pkg/volume/portworx"
    )
    
    type probeFn func() []volume.VolumePlugin
    
    func appendPluginBasedOnFeatureFlags(plugins []volume.VolumePlugin, inTreePluginName string,
    	featureGate featuregate.FeatureGate, pluginInfo pluginInfo) ([]volume.VolumePlugin, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/plugins_providers.go

    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/csimigration"
    	"k8s.io/kubernetes/pkg/volume/portworx"
    )
    
    type probeFn func() []volume.VolumePlugin
    
    func appendPluginBasedOnFeatureFlags(logger klog.Logger, plugins []volume.VolumePlugin, inTreePluginName string, featureGate featuregate.FeatureGate, pluginInfo pluginInfo) ([]volume.VolumePlugin, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/hello-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
    - 956 bytes
    - Viewed (0)
  9. pkg/kubelet/prober/common_test.go

    	).(*manager)
    	// Don't actually execute probes.
    	m.prober.exec = fakeExecProber{probe.Success, nil}
    	return m
    }
    
    func newTestWorker(m *manager, probeType probeType, probeSpec v1.Probe) *worker {
    	pod := getTestPod()
    	setTestProbe(pod, probeType, probeSpec)
    	return newWorker(m, probeType, pod, pod.Spec.Containers[0])
    }
    
    type fakeExecProber struct {
    	result probe.Result
    	err    error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 16:57:26 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/values.yaml

          privileged: false
    
          # The number of successive failed probes before indicating readiness failure.
          readinessFailureThreshold: 4
    
          # The initial delay for readiness probes in seconds.
          readinessInitialDelaySeconds: 0
    
          # The period between readiness probes.
          readinessPeriodSeconds: 15
    
          # Enables or disables a startup probe.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top