Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for termination (0.1 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    // sandboxTemplate is a sandbox template to create fake sandbox.
    type sandboxTemplate struct {
    	pod         *v1.Pod
    	attempt     uint32
    	createdAt   int64
    	state       runtimeapi.PodSandboxState
    	running     bool
    	terminating bool
    }
    
    // containerTemplate is a container template to create fake container.
    type containerTemplate struct {
    	pod            *v1.Pod
    	container      *v1.Container
    	sandboxAttempt uint32
    	attempt        int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        void readEntries(ObjectInputStream in) throws IOException, ClassNotFoundException {
          while (true) {
            K key = (K) in.readObject();
            if (key == null) {
              break; // terminator
            }
            V value = (V) in.readObject();
            delegate.put(key, value);
          }
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    //
    // As currently implemented, this is a fatal error. This has drawbacks
    // in that if there are multiple missing builtins, the error will only
    // cite the first one. On the plus side, terminating the link here has
    // advantages in that we won't run the risk of panics or crashes later
    // on in the linker due to R_CALL relocations with 0-valued target
    // symbols.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		}
    		return st.demangleType(false)
    
    	default:
    		return st.demangleType(false)
    	}
    }
    
    // exprList parses a sequence of expressions up to a terminating character.
    func (st *state) exprList(stop byte) AST {
    	if len(st.str) > 0 && st.str[0] == stop {
    		st.advance(1)
    		return &ExprList{Exprs: nil}
    	}
    
    	var exprs []AST
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top