Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for Hour (0.18 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    	if offset == 0 {
    		return
    	}
    	switch opcode {
    	case 0x7:
    		n = 1 // one register
    	case 0xa:
    		n = 2 // two registers
    	case 0x6:
    		n = 3 // three registers
    	case 0x2:
    		n = 4 // four registers
    	default:
    		c.ctxt.Diag("invalid register numbers in ARM64 register list: %v", p)
    	}
    
    	switch as {
    	case AVLD1R, AVLD2R, AVLD3R, AVLD4R:
    		if offset != n*(1<<uint(size)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    // Typed is a typed name.
    type Typed struct {
    	Name AST
    	Type AST
    }
    
    func (t *Typed) print(ps *printState) {
    	// We are printing a typed name, so ignore the current set of
    	// inner names to print.  Pass down our name as the one to use.
    	holdInner := ps.inner
    	defer func() { ps.inner = holdInner }()
    
    	ps.inner = []AST{t}
    	ps.print(t.Type)
    	if len(ps.inner) > 0 {
    		// The type did not print the name; print it now in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

        if [ "$(uname -s)" == "Darwin" ]; then
          # We want this print just the way it is
          # shellcheck disable=SC2016
          echo 'On macOS we recommend using homebrew and adding "$(brew --prefix openssl)/bin" to your PATH'
        fi
        exit 1
      fi
    
      # we use gcloud to create the cluster, gsutil to stage binaries and data
      for cmd in gcloud gsutil; do
        if ! which "${cmd}" >/dev/null; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	apiPodStatus = kl.generateAPIPodStatus(pod, podStatus, true)
    	kl.statusManager.SetPodStatus(pod, apiPodStatus)
    
    	// we have successfully stopped all containers, the pod is terminating, our status is "done"
    	klog.V(4).InfoS("Pod termination stopped all running containers", "pod", klog.KObj(pod), "podUID", pod.UID)
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    	}
    	g := func(in []Value) []Value {
    		runtime.GC()
    		return nil
    	}
    	typ := ValueOf(f).Type()
    	f2 := MakeFunc(typ, g).Interface().(func(string, string, string, string, string))
    	f2("four", "five5", "six666", "seven77", "eight888")
    }
    
    // Issue 18635 (function version).
    func TestKeepFuncLive(t *testing.T) {
    	// Test that we keep makeFuncImpl live as long as it is
    	// referenced on the stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top