Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 129 for livable (0.09 sec)

  1. src/runtime/runtime-lldb_test.go

    	err = os.WriteFile(mod, []byte("module lldbtest"), 0644)
    	if err != nil {
    		t.Fatalf("failed to create mod file: %v", err)
    	}
    
    	// As of 2018-07-17, lldb doesn't support compressed DWARF, so
    	// disable it for this test.
    	cmd := exec.Command(testenv.GoToolPath(t), "build", "-gcflags=all=-N -l", "-ldflags=-compressdwarf=false", "-o", "a.exe")
    	cmd.Dir = dir
    	cmd.Env = append(os.Environ(), "GOPATH=") // issue 31100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. pkg/kubelet/cadvisor/cadvisor_linux.go

    func init() {
    	// Override cAdvisor flag defaults.
    	flagOverrides := map[string]string{
    		// Override the default cAdvisor housekeeping interval.
    		"housekeeping_interval": defaultHousekeepingInterval.String(),
    		// Disable event storage by default.
    		"event_storage_event_limit": "default=0",
    		"event_storage_age_limit":   "default=0",
    	}
    	for name, defaultValue := range flagOverrides {
    		if f := flag.Lookup(name); f != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 22:07:20 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. src/crypto/tls/example_test.go

    	// verify the peer's certificate.
    
    	// Client side configuration.
    	_ = &tls.Config{
    		// Set InsecureSkipVerify to skip the default validation we are
    		// replacing. This will not disable VerifyConnection.
    		InsecureSkipVerify: true,
    		VerifyConnection: func(cs tls.ConnectionState) error {
    			opts := x509.VerifyOptions{
    				DNSName:       cs.ServerName,
    				Intermediates: x509.NewCertPool(),
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/issue9400_linux.go

    	}()
    
    	// Grow the stack and put down a test pattern
    	const pattern = 0x123456789abcdef
    	var big [1024]uint64 // len must match assembly
    	for i := range big {
    		big[i] = pattern
    	}
    
    	// Disable GC for the duration of the test.
    	// This avoids a potential GC deadlock when spinning in uninterruptible ASM below #49695.
    	defer debug.SetGCPercent(debug.SetGCPercent(-1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. internal/http/transports.go

    		TLSHandshakeTimeout:   10 * time.Second,
    		TLSClientConfig:       &tlsClientConfig,
    		ForceAttemptHTTP2:     s.EnableHTTP2,
    		// Go net/http automatically unzip if content-type is
    		// gzip disable this feature, as we are always interested
    		// in raw stream.
    		DisableCompression: true,
    	}
    
    	// https://github.com/golang/go/issues/23559
    	// https://github.com/golang/go/issues/42534
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/amd64/obj.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 amd64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/arm64/obj.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 Sep 13 19:32:19 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. pilot/pkg/features/telemetry.go

    	MetricRotationInterval = env.Register("METRIC_ROTATION_INTERVAL", 0*time.Second,
    		"Metric scope rotation interval, set to 0 to disable the metric scope rotation").Get()
    	MetricGracefulDeletionInterval = env.Register("METRIC_GRACEFUL_DELETION_INTERVAL", 5*time.Minute,
    		"Metric expiry graceful deletion interval. No-op if METRIC_ROTATION_INTERVAL is disabled.").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. pilot/pkg/model/telemetry_metric_test.go

    			},
    		},
    		{
    			name:    "disable all metrics",
    			metrics: []*tpb.Metrics{disableAll},
    			mesh:    withMetricsProviders,
    			expected: map[string]metricsConfig{
    				"prometheus": {
    					ClientMetrics: metricConfig{
    						Disabled: true,
    					},
    					ServerMetrics: metricConfig{
    						Disabled: true,
    					},
    				},
    			},
    		},
    		{
    			name:    "disable all metrics without mode",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 16 03:24:36 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/componentconfigs/kubelet.go

    	// kubeletReadOnlyPort specifies the default insecure http server port
    	// 0 will disable insecure http server.
    	kubeletReadOnlyPort int32 = 0
    
    	// kubeletRotateCertificates specifies the default value to enable certificate rotation
    	kubeletRotateCertificates = true
    
    	// kubeletAuthenticationAnonymousEnabled specifies the default value to disable anonymous access
    	kubeletAuthenticationAnonymousEnabled = false
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top