Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 121 for Verifying (0.19 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics.go

    			Name: "etcd_request_duration_seconds",
    			Help: "Etcd request latency in seconds for each operation and object type.",
    			// Etcd request latency in seconds for each operation and object type.
    			// This metric is used for verifying etcd api call latencies SLO
    			// keep consistent with apiserver metric 'requestLatencies' in
    			// staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. tests/integration/telemetry/api/dashboard_test.go

    						if !cl.IsPrimary() && d.requirePrimary {
    							// Skip verification of dashboards that won't be present on non primary(remote) clusters.
    							continue
    						}
    						t.Logf("Verifying %s for cluster %s", d.name, cl.Name())
    						cm, err := cl.Kube().CoreV1().ConfigMaps(ist.Settings().TelemetryNamespace).Get(
    							context.TODO(), d.configmap, metav1.GetOptions{})
    						if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. src/net/ip_test.go

    func TestIPAddrFamily(t *testing.T) {
    	for _, tt := range ipAddrFamilyTests {
    		if af := tt.in.To4() != nil; af != tt.af4 {
    			t.Errorf("verifying IPv4 address family for %q = %v, want %v", tt.in, af, tt.af4)
    		}
    		if af := len(tt.in) == IPv6len && tt.in.To4() == nil; af != tt.af6 {
    			t.Errorf("verifying IPv6 address family for %q = %v, want %v", tt.in, af, tt.af6)
    		}
    	}
    }
    
    var ipAddrScopeTests = []struct {
    	scope func(IP) bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    func hasPort(s string) bool { return strings.LastIndex(s, ":") > strings.LastIndex(s, "]") }
    
    func idnaASCII(v string) (string, error) {
    	// TODO: Consider removing this check after verifying performance is okay.
    	// Right now punycode verification, length checks, context checks, and the
    	// permissible character tests are all omitted. It also prevents the ToASCII
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. pkg/kubeapiserver/authenticator/config.go

    	ServiceAccountTokenGetter   serviceaccount.ServiceAccountTokenGetter
    	SecretsWriter               typedv1core.SecretsGetter
    	BootstrapTokenAuthenticator authenticator.Token
    	// ClientCAContentProvider are the options for verifying incoming connections using mTLS and directly assigning to users.
    	// Generally this is the CA bundle file used to authenticate client certificates
    	// If this value is nil, then mutual TLS is disabled.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. Makefile

    	@(env bash $(PWD)/docs/site-replication/run-ssec-object-replication-with-compression.sh)
    
    verify: install-race ## verify minio various setups
    	@echo "Verifying build with race"
    	@(env bash $(PWD)/buildscripts/verify-build.sh)
    
    verify-healing: install-race ## verify healing and replacing disks with minio binary
    	@echo "Verify healing build with race"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/security/first-steps.md

    You can try it already in the interactive docs:
    
    <img src="/img/tutorial/security/image03.png">
    
    We are not verifying the validity of the token yet, but that's a start already.
    
    ## Recap
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:48:20 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. cmd/peer-rest-client.go

    // permanently. The only way to restore the connection is at the xl-sets layer by xlsets.monitorAndConnectEndpoints()
    // after verifying format.json
    func (client *peerRESTClient) call(method string, values url.Values, body io.Reader, length int64) (respBody io.ReadCloser, err error) {
    	return client.callWithContext(GlobalContext, method, values, body, length)
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/upgrade/apply.go

    	// Start with the basics, verify that the cluster is healthy and get the configuration from the cluster (using the ConfigMap)
    	klog.V(1).Infoln("[upgrade/apply] verifying health of cluster")
    	klog.V(1).Infoln("[upgrade/apply] retrieving configuration from cluster")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/embedding_pipelining.mlir

      }
      func.func private @while_cond(%arg0: tensor<i32>) -> tensor<i1> {
        %0 = "tf.Less"(%arg0, %arg0) : (tensor<i32>, tensor<i32>) -> tensor<i1>
        return %0 : tensor<i1>
      }
    }
    
    // -----
    // A test verifying too many TPUReplicateMetadataOp ops. Same logic tests too many TPUCompilationResultOp ops.
    module {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 33.1K bytes
    - Viewed (0)
Back to top