Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for effort (0.22 sec)

  1. CHANGELOG/CHANGELOG-1.11.md

    * Many improvements to the upgrade process and other bug fixes
    
    ### SIG Instrumentation
    
    As far as Sig Instrumentation, the major change in Kubernetes 1.11 is the deprecation of Heapster as part of ongoing efforts to move to the new Kubernetes monitoring model. Clusters still using Heapster for autoscaling should be migrated over to metrics-server and the custom metrics API. See the deprecation section for more information.
    
    ### SIG Network
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.8.md

    ### Action Required
    
    * New GCE or GKE clusters created with `cluster/kube-up.sh` will not enable the legacy ABAC authorizer by default. If you would like to enable the legacy ABAC authorizer, export ENABLE_LEGACY_ABAC=true before running `cluster/kube-up.sh`. ([#51367](https://github.com/kubernetes/kubernetes/pull/51367), [@cjcullen](https://github.com/cjcullen))
    
    ### Other notable changes
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    		if arg.store {
    			s.storeType(et, addr, arg.v, 0, true)
    		} else {
    			s.move(et, addr, arg.v)
    		}
    	}
    
    	// The following deletions have no practical effect at this time
    	// because state.vars has been reset by the preceding state.startBlock.
    	// They only enforce the fact that these variables are no longer need in
    	// the current scope.
    	delete(s.vars, ptrVar)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                            multiple match conditions that should be ANDed together. \n
                            If no matches are specified, the default is a prefix path
                            match on \"/\", which has the effect of matching every HTTP
                            request. \n Proxy or Load Balancer routing configuration generated
                            from HTTPRoutes MUST prioritize matches based on the following
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.9.md

        * Action required: Before upgrading your Kubernetes clusters, double check if you had configured webhooks for cluster-scoped objects (e.g., nodes, persistentVolume), these webhooks will start to take effect. Delete/modify the configs if that's not desirable.
    
    ### Other notable changes
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    Lr=ep(),p1=/^('|")([^]*)\1$/,d1=Lr(function(){},"Assigning an attribute a value containing characters that might need to be escaped is deprecated. Call attribute.setValue() instead."),h1=Lr(function(){},"Assigning attr.quoted is deprecated and has no effect. Assign to attr.quoteMark instead."),m1=Lr(function(){},"Constructing an Attribute selector with a value without specifying quoteMark is deprecated. Note: The value should be unescaped now.");function la(i){var e=!1,t=null,r=i,n=r.match(p1);return...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  7. CHANGELOG/CHANGELOG-1.18.md

    - hyperkube: Use debian-hyperkube-base@v1.1.0 image
      
        A previous release built hyperkube using the debian-hyperkube-base@v1.0.0,
        which was updated to address a CVE in the CNI plugins.
        
        A side-effect of using this new image was that the networking packages
        (namely `iptables`) drifted from the versions used in the kube-proxy images.
      
        The following issues were filed on kube-proxy failures when using hyperkube:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.24.md

    - The insecure address flags `--address` and `--port` in kube-controller-manager have had no effect since v1.20 and are removed in v1.24. ([#106860](https://github.com/kubernetes/kubernetes/pull/106860), [@knight42](https://github.com/knight42))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__rbac.authorization.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 352.2K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    }
    
    type http2pipeBuffer interface {
    	Len() int
    	io.Writer
    	io.Reader
    }
    
    // setBuffer initializes the pipe buffer.
    // It has no effect if the pipe is already closed.
    func (p *http2pipe) setBuffer(b http2pipeBuffer) {
    	p.mu.Lock()
    	defer p.mu.Unlock()
    	if p.err != nil || p.breakErr != nil {
    		return
    	}
    	p.b = b
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top