Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 129 for livable (0.14 sec)

  1. src/runtime/rwmutex_test.go

    		t.Skip("wasm has no threads yet")
    	}
    	defer GOMAXPROCS(GOMAXPROCS(-1))
    	// If runtime triggers a forced GC during this test then it will deadlock,
    	// since the goroutines can't be stopped/preempted.
    	// Disable GC for this test (see issue #10958).
    	defer debug.SetGCPercent(debug.SetGCPercent(-1))
    	// SetGCPercent waits until the mark phase is over, but the runtime
    	// also preempts at the start of the sweep phase, so make sure that's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 22:00:45 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. internal/config/etcd/etcd.go

    	if err != nil {
    		return cfg, err
    	}
    
    	cfg.Enabled = true
    	cfg.DialTimeout = defaultDialTimeout
    	cfg.DialKeepAliveTime = defaultDialKeepAlive
    	// Disable etcd client SDK logging, etcd client
    	// incorrectly starts logging in unexpected data
    	// format.
    	cfg.LogConfig = &zap.Config{
    		Level:    zap.NewAtomicLevelAt(zap.FatalLevel),
    		Encoding: "console",
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/api_enablement.go

    func (s *APIEnablementOptions) AddFlags(fs *pflag.FlagSet) {
    	if s == nil {
    		return
    	}
    	fs.Var(&s.RuntimeConfig, "runtime-config", ""+
    		"A set of key=value pairs that enable or disable built-in APIs. Supported options are:\n"+
    		"v1=true|false for the core API group\n"+
    		"<group>/<version>=true|false for a specific API group and version (e.g. apps/v1=true)\n"+
    		"api/all=true|false controls all API versions\n"+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 09:22:37 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. internal/config/api/help.go

    			Optional:    true,
    			Type:        "duration",
    		},
    		config.HelpKV{
    			Key:         apiODirect,
    			Description: "set to enable or disable O_DIRECT for writes under special conditions. NOTE: do not disable O_DIRECT without prior testing" + defaultHelpPostfix(apiODirect),
    			Optional:    true,
    			Type:        "boolean",
    		},
    		config.HelpKV{
    			Key:         apiRootAccess,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 15 01:07:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. internal/config/config_test.go

    			keys:  []string{"enable", "connection_string", "comment", "format", "table"},
    			expectedFields: map[string]struct{}{
    				`enable=on`:        {},
    				`format=namespace`: {},
    				`connection_string=" host=localhost port=5432 dbname = cesnietor sslmode=disable"`: {},
    				`table=holicrayoli`: {},
    			},
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 18 22:55:17 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  6. src/time/sleep.go

    // syncTimer returns c as an unsafe.Pointer, for passing to newTimer.
    // If the GODEBUG asynctimerchan has disabled the async timer chan
    // code, then syncTimer always returns nil, to disable the special
    // channel code paths in the runtime.
    func syncTimer(c chan Time) unsafe.Pointer {
    	// If asynctimerchan=1, we don't even tell the runtime
    	// about channel timers, so that we get the pre-Go 1.23 code paths.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. src/cmd/dist/main.go

    	"install":   cmdinstall,
    	"list":      cmdlist,
    	"test":      cmdtest,
    	"version":   cmdversion,
    }
    
    // main takes care of OS-specific startup and dispatches to xmain.
    func main() {
    	os.Setenv("TERM", "dumb") // disable escape codes in clang errors
    
    	// provide -check-armv6k first, before checking for $GOROOT so that
    	// it is possible to run this check without having $GOROOT available.
    	if len(os.Args) > 1 && os.Args[1] == "-check-armv6k" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. cmd/jwt.go

    		if s3Err != ErrNone {
    			return nil, nil, false, errAuthentication
    		}
    
    		for k, v := range eclaims {
    			claims.MapClaims[k] = v
    		}
    
    		// if root access is disabled, disable all its service accounts and temporary credentials.
    		if ucred.ParentUser == globalActiveCred.AccessKey && !globalAPIConfig.permitRootAccess() {
    			return nil, nil, false, errAccessKeyDisabled
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/interpodaffinity/plugin_test.go

    			newNode:      st.MakeNode().Name("node-a").Label("zone", "zone2").Obj(),
    			expectedHint: framework.Queue,
    		},
    		{
    			name:         "update node lable but not topologyKey",
    			pod:          st.MakePod().Name("p").PodAffinityIn("service", "zone", []string{"securityscan", "value2"}, st.PodAffinityWithRequiredReq).Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 03:08:44 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. src/cmd/internal/objabi/symkind.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 objabi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 05 19:44:37 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top