Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 146 for livable (0.08 sec)

  1. src/cmd/internal/obj/arm64/list7.go

    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package arm64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. pkg/test/framework/components/opentelemetry/kube.go

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: opentelemetry-collector
      namespace: istio-system
    spec:
      host: opentelemetry-collector
      trafficPolicy:
        tls:
          mode: DISABLE
    ---`
    
    	extServiceEntry = `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: opentelemetry-collector
    spec:
      hosts:
      # must be of form name.namespace.global
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 19:29:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. security/pkg/credentialfetcher/plugin/gce.go

    var gracePeriod = 25 * time.Minute
    
    // rotateToken determines whether to start periodic token rotation job.
    // This is enabled by default.
    var rotateToken = true
    
    // SetTokenRotation enable/disable periodic token rotation job.
    // This is only for testing purpose, not thread safe.
    func SetTokenRotation(enable bool) {
    	rotateToken = enable
    }
    
    // GCEPlugin is the plugin object.
    type GCEPlugin struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. internal/handlers/forwarder.go

    		outReq.Host = target.Host
    	}
    
    	// TODO: only supports HTTP 1.1 for now.
    	outReq.Proto = "HTTP/1.1"
    	outReq.ProtoMajor = 1
    	outReq.ProtoMinor = 1
    
    	f.rewriter.Rewrite(outReq)
    
    	// Disable closeNotify when method GET for http pipelining
    	if outReq.Method == http.MethodGet {
    		quietReq := outReq.WithContext(context.Background())
    		*outReq = *quietReq
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 07 05:42:10 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker_test.go

    					expectedResult: true},
    				{endpointsVersion: []mockEndpointVersion{
    					{Version: "3.4.0", Endpoint: "localhost:2392"}},
    					expectedResult: false}},
    		},
    		{
    			testName: "Disabled - malformed version would disable the supported cluster and can not be re-enabled again",
    			rounds: []testCase{
    				{endpointsVersion: []mockEndpointVersion{
    					{Version: "3.6.0", Endpoint: "localhost:2390"}},
    					expectedResult: true,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. internal/http/server.go

    	wrappedHandler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		// If server is in shutdown.
    		if atomic.LoadUint32(&srv.inShutdown) != 0 {
    			// To indicate disable keep-alive, server is shutting down.
    			w.Header().Set("Connection", "close")
    
    			// Add 1 minute retry header, incase-client wants to honor it
    			w.Header().Set(RetryAfter, "60")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 09 21:25:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/options/attachdetachcontroller.go

    func (o *AttachDetachControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    	fs.BoolVar(&o.DisableAttachDetachReconcilerSync, "disable-attach-detach-reconcile-sync", false, "Disable volume attach detach reconciler sync. Disabling this may cause volumes to be mismatched with pods. Use wisely.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. pilot/pkg/security/trustdomain/bundle.go

    			// when SkipValidateTrustDomain is being used the message isn't very meaningful so we'll log it at a lower level
    			// logging it at this level may help users who are looking to disable skipping validation understand if it's safe
    			if !features.SkipValidateTrustDomain {
    				authzLog.Warn(msg)
    			} else {
    				authzLog.Debug(msg)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 23 15:48:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/echotest/filters.go

    }
    
    // NoSelfCalls disallows self-calls where from and to have the same service name. Self-calls can
    // by-pass the sidecar, so tests relying on sidecar logic will sent to disable self-calls by default.
    var NoSelfCalls CombinationFilter = func(from echo.Instance, to echo.Instances) echo.Instances {
    	return match.Not(match.ServiceName(from.NamespacedName())).GetMatches(to)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. src/runtime/sigqueue.go

    //
    //go:linkname signal_enable os/signal.signal_enable
    func signal_enable(s uint32) {
    	if !sig.inuse {
    		// This is the first call to signal_enable. Initialize.
    		sig.inuse = true // enable reception of signals; cannot disable
    		if GOOS == "darwin" || GOOS == "ios" {
    			sigNoteSetup(&sig.note)
    		} else {
    			noteclear(&sig.note)
    		}
    	}
    
    	if s >= uint32(len(sig.wanted)*32) {
    		return
    	}
    
    	w := sig.wanted[s/32]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top