Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 129 of 129 for livable (0.3 sec)

  1. docs/debugging/s3-check-md5/main.go

    	flag.BoolVar(&debug, "debug", false, "Prints HTTP network calls to S3 endpoint")
    	flag.BoolVar(&versions, "versions", false, "Verify all versions")
    	flag.BoolVar(&insecure, "insecure", false, "Disable TLS verification")
    	flag.StringVar(&minModTimeStr, "modified-since", "", "Specify a minimum object last modified time, e.g.: 2023-01-02T15:04:05Z")
    	flag.Parse()
    
    	if endpoint == "" {
    		log.Fatalln("Endpoint is not provided")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 17 01:15:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/mips/a.out.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 mips
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/completion.go

    	emulate -L sh
    	setopt kshglob noshglob braceexpand
    
    	source "$@"
    }
    
    __kubeadm_type() {
    	# -t is not supported by zsh
    	if [ "$1" == "-t" ]; then
    		shift
    
    		# fake Bash 4 to disable "complete -o nospace". Instead
    		# "compopt +-o nospace" is used in the code to toggle trailing
    		# spaces. We don't support that, but leave trailing spaces on
    		# all the time
    		if [ "$1" = "__kubeadm_compopt" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 09:28:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. internal/config/dns/operator_dns.go

    			ExpectContinueTimeout: 3 * time.Second,
    			TLSClientConfig: &tls.Config{
    				RootCAs: args.rootCAs,
    			},
    			// Go net/http automatically unzip if content-type is
    			// gzip disable this feature, as we are always interested
    			// in raw stream.
    			DisableCompression: true,
    		},
    	}
    	return args, nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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