Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for disappears (0.39 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/runtime/proc.go

    	// to make sure we don't write into the same buffer.
    	if traceEnabled() || traceShuttingDown() {
    		// Acquire sched.lock across thread destruction. One of the invariants of the tracer
    		// is that a thread cannot disappear from the tracer's view (allm or freem) without
    		// it noticing, so it requires that sched.lock be held over traceThreadDestroy.
    		//
    		// This isn't strictly necessary in this case, because this thread never leaves allm,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top