Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for getSchemes (0.38 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

             * server, they can use http://127.0.0.1
             */
            if ("127.0.0.1".equals(url.getHost())) {
                return true;
            }
    
            final String scheme = url.getScheme();
            return !"http".equalsIgnoreCase(scheme);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

             * server, they can use http://127.0.0.1
             */
            if ("127.0.0.1".equals(url.getHost())) {
                return true;
            }
    
            final String scheme = url.getScheme();
            return !"http".equalsIgnoreCase(scheme);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. src/net/url/url.go

    	}
    	return s
    }
    
    // Maybe rawURL is of the form scheme:path.
    // (Scheme must be [a-zA-Z][a-zA-Z0-9+.-]*)
    // If so, return scheme, path; else return "", rawURL.
    func getScheme(rawURL string) (scheme, path string, err error) {
    	for i := 0; i < len(rawURL); i++ {
    		c := rawURL[i]
    		switch {
    		case 'a' <= c && c <= 'z' || 'A' <= c && c <= 'Z':
    		// do nothing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  4. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    	if err != nil {
    		return fmt.Errorf("create Kubernetes client: %v", err)
    	}
    	return add(mgr, &ReconcileIstioOperator{client: mgr.GetClient(), scheme: mgr.GetScheme(), kubeClient: kubeClient, options: options}, options)
    }
    
    // add adds a new Controller to mgr with r as the reconcile.Reconciler along with options for additional configuration.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    }
    
    func TestURLsCost(t *testing.T) {
    	cases := []struct {
    		ops                []string
    		expectEsimatedCost checker.CostEstimate
    		expectRuntimeCost  uint64
    	}{
    		{
    			ops:                []string{".getScheme()", ".getHostname()", ".getHost()", ".getPort()", ".getEscapedPath()", ".getQuery()"},
    			expectEsimatedCost: checker.CostEstimate{Min: 4, Max: 4},
    			expectRuntimeCost:  4,
    		},
    	}
    
    	for _, tc := range cases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			},
    			schema: objectTypePtr(map[string]schema.Structural{
    				"url": stringType,
    			}),
    			valid: []string{
    				"url('/path').getScheme() == ''",
    				"url('https://example.com/').getScheme() == 'https'",
    				"url('https://example.com:80/').getHost() == 'example.com:80'",
    				"url('https://example.com/').getHost() == 'example.com'",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                    - message: url must have schema one of [http, https, file, oci]
                      rule: 'isURL(self) ? (url(self).getScheme() in ['''', ''http'',
                        ''https'', ''oci'', ''file'']) : (isURL(''http://'' + self) &&
                        url(''http://'' +self).getScheme() in ['''', ''http'', ''https'',
                        ''oci'', ''file''])'
                  verificationKey:
                    type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  8. manifests/charts/base/crds/crd-all.gen.yaml

                    - message: url must have schema one of [http, https, file, oci]
                      rule: 'isURL(self) ? (url(self).getScheme() in ['''', ''http'',
                        ''https'', ''oci'', ''file'']) : (isURL(''http://'' + self) &&
                        url(''http://'' +self).getScheme() in ['''', ''http'', ''https'',
                        ''oci'', ''file''])'
                  verificationKey:
                    type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
Back to top