Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 922 for uris (0.04 sec)

  1. ci/official/envs/nightly_upload

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    # IMPORTANT: trailing slash is required on GCS URIs, as it tells gcloud to
    # pretend the path is a directory.
    # 1. Upload nightlies
    TFCI_ARTIFACT_FINAL_GCS_ENABLE=1
    TFCI_ARTIFACT_FINAL_GCS_SA_PATH="${KOKORO_KEYSTORE_DIR}/73361_tensorflow_release_binary_uploader_service_account"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 19 19:07:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. pkg/controller/certificates/authority/authority_test.go

    				BasicConstraintsValid: true,
    			},
    		},
    		{
    			name:   "uri sans",
    			policy: PermissiveSigningPolicy{TTL: time.Hour, Now: nowFunc},
    			cr: x509.CertificateRequest{
    				URIs: []*url.URL{uri},
    			},
    			want: x509.Certificate{
    				URIs:                  []*url.URL{uri},
    				NotBefore:             now,
    				NotAfter:              now.Add(1 * time.Hour),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 23 19:36:11 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  3. pkg/spiffe/spiffe.go

    		}
    		if id == 0 {
    			peerCert = cert
    		} else {
    			intCertPool.AddCert(cert)
    		}
    	}
    	if len(peerCert.URIs) != 1 {
    		return fmt.Errorf("peer certificate does not contain 1 URI type SAN, detected %d", len(peerCert.URIs))
    	}
    	trustDomain, err := GetTrustDomainFromURISAN(peerCert.URIs[0].String())
    	if err != nil {
    		return err
    	}
    	rootCertPool, ok := v.certPools[trustDomain]
    	if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/HttpScriptPluginIntegrationSpec.groovy

                assert "${server.uri}/external.gradle" == buildscript.sourceURI as String
    """
    
            buildFile << """
                apply from: '$server.uri/external.gradle'
                defaultTasks 'doStuff'
    """
    
            then:
            fails(":help")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 30 08:26:30 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. pkg/test/echo/server/forwarder/config.go

    			if err != nil {
    				fwLog.Errorf("Failed to parse client certificate: %v", err)
    			}
    			fwLog.Debugf("Using client certificate [%s] issued by %s", cert.SerialNumber, cert.Issuer)
    			for _, uri := range cert.URIs {
    				fwLog.Debugf("  URI SAN: %s", uri)
    			}
    		}
    		// nolint: unparam
    		return func(info *tls.CertificateRequestInfo) (*tls.Certificate, error) {
    			fwLog.Debugf("Peer asking for client certificate")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/web/url_windows_test.go

    var urlTests = []struct {
    	url          string
    	filePath     string
    	canonicalURL string // If empty, assume equal to url.
    	wantErr      string
    }{
    	// Examples from https://blogs.msdn.microsoft.com/ie/2006/12/06/file-uris-in-windows/:
    
    	{
    		url:      `file://laptop/My%20Documents/FileSchemeURIs.doc`,
    		filePath: `\\laptop\My Documents\FileSchemeURIs.doc`,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:43:51 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  7. docs/features/caching.md

    ```kotlin
    cache.evictAll()
    ```
    
    Removing individual items can be done using the urls iterator.
    This would be typical after a user initiates a force refresh by a pull to refresh type action.
    
    ```java
        val urlIterator = cache.urls()
        while (urlIterator.hasNext()) {
          if (urlIterator.next().startsWith("https://www.google.com/")) {
            urlIterator.remove()
          }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/install/SecureFileDownloader.java

                                    ". This URI was reached as a redirect from " + source + ". This is not supported, make sure no insecure URIs appear in the redirect");
                        });
            } catch (URISyntaxException e) {
                throw new InvalidUserCodeException("Cannot extract host information from specified URI " + source);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. src/crypto/x509/x509.go

    		ip := rawIP.To4()
    		if ip == nil {
    			ip = rawIP
    		}
    		rawValues = append(rawValues, asn1.RawValue{Tag: nameTypeIP, Class: 2, Bytes: ip})
    	}
    	for _, uri := range uris {
    		uriStr := uri.String()
    		if err := isIA5String(uriStr); err != nil {
    			return nil, err
    		}
    		rawValues = append(rawValues, asn1.RawValue{Tag: nameTypeURI, Class: 2, Bytes: []byte(uriStr)})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  10. src/crypto/x509/name_constraints_test.go

    			template.EmailAddresses = append(template.EmailAddresses, name[6:])
    
    		case strings.HasPrefix(name, "uri:"):
    			uri, err := url.Parse(name[4:])
    			if err != nil {
    				return nil, fmt.Errorf("cannot parse URI %q: %s", name[4:], err)
    			}
    			template.URIs = append(template.URIs, uri)
    
    		case strings.HasPrefix(name, "unknown:"):
    			// This is a special case for testing unknown
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top