Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Verifying (0.29 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 (0)
  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. 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)
Back to top