Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 253 for PROBE (0.33 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    		t.Run(tt.desc, func(t *testing.T) {
    			tt.probe.state.Store(&envelopekmsv2.State{})
    			_ = tt.probe.check(ctx)
    			if tt.probe.ttl != tt.wantTTL {
    				t.Fatalf("want ttl %v, got ttl %v", tt.wantTTL, tt.probe.ttl)
    			}
    		})
    	}
    }
    
    func TestKMSv2InvalidKeyID(t *testing.T) {
    	ctx := testContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  2. tests/integration/pilot/grpc_probe_test.go

    			if !t.Clusters().Default().MinKubeVersion(23) {
    				t.Skip("gRPC probe not supported")
    			}
    
    			ns := namespace.NewOrFail(t, t, namespace.Config{Prefix: "grpc-probe", Inject: true})
    			// apply strict mtls
    			t.ConfigKube(t.Clusters().Configs()...).YAML(ns.Name(), `
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: grpc-probe-mtls
    spec:
      mtls:
        mode: STRICT`).ApplyOrFail(t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. 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)
  4. pkg/istio-agent/health/health_probers_test.go

    					Path:   "/test/health/check",
    					Port:   port,
    					Host:   "127.0.0.1",
    					Scheme: "http",
    				}, false)
    
    			if tt.statusCode == -1 {
    				server.Close()
    			}
    
    			got, err := httpProber.Probe(time.Second)
    			if got != tt.expectedProbeResult || (err == nil && tt.expectedError != nil) || (err != nil && tt.expectedError == nil) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 14 19:26:09 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetector.java

        private JvmInstallationMetadata getMetadataFromInstallation(File jdkPath) {
            File tmpDir = temporaryFileProvider.createTemporaryDirectory("jvm", "probe");
            File probe = writeProbeClass(tmpDir);
            ExecHandleBuilder exec = execHandleFactory.newExec();
            exec.setWorkingDir(probe.getParentFile());
            exec.executable(javaExecutable(jdkPath));
            try {
                ByteArrayOutputStream out = new ByteArrayOutputStream();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 02:32:22 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/enumDeclArg.kt

    enum class Enum(val i: Int) {
        TEST(<expr>45</expr>),
        PROBE(45),
        SONDE(45)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 87 bytes
    - Viewed (0)
  7. pkg/kubelet/prober/results/results_manager.go

    */
    
    package results
    
    import (
    	"sync"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    // Manager provides a probe results cache and channel of updates.
    type Manager interface {
    	// Get returns the cached result for the container with the given ID.
    	Get(kubecontainer.ContainerID) (Result, bool)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 13 07:12:54 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  8. istioctl/pkg/workload/testdata/vmconfig/ipv4/workloadgroup.yaml

            proxyMetadata:
              # this should override the value from the global meshconfig
              PROXY_CONFIG_ANNOT_VALUE: bar
        labels: {}
      template:
        ports: {}
        serviceAccount: vm-serviceaccount
      probe:
        httpGet:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 377 bytes
    - Viewed (0)
  9. releasenotes/notes/fix-healthcheck-host-override.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 45632
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 10 17:23:40 UTC 2023
    - 167 bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/enumDecl.kt

    <expr>enum class Enum(val i: Int) {
        TEST(45),
        PROBE(45),
        SONDE(45)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 87 bytes
    - Viewed (0)
Back to top