Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for livable (0.12 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdversion/stdversion.go

    	RunDespiteErrors: true,
    	Run:              run,
    }
    
    func run(pass *analysis.Pass) (any, error) {
    	// Prior to go1.22, versions.FileVersion returns only the
    	// toolchain version, which is of no use to us, so
    	// disable this analyzer on earlier versions.
    	if !slicesContains(build.Default.ReleaseTags, "go1.22") {
    		return nil, nil
    	}
    
    	// Don't report diagnostics for modules marked before go1.21,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/cmd/covdata/covdata.go

    				fatal("%v", err)
    			}
    			if err = f.Close(); err != nil {
    				fatal("error closing memory profile: %v", err)
    			}
    		})
    	} else {
    		// Not doing memory profiling; disable it entirely.
    		runtime.MemProfileRate = 0
    	}
    
    	// Mode-dependent setup.
    	op.Setup()
    
    	// ... off and running now.
    	dbgtrace(1, "starting perform")
    
    	indirs := strings.Split(*indirsflag, ",")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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