Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for verifying (0.2 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    the file containing certificate authority certificates to use in verifying a presented server certificate.' type: string clientCertificate: description: REQUIRED if mode is `MUTUAL`. type: string credentialName: description: The name of the secret that holds the TLS certs for the client including the CA certificates. type: string insecureSkipVerify: description: '`insecureSkipVerify` specifies whether the proxy should skip verifying the CA signature and SAN for the server certificate corresponding...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/garbagecollector_test.go

    					clientActions: []string{
    						"get /v1, Resource=pods ns=ns1 name=podname1",                             // lookup of child pre-delete
    						"get rbac.authorization.k8s.io/v1beta1, Resource=roles ns=ns1 name=role1", // verifying parent is solid
    					},
    					graphNodes: []*node{makeNode(pod1ns1, withOwners(role1v1beta1)), makeNode(role1v1)},
    				}),
    				// 13,14: teardown
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. src/crypto/x509/x509_test.go

    	if err != nil {
    		t.Fatalf("Failed to parse certificate: %s", err)
    	}
    	// test cert is self-signed
    	if err = cert.CheckSignatureFrom(cert); err == nil {
    		t.Fatalf("Expected error verifying DSA certificate")
    	}
    }
    
    var rsaPSSSelfSignedPEM = `-----BEGIN CERTIFICATE-----
    MIIGHjCCA9KgAwIBAgIBdjBBBgkqhkiG9w0BAQowNKAPMA0GCWCGSAFlAwQCAQUA
    oRwwGgYJKoZIhvcNAQEIMA0GCWCGSAFlAwQCAQUAogMCASAwbjELMAkGA1UEBhMC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          if (begin_idx != 0) return std::nullopt;
    
        // Check if "size" is equal to slice_op.input.shape except
        // for last dimension.
        // It can be done  by verifying the number of elements:
        // i.e., num_input/input_last_dim = num_result/k
        auto input_ty = mlir::dyn_cast_or_null<ShapedType>(value.getType());
        auto result_ty = mlir::dyn_cast<ShapedType>(slice_op.getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (1)
  5. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

      }
    
      @Test
      fun connectViaHttpProxyToHttpsUsingHttpsProxySystemProperty() {
        testConnectViaHttpProxyToHttps(ProxyConfig.HTTPS_PROXY_SYSTEM_PROPERTY)
      }
    
      /**
       * We were verifying the wrong hostname when connecting to an HTTPS site through a proxy.
       * http://b/3097277
       */
      private fun testConnectViaHttpProxyToHttps(proxyConfig: ProxyConfig) {
        val hostnameVerifier = RecordingHostnameVerifier()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  6. cmd/server_test.go

    	decoder := xml.NewDecoder(response.Body)
    	newResponse := &InitiateMultipartUploadResponse{}
    	err = decoder.Decode(newResponse)
    	// expecting the decoding error to be nil.
    	c.Assert(err, nil)
    	// Verifying for Upload ID value to be greater than 0.
    	c.Assert(len(newResponse.UploadID) > 0, true)
    }
    
    // TestObjectMultipartListError - Initiates a NewMultipart upload, uploads parts and validates
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.5.md

    * Fix issue in updating device path when volume is attached multiple times ([#33796](https://github.com/kubernetes/kubernetes/pull/33796), [@jingxu97](https://github.com/jingxu97))
    * ECDSA keys can now be used for signing and verifying service account tokens. ([#33565](https://github.com/kubernetes/kubernetes/pull/33565), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (1)
  8. src/net/http/serve_test.go

    	}
    	minLatency := timeout / 5 * 4
    	if latency < minLatency {
    		return fmt.Errorf("got EOF after %s, want >= %s", latency, minLatency)
    	}
    
    	// Hit the HTTP server successfully again, verifying that the
    	// previous slow connection didn't run our handler.  (that we
    	// get "req=2", not "req=3")
    	r, err = c.Get(ts.URL)
    	if err != nil {
    		return fmt.Errorf("http Get #2: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_control_test.go

    		}
    		if len(pods) != totalPods {
    			t.Fatalf("Expected create pods 2/3, got pods %v", pods)
    		}
    
    		return pods
    	}
    	testCases := []struct {
    		policyType apps.PodManagementPolicyType
    		verifyFn   func(
    			set *apps.StatefulSet,
    			spc *fakeObjectManager,
    			ssc StatefulSetControlInterface,
    			pods []*v1.Pod,
    			totalPods int,
    			selector labels.Selector,
    		) []*v1.Pod
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  10. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    not cohere too strongly, and are of such a Smallness as renders them most susceptible of those Agitations which keep Liquors in a Fluor, are most easily separated and rarified into Vapour, and in the Language of the Chymists, they are volatile, rarifying with an easy Heat, and condensing with Cold. But those which are grosser, and so less susceptible of Agitation, or cohere by a stronger Attraction, are not separated without a stronger Heat, or perhaps not without Fermentation. And these last are...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
Back to top