Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,363 for happen (0.12 sec)

  1. src/time/tick_test.go

    		// for Reset of timer NOT in heap.
    		tim.Stop()
    		drainAsync()
    		tim.Reset(1)
    		assertLen()
    		assertTick()
    	}
    
    	// Sleep long enough that a second tick must happen if this is a ticker.
    	// Test that Reset does not lose the tick that should have happened.
    	Sleep(sched)
    	tim.Reset(10000 * Second)
    	drainAsync()
    	noTick()
    
    	notDone := func(done chan bool) {
    		t.Helper()
    		select {
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/MoreFiles.java

        // exists and is a symlink to a directory... we'd like for this to succeed in that case.
        // (I'm kind of surprised that createDirectories would fail in that case; doesn't seem like
        // what you'd want to happen.)
        if (!Files.isDirectory(parent)) {
          Files.createDirectories(parent, attrs);
          if (!Files.isDirectory(parent)) {
            throw new IOException("Unable to create parent directories of " + path);
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/sccp.go

    						t.defUse[arg] = make([]*Value, 0, arg.Uses)
    					}
    					t.defUse[arg] = append(t.defUse[arg], val)
    				}
    			}
    		}
    		for _, ctl := range block.ControlValues() {
    			// for control values that can become constants, find their use blocks
    			if possibleConst(ctl) {
    				t.defBlock[ctl] = append(t.defBlock[ctl], block)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Suppliers.java

       * cached value, which will be recalculated when {@code get()} is called on the reserialized
       * instance. The actual memoization does not happen when the underlying delegate throws an
       * exception.
       *
       * <p>When the underlying delegate throws an exception then this memoizing supplier will keep
       * delegating calls until it returns valid data.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. src/runtime/signal_unix.go

    // This can only happen if non-Go code calls sigaltstack to disable the
    // signal stack.
    func noSignalStack(sig uint32) {
    	println("signal", sig, "received on thread with no signal stack")
    	throw("non-Go code disabled sigaltstack")
    }
    
    // This is called if we receive a signal when there is a signal stack
    // but we are not on it. This can only happen if non-Go code called
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    This can happen if the code generator includes e.g. a timestamp in the generated files or depends on the order of the input files.
    Other pitfalls can be the use of ``HashMap``s or other data structures without order guarantees in the task's code.
    
    [WARNING]
    ====
    Some third party plugins can even influence cacheability of Gradle's built-in tasks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/search/search.go

    			continue
    		}
    
    		// If the root itself is a symlink to a directory,
    		// we want to follow it (see https://go.dev/issue/50807).
    		// Add a trailing separator to force that to happen.
    		src = str.WithFilePathSeparator(filepath.Clean(src))
    		root := src
    		if m.pattern == "cmd" {
    			root += "cmd" + string(filepath.Separator)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/inline/inlheur/scoring.go

    // that in the "must" version the value flow is unconditional: if the
    // callsite executes, then the condition we're interested in (ex:
    // param feeding call) is guaranteed to happen. For the "may" version,
    // there may be control flow that could cause the benefit to be
    // bypassed.
    const (
    	// Category 1 adjustments (see above)
    	panicPathAdj scoreAdjustTyp = (1 << iota)
    	initFuncAdj
    	inLoopAdj
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/cache/cache.go

    // cache entries, used only updates the mtime if the current
    // mtime is more than an hour old. This heuristic eliminates
    // nearly all of the mtime updates that would otherwise happen,
    // while still keeping the mtimes useful for cache trimming.
    func (c *DiskCache) used(file string) {
    	info, err := os.Stat(file)
    	if err == nil && c.now().Sub(info.ModTime()) < mtimeInterval {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/p256_asm.go

    	// rather than happen on the heap.
    	var out [p256UncompressedLength]byte
    	return p.bytes(&out)
    }
    
    func (p *P256Point) bytes(out *[p256UncompressedLength]byte) []byte {
    	// The proper representation of the point at infinity is a single zero byte.
    	if p.isInfinity() == 1 {
    		return append(out[:0], 0)
    	}
    
    	x, y := new(p256Element), new(p256Element)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top