Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for disappears (0.2 sec)

  1. src/runtime/asm_386.s

    // in the caller's stack frame. These stubs write the args into that stack space and
    // then tail call to the corresponding runtime handler.
    // The tail call makes these stubs disappear in backtraces.
    TEXT runtime·panicIndex(SB),NOSPLIT,$0-8
    	MOVL	AX, x+0(FP)
    	MOVL	CX, y+4(FP)
    	JMP	runtime·goPanicIndex(SB)
    TEXT runtime·panicIndexU(SB),NOSPLIT,$0-8
    	MOVL	AX, x+0(FP)
    	MOVL	CX, y+4(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  2. src/runtime/asm_ppc64x.s

    // in the caller's stack frame. These stubs write the args into that stack space and
    // then tail call to the corresponding runtime handler.
    // The tail call makes these stubs disappear in backtraces.
    TEXT runtime·panicIndex<ABIInternal>(SB),NOSPLIT,$0-16
    	JMP	runtime·goPanicIndex<ABIInternal>(SB)
    TEXT runtime·panicIndexU<ABIInternal>(SB),NOSPLIT,$0-16
    	JMP	runtime·goPanicIndexU<ABIInternal>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  3. src/runtime/asm_arm64.s

    // in the caller's stack frame. These stubs write the args into that stack space and
    // then tail call to the corresponding runtime handler.
    // The tail call makes these stubs disappear in backtraces.
    //
    // Defined as ABIInternal since the compiler generates ABIInternal
    // calls to it directly and it does not use the stack-based Go ABI.
    TEXT runtime·panicIndex<ABIInternal>(SB),NOSPLIT,$0-16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/LocalCache.java

                V entryValue = valueReference.get();
                if (entryValue == null) {
                  if (valueReference.isActive()) {
                    // If the value disappeared, this entry is partially collected.
                    int newCount = this.count - 1;
                    ++modCount;
                    ReferenceEntry<K, V> newFirst =
                        removeValueFromChain(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/LocalCache.java

                V entryValue = valueReference.get();
                if (entryValue == null) {
                  if (valueReference.isActive()) {
                    // If the value disappeared, this entry is partially collected.
                    int newCount = this.count - 1;
                    ++modCount;
                    ReferenceEntry<K, V> newFirst =
                        removeValueFromChain(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  6. src/runtime/asm_amd64.s

    // in the caller's stack frame. These stubs write the args into that stack space and
    // then tail call to the corresponding runtime handler.
    // The tail call makes these stubs disappear in backtraces.
    // Defined as ABIInternal since they do not use the stack-based Go ABI.
    TEXT runtime·panicIndex<ABIInternal>(SB),NOSPLIT,$0-16
    	MOVQ	CX, BX
    	JMP	runtime·goPanicIndex<ABIInternal>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. src/os/os_test.go

    			return nil, xerr
    		}
    		return Lstat(path)
    	}
    	defer func() { *LstatP = Lstat }()
    
    	dir := t.TempDir()
    	touch(t, filepath.Join(dir, "good1"))
    	touch(t, filepath.Join(dir, "x")) // will disappear or have an error
    	touch(t, filepath.Join(dir, "good2"))
    	readDir := func() ([]FileInfo, error) {
    		d, err := Open(dir)
    		if err != nil {
    			t.Fatal(err)
    		}
    		defer d.Close()
    		return d.Readdir(-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers.go

    	p.podLock.Lock()
    	defer p.podLock.Unlock()
    
    	// verify we are known to the pod worker still
    	status, ok := p.podSyncStatuses[podUID]
    	if !ok {
    		// pod status has disappeared, the worker should exit
    		klog.V(4).InfoS("Pod worker no longer has status, worker should exit", "podUID", podUID)
    		return nil, update, false, false, false
    	}
    	if !status.working {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    	// that source code) for all modules that are necessary to ensure that imports
    	// are unambiguous. That also produces clearer diagnostics, since we can say
    	// exactly what happened to the package if it became ambiguous or disappeared
    	// entirely.
    	//
    	// We re-resolve the packages in parallel because this process involves disk
    	// I/O to check for package sources, and because the process of checking for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. cluster/gce/util.sh

      fi
    
      # Generate a bearer token for this cluster. We push this separately
      # from the other cluster variables so that the client (this
      # computer) can forget it later. This should disappear with
      # http://issue.k8s.io/3168
      KUBE_PROXY_TOKEN=$(dd if=/dev/urandom bs=128 count=1 2>/dev/null | base64 | tr -d "=+/" | dd bs=32 count=1 2>/dev/null)
      if [[ "${ENABLE_NODE_PROBLEM_DETECTOR:-}" == "standalone" ]]; 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)
Back to top