Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 100 for target01 (0.34 sec)

  1. src/net/http/httputil/reverseproxy.go

    //		Rewrite: func(r *ProxyRequest) {
    //			r.SetURL(target)
    //			r.Out.Host = r.In.Host // if desired
    //		},
    //	}
    func NewSingleHostReverseProxy(target *url.URL) *ReverseProxy {
    	director := func(req *http.Request) {
    		rewriteRequestURL(req, target)
    	}
    	return &ReverseProxy{Director: director}
    }
    
    func rewriteRequestURL(req *http.Request, target *url.URL) {
    	targetQuery := target.RawQuery
    	req.URL.Scheme = target.Scheme
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/extensions/v1beta1/generated.proto

      // Total number of non-terminated pods targeted by this deployment (their labels match the selector).
      // +optional
      optional int32 replicas = 2;
    
      // Total number of non-terminated pods targeted by this deployment that have the desired template spec.
      // +optional
      optional int32 updatedReplicas = 3;
    
      // Total number of ready pods targeted by this deployment.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      // Total number of non-terminated pods targeted by this deployment (their labels match the selector).
      // +optional
      optional int32 replicas = 2;
    
      // Total number of non-terminated pods targeted by this deployment that have the desired template spec.
      // +optional
      optional int32 updatedReplicas = 3;
    
      // Total number of ready pods targeted by this deployment.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  4. OWNERS_ALIASES

        - saad-ali
        - luxas
        - janetkuo
        - justinsb
        - pwittrock
        - ncdc
        - tallclair
        - mwielgus
        - soltysh
        - jsafrane
        - dims
        - cici37
      # api-reviewers targeted by sig area
      # see https://git.k8s.io/community/sig-architecture/api-review-process.md#training-reviews
      sig-api-machinery-api-reviewers:
        - caesarxuchao
        - deads2k
        - jpbetz
        - sttts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "integer"
            },
            "readyReplicas": {
              "description": "Total number of ready pods targeted by this deployment.",
              "format": "int32",
              "type": "integer"
            },
            "replicas": {
              "description": "Total number of non-terminated pods targeted by this deployment (their labels match the selector).",
              "format": "int32",
              "type": "integer"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  6. pkg/config/analysis/msg/messages.yaml

            type: string
          - name: hosts
            type: string
    
      - name: "ImageAutoWithoutInjectionWarning"
        code: IST0146
        level: Warning
        description: "Deployments with `image: auto` should be targeted for injection."
        template: "%s %s contains `image: auto` but does not match any Istio injection webhook selectors."
        args:
          - name: resourceType
            type: string
          - name: resourceName
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/tasks/CreateStartScripts.java

        /**
         * Returns the full path to the Unix script. The target directory is represented by the output directory, the file name is the application name without a file extension.
         */
        @Internal
        public File getUnixScript() {
            return new File(getOutputDir(), getApplicationName());
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. cmd/bucket-replication-utils.go

    // ResyncDecision is a struct representing a map with target's individual resync decisions
    type ResyncDecision struct {
    	targets map[string]ResyncTargetDecision
    }
    
    // Empty returns true if no targets with resync decision present
    func (r ResyncDecision) Empty() bool {
    	return r.targets == nil
    }
    
    func (r ResyncDecision) mustResync() bool {
    	for _, v := range r.targets {
    		if v.Replicate {
    			return true
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. src/runtime/cpuprof.go

    	// by the fact that only one SIGPROF can be handled by the
    	// process at a time. If not, this lock will serialize those too.
    	// The use of timer_create(2) on Linux to request process-targeted
    	// signals may have changed this.)
    	for !prof.signalLock.CompareAndSwap(0, 1) {
    		// TODO: Is it safe to osyield here? https://go.dev/issue/52672
    		osyield()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      // Note that the UserAgent is provided by the client, and must not be trusted.
      // +optional
      optional string userAgent = 16;
    
      // Object reference this request is targeted at.
      // Does not apply for List-type requests, or non-resource requests.
      // +optional
      optional ObjectReference objectRef = 9;
    
      // The response status, populated even when the ResponseObject is not a Status type.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top