Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,705 for url (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/url.go

    */
    
    package cel
    
    import (
    	"fmt"
    	"net/url"
    	"reflect"
    
    	"github.com/google/cel-go/cel"
    	"github.com/google/cel-go/checker/decls"
    	"github.com/google/cel-go/common/types"
    	"github.com/google/cel-go/common/types/ref"
    )
    
    // URL provides a CEL representation of a URL.
    type URL struct {
    	*url.URL
    }
    
    var (
    	URLObject = decls.NewObjectType("kubernetes.URL")
    	typeValue = types.NewTypeValue("kubernetes.URL")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. src/html/template/url.go

    // explicitly indicate that such a URL is expected and safe by encapsulating it
    // in a template.URL value.
    func urlFilter(args ...any) string {
    	s, t := stringify(args...)
    	if t == contentTypeURL {
    		return s
    	}
    	if !isSafeURL(s) {
    		return "#" + filterFailsafe
    	}
    	return s
    }
    
    // isSafeURL is true if s is a relative URL or if URL has a protocol in
    // (http, https, mailto).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/url.go

    package analysisflags
    
    import (
    	"fmt"
    	"net/url"
    
    	"golang.org/x/tools/go/analysis"
    )
    
    // ResolveURL resolves the URL field for a Diagnostic from an Analyzer
    // and returns the URL. See Diagnostic.URL for details.
    func ResolveURL(a *analysis.Analyzer, d analysis.Diagnostic) (string, error) {
    	if d.URL == "" && d.Category == "" && a.URL == "" {
    		return "", nil // do nothing
    	}
    	raw := d.URL
    	if d.URL == "" && d.Category != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 901 bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/url/-Url.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    @file:Suppress("ktlint:standard:filename")
    
    package okhttp3.internal.url
    
    import java.nio.charset.Charset
    import okhttp3.internal.parseHexDigit
    import okio.Buffer
    
    internal val HEX_DIGITS =
      charArrayOf('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F')
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/web/url.go

    package web
    
    import (
    	"errors"
    	"net/url"
    	"path/filepath"
    	"strings"
    )
    
    // TODO(golang.org/issue/32456): If accepted, move these functions into the
    // net/url package.
    
    var errNotAbsolute = errors.New("path is not absolute")
    
    func urlToFilePath(u *url.URL) (string, error) {
    	if u.Scheme != "file" {
    		return "", errors.New("non-file URL")
    	}
    
    	checkAbs := func(path string) (string, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:43:51 UTC 2019
    - 2K bytes
    - Viewed (0)
  6. src/net/url/url.go

    		// validly-escaped path.
    		url.setPath(resolvePath(ref.EscapedPath(), ""))
    		return &url
    	}
    	if ref.Opaque != "" {
    		url.User = nil
    		url.Host = ""
    		url.Path = ""
    		return &url
    	}
    	if ref.Path == "" && !ref.ForceQuery && ref.RawQuery == "" {
    		url.RawQuery = u.RawQuery
    		if ref.Fragment == "" {
    			url.Fragment = u.Fragment
    			url.RawFragment = u.RawFragment
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  7. pkg/url/url.go

    	DocsVersion = fmt.Sprintf("%s%s", "v", baseVersion)
    
    	// DocsURL is a base docs URL for istio.io
    	DocsURL = fmt.Sprintf("%s%s%s", BaseURL, DocsVersion, "/docs/")
    
    	// #####################################
    	// Operations related URLs for istio.io
    	// #####################################
    
    	// OpsURL is a base URL for operations related docs
    	OpsURL = fmt.Sprintf("%s%s", DocsURL, "ops/")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 11:12:37 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/performance/build-scan-url.png

    build-scan-url.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  9. releasenotes/notes/wasm-cache-with-tag-stripped-url.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: extensibility
    issue: []
    releaseNotes:
      - |
        **Improved** Use tag-stripped URL + checksum as a Wasm module cachekey, and the tagged URL is separately cached. 
        This may increase the chance of cache hit (e.g., trying to find the same image with both of the tagged and digest URLs.)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 23 08:37:23 UTC 2024
    - 402 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/library/urls.go

    //
    //	url(<string>) <URL>
    //
    // Examples:
    //
    //	url('https://user:******@****.***:80/path?query=val#fragment') // returns a URL
    //	url('/absolute-path') // returns a URL
    //	url('https://a:b:c/') // error
    //	url('../relative-path') // error
    //
    // isURL
    //
    // Returns true if a string is a valid URL. The URL must be an absolute URI or an absolute path.
    //
    //	isURL( <string>) <bool>
    //
    // Examples:
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top