Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for livable (0.25 sec)

  1. src/net/http/server.go

    // SetKeepAlivesEnabled controls whether HTTP keep-alives are enabled.
    // By default, keep-alives are always enabled. Only very
    // resource-constrained environments or servers in the process of
    // shutting down should disable them.
    func (srv *Server) SetKeepAlivesEnabled(v bool) {
    	if v {
    		srv.disableKeepAlives.Store(false)
    		return
    	}
    	srv.disableKeepAlives.Store(true)
    
    	// Close idle HTTP/1 conns:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // (https://policies.google.com/privacy).
    //
    // To view the current telemetry mode, run "go telemetry".
    // To disable telemetry uploading, but keep local data collection, run
    // "go telemetry local".
    // To enable both collection and uploading, run “go telemetry on”.
    // To disable both collection and uploading, run "go telemetry off".
    //
    // See https://go.dev/doc/telemetry for more information on telemetry.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	// the number of allowed pods per core
    	podsPerCore int
    
    	// enableControllerAttachDetach indicates the Attach/Detach controller
    	// should manage attachment/detachment of volumes scheduled to this node,
    	// and disable kubelet from executing any attach/detach operations
    	enableControllerAttachDetach bool
    
    	// trigger deleting containers in a pod
    	containerDeletor *podContainerDeletor
    
    	// config iptables util rules
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_test.go

    	g.Expect(getTLSContext(t, clusters[0])).To(BeNil())
    	g.Expect(clusters[0].TransportSocketMatches).To(HaveLen(2))
    
    	// For 9090, use the TLS settings are explicitly specified in DR (which disable TLS)
    	g.Expect(getTLSContext(t, clusters[1])).To(BeNil())
    
    	// Sanity check: make sure TLS is not accidentally added to other clusters.
    	for i := 2; i < len(clusters); i++ {
    		cluster := clusters[i]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    	// But that would mean that if an analysis causes problems like
    	// unexpected crashes there would be no way to turn it off.
    	// It seems better to let the flags disable export analysis too.
    	fmt.Fprintf(h, "vetflags %q\n", vetFlags)
    
    	fmt.Fprintf(h, "pkg %q\n", a.Deps[0].actionID)
    	for _, a1 := range a.Deps {
    		if a1.Mode == "vet" && a1.built != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.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 ld
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    									Name:  "fake-job-container2",
    									Image: "fake-job-image2",
    								},
    							},
    						},
    					},
    					Selector: &metav1.LabelSelector{MatchLabels: map[string]string{"job-label": "job-lable-value"}},
    				},
    				Status: batch.JobStatus{
    					Succeeded: 1,
    				},
    			},
    			options: printers.GenerateOptions{},
    			// Columns: Name, Status, Completions, Duration, Age
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func SetProcessPriorityBoost(process Handle, disable bool) (err error) {
    	var _p0 uint32
    	if disable {
    		_p0 = 1
    	}
    	r1, _, e1 := syscall.Syscall(procSetProcessPriorityBoost.Addr(), 2, uintptr(process), uintptr(_p0), 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  9. cmd/bucket-replication.go

    	// object layer not initialized we return with no decision.
    	if newObjectLayerFn() == nil {
    		return
    	}
    
    	// Disable server-side replication on object prefixes which are excluded
    	// from versioning via the MinIO bucket versioning extension.
    	if !globalBucketVersioningSys.PrefixEnabled(bucket, object) {
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  10. cmd/object-handlers.go

    	sseConfig, _ := globalBucketSSEConfigSys.Get(bucket)
    	sseConfig.Apply(r.Header, sse.ApplyOptions{
    		AutoEncrypt: globalAutoEncryption,
    	})
    
    	var buf *bytebufferpool.ByteBuffer
    	// Disable cache for encrypted objects - headers are applied with sseConfig.Apply if auto encrypted.
    	if globalCacheConfig.MatchesSize(size) && !crypto.Requested(r.Header) {
    		buf = bytebufferpool.Get()
    		defer bytebufferpool.Put(buf)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top