Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 130 for uris (0.06 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// AuditPolicyRuleEvaluator makes the decision of whether and how to audit log a request.
    	AuditPolicyRuleEvaluator audit.PolicyRuleEvaluator
    	// ExternalAddress is the host name to use for external (public internet) facing URLs (e.g. Swagger)
    	// Will default to a value based on secure serving info and available ipv4 IPs.
    	ExternalAddress string
    
    	// TracerProvider can provide a tracer, which records spans for distributed tracing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  2. internal/config/config.go

    		n += len(text)
    	}
    	if err := scanner.Err(); err != nil {
    		return false, err
    	}
    	return dynOnly, nil
    }
    
    // RedactSensitiveInfo - removes sensitive information
    // like urls and credentials from the configuration
    func (c Config) RedactSensitiveInfo() Config {
    	nc := c.Clone()
    
    	for configName, configVals := range nc {
    		for _, helpKV := range HelpSubSysMap[configName] {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    //
    // A Transport is a low-level primitive for making HTTP and HTTPS requests.
    // For high-level functionality, such as cookies and redirects, see [Client].
    //
    // Transport uses HTTP/1.1 for HTTP URLs and either HTTP/1.1 or HTTP/2
    // for HTTPS URLs, depending on whether the server supports HTTP/2,
    // and how the Transport is configured. The [DefaultTransport] supports HTTP/2.
    // To explicitly enable HTTP/2 on a transport, use golang.org/x/net/http2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    		for _, cfg := range jwtPolicies {
    			rules := cfg.Spec.(*v1beta1.RequestAuthentication).JwtRules
    			for _, r := range rules {
    				if uri := r.GetJwksUri(); len(uri) > 0 {
    					jwksInfo, err := security.ParseJwksURI(uri)
    					if err == nil {
    						hosts.Insert(jwksInfo.Hostname.String())
    					}
    				}
    			}
    		}
    	}
    	return hosts
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	//   - "/hea*" is illegal
    	//   - "/hea" is legal but matches nothing
    	//   - "/hea/*" also matches nothing
    	//   - "/healthz/*" matches all per-component health checks.
    	// "*" matches all non-resource urls. if it is present, it must be the only entry.
    	// +listType=set
    	// Required.
    	NonResourceURLs []string `json:"nonResourceURLs" protobuf:"bytes,6,rep,name=nonResourceURLs"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    |<<#sec:applying_plugins_buildscript,The `buildscript` block in the build file>>
    a|
    [source,kotlin]
    ----
    buildscript {
      repositories {
        maven {
          url = uri("https://plugins.gradle.org/m2/")
        }
      }
      dependencies {
        classpath("org.barfuin.gradle.taskinfo:gradle-taskinfo:2.1.0")
      }
    }
    // Apply the plugin defined in the buildscript block
    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. .bazelrc

    # BEGIN TF REMOTE BUILD EXECUTION OPTIONS
    # Options when using remote execution
    # WARNING: THESE OPTIONS WONT WORK IF YOU DO NOT HAVE PROPER AUTHENTICATION AND PERMISSIONS
    
    # Allow creation of resultstore URLs for any bazel invocation
    build:resultstore --google_default_credentials
    build:resultstore --bes_backend=buildeventservice.googleapis.com
    build:resultstore --bes_instance_name="tensorflow-testing"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    metadata:
      name: route
    spec:
      gateways:
      - gateway
      hosts:
      - "*"
      http:
      - match:
        - uri:
            exact: /allowed
        route:
        - destination:
            host: "{{.Destination}}"
            port:
              number: {{.PortAllow}}
      - match:
        - uri:
            exact: /deny
        route:
        - destination:
            host: "{{.Destination}}"
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

        users:
          - system:kube-controller-manager
          - system:cloud-controller-manager
        verbs: ["get", "list"]
        resources:
          - group: "metrics.k8s.io"
    
      # Don't log these read-only URLs.
      - level: None
        nonResourceURLs:
          - /healthz*
          - /version
          - /swagger*
    
      # Don't log events requests because of performance impact.
      - level: None
        resources:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. docs/en/docs/release-notes.md

    ### Docs
    
    * ✏ Tweak wording to clarify `docs/en/docs/project-generation.md`. PR [#5930](https://github.com/tiangolo/fastapi/pull/5930) by [@chandra-deb](https://github.com/chandra-deb).
    * ✏ Update Pydantic GitHub URLs. PR [#5952](https://github.com/tiangolo/fastapi/pull/5952) by [@yezz123](https://github.com/yezz123).
    * 📝 Add opinion from Cisco. PR [#5981](https://github.com/tiangolo/fastapi/pull/5981) by [@tiangolo](https://github.com/tiangolo).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top