Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 74 of 74 for livable (0.11 sec)

  1. 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)
  2. pkg/test/framework/components/namespace/kube.go

    			if cfg.Revision != "" {
    				l[label.IoIstioRev.Name] = cfg.Revision
    			} else {
    				l["istio-injection"] = "enabled"
    			}
    		}
    	} else {
    		// if we're running compatibility tests, disable injection in the namespace
    		// explicitly so that object selectors are ignored
    		if ctx.Settings().Compatibility {
    			l["istio-injection"] = "disabled"
    		}
    	}
    
    	// bring over supplied labels
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. 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)
  4. 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