Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 922 for uris (0.66 sec)

  1. cmd/kubeadm/app/phases/etcd/local_test.go

        - --experimental-watch-progress-notify-interval=5s
        - --initial-advertise-peer-urls=https://:2380
        - --initial-cluster==https://:2380
        - --key-file=etcd/server.key
        - --listen-client-urls=https://127.0.0.1:2379,https://:2379
        - --listen-metrics-urls=http://127.0.0.1:2381
        - --listen-peer-urls=https://:2380
        - --name=
        - --peer-cert-file=etcd/peer.crt
        - --peer-client-cert-auth=true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. index.yaml

        - storage
        - object-storage
        - s3
        - cluster
        maintainers:
        - email: ******@****.***
          name: MinIO, Inc
        name: minio
        sources:
        - https://github.com/minio/minio
        urls:
        - https://charts.min.io/helm-releases/minio-5.2.0.tgz
        version: 5.2.0
      - apiVersion: v1
        appVersion: RELEASE.2024-03-03T17-50-39Z
        created: "2024-04-28T03:14:12.226017252-07:00"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/GUtilTest.groovy

        }
    
        def "identifies insecure urls"() {
            expect:
            // HTTP is insecure
            !isSecureUrl(new URI("http://example.com"))
            !isSecureUrl(new URI("http://localhost"))
            // Except, we allow 127.0.0.1 to be seen as secure
            isSecureUrl(new URI("http://127.0.0.1"))
    
            // HTTPS is secure
            isSecureUrl(new URI("https://example.com"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  4. src/runtime/conv_wasm_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime_test
    
    import (
    	"testing"
    )
    
    var res int64
    var ures uint64
    
    func TestFloatTruncation(t *testing.T) {
    	testdata := []struct {
    		input      float64
    		convInt64  int64
    		convUInt64 uint64
    		overflow   bool
    	}{
    		// max +- 1
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 06 13:55:00 UTC 2020
    - 3K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-services/src/main/java/org/gradle/internal/daemon/serialization/DaemonSidePayloadClassLoaderFactory.java

        }
    
        private List<URL> urls(List<URI> classpath) {
            List<URL> urls = new ArrayList<>(classpath.size());
            for (URI uri : classpath) {
                try {
                    urls.add(uri.toURL());
                } catch (MalformedURLException e) {
                    throw UncheckedException.throwAsUncheckedException(e);
                }
            }
            return urls;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsWebConfigCQ.java

        }
    
        public void setUrls_Equal(String urls) {
            setUrls_Term(urls, null);
        }
    
        public void setUrls_Equal(String urls, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setUrls_Term(urls, opLambda);
        }
    
        public void setUrls_Term(String urls) {
            setUrls_Term(urls, null);
        }
    
        public void setUrls_Term(String urls, ConditionOptionCall<TermQueryBuilder> opLambda) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 172.1K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/externalcontrolplane-valid-urls-custom-ns.yaml

    Nicole LiHui <******@****.***> 1704680429 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 08 02:20:29 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/audit/validation/validation_test.go

    		}, { // invalid non-resource URLs
    			Level: audit.LevelMetadata,
    			NonResourceURLs: []string{
    				"logs",
    				"/healthz*",
    			},
    		}, { // empty non-resource URLs
    			Level: audit.LevelMetadata,
    			NonResourceURLs: []string{
    				"",
    				"/healthz*",
    			},
    		}, { // invalid non-resource URLs with multi "*"
    			Level: audit.LevelMetadata,
    			NonResourceURLs: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/logging/ConsoleRendererTest.groovy

        @Requires(UnitTestPreconditions.NotWindows)
        def "produces triple-slash file URLs"() {
            expect:
            renderer.asClickableFileUrl(new File("/foo/bar/baz")) == "file:///foo/bar/baz"
        }
    
        @Requires(UnitTestPreconditions.Windows)
        def "produces triple-slash file URLs on Windows"() {
            expect:
            renderer.asClickableFileUrl(new File("C:\\foo\\bar\\baz")) == "file:///C:/foo/bar/baz"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/path/ModelUrlNormalizer.java

    import org.apache.maven.model.building.ModelBuildingRequest;
    
    /**
     * Normalizes URLs to remove the ugly parent references "../" that got potentially inserted by URL adjustment during
     * model inheritance.
     *
     */
    public interface ModelUrlNormalizer {
    
        /**
         * Normalizes the well-known URLs of the specified model.
         *
         * @param model The model whose URLs should be normalized, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top