Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 145 of 145 for livable (0.21 sec)

  1. cmd/signature-v4-utils.go

    	owner := cred.AccessKey == globalActiveCred.AccessKey || (cred.ParentUser == globalActiveCred.AccessKey && cred.AccessKey != siteReplicatorSvcAcc)
    	if owner && !globalAPIConfig.permitRootAccess() {
    		// We disable root access and its service accounts if asked for.
    		return cred, owner, ErrAccessKeyDisabled
    	}
    
    	if _, ok := claims[policy.SessionPolicyName]; ok {
    		owner = false
    	}
    
    	return cred, owner, ErrNone
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/output/output.go

    		JSONYamlPrintFlags:     genericclioptions.NewJSONYamlPrintFlags(),
    		KubeTemplatePrintFlags: genericclioptions.NewKubeTemplatePrintFlags(),
    		TextPrintFlags:         textPrintFlags,
    	}
    
    	// disable deprecated --template option
    	pf.KubeTemplatePrintFlags.TemplateArgument = nil
    
    	return pf
    }
    
    // Printer is a common printing interface in Kubeadm
    type Printer interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 08:22:45 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. internal/bucket/replication/rule.go

    	errDeleteReplicationMissing               = Errorf("Delete replication must be specified")
    	errInvalidDeleteReplicationStatus         = Errorf("Delete replication is either enable|disable")
    	errInvalidExistingObjectReplicationStatus = Errorf("Existing object replication status is invalid")
    	errTagsDeleteMarkerReplicationDisallowed  = Errorf("Delete marker replication is not supported if any Tag filter is specified")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 24 23:22:20 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  4. src/runtime/crash_unix_test.go

    		t.Errorf("unexpected \"unexpected SPWRITE\" in traceback:\n%s", tb)
    	}
    }
    
    func init() {
    	if len(os.Args) >= 2 && os.Args[1] == "testPanicSystemstackInternal" {
    		// Complete any in-flight GCs and disable future ones. We're going to
    		// block goroutines on runtime locks, which aren't ever preemptible for the
    		// GC to scan them.
    		runtime.GC()
    		debug.SetGCPercent(-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 20:11:47 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. pilot/pkg/xds/workload.go

    	// WDS does not suffer this limitation, so we could almost safely ignore these.
    	// However, other code will merge "Partial push + Full push -> Full push", so skipping full pushes isn't viable.
    	full := (isReq && w.Wildcard) || (!isReq && req.Full && len(req.ConfigsUpdated) == 0)
    
    	// Nothing to do
    	if len(addresses) == 0 && !full {
    		if isReq {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top