Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 347 for Moon (0.31 sec)

  1. pkg/util/async/bounded_frequency_runner.go

    			bfr.doRetry()
    		}
    	}
    }
    
    // Run the function as soon as possible.  If this is called while Loop is not
    // running, the call may be deferred indefinitely.
    // If there is already a queued request to call the underlying function, it
    // may be dropped - it is just guaranteed that we will try calling the
    // underlying function as soon as possible starting from now.
    func (bfr *BoundedFrequencyRunner) Run() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  2. src/runtime/debug/stack.go

    // There is only one additional file: calling SetCrashOutput again overrides
    // any earlier call.
    // SetCrashOutput duplicates f's file descriptor, so the caller may safely
    // close f as soon as SetCrashOutput returns.
    // To disable this additional crash output, call SetCrashOutput(nil).
    // If called concurrently with a crash, some in-progress output may be written
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/SingleFileTreeElementMatcher.java

            // A better solution for output files would be to record the type of the output file and then using this type here instead of looking at the disk.
            // Though that is more involved and as soon as the file has been produced, the right file type will be detected here as well.
            boolean elementIsFile = !element.isDirectory();
            RelativePath relativePath = RelativePath.parse(elementIsFile, relativePathString);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. src/internal/weak/pointer_test.go

    		}
    		done <- struct{}{}
    	})
    
    	// Make sure the weak pointer stays around while bt is live.
    	runtime.GC()
    	if wt.Strong() == nil {
    		t.Errorf("weak pointer went nil too soon")
    	}
    	runtime.KeepAlive(bt)
    
    	// bt is no longer referenced.
    	//
    	// Run one cycle to queue the finalizer.
    	runtime.GC()
    	if wt.Strong() != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/buildtree/DefaultBuildTreeLifecycleController.java

        // Temporary workaround to make incremental sync work. IDEA is requires to execute `help` task
        // to prevent default tasks be executed during sync. This is forcing all projects configuration.
        // Must be removed as soon as IDEA will use appropriate API for avoiding any tasks to be executed.
        private Boolean isEligibleToRunTasks() {
            boolean isIsolatedProjectsEnabled = buildModelParameters.isIsolatedProjects();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 07:46:55 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. samples/ambient-argo/README.md

    ## Playbook: Minor Version Upgrade
    
    COMING SOON
    
    ## Playbook: Major Version Upgrade
    
    COMING SOON
    
    ## Tips and Tricks
    
    For a quick (but messy) readout on what Istio versions are being used in this repo, run:
    
    ```bash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/Tag.java

            FAILED("FAILED", "badge badge-danger", "Regression confidence > 99.9% despite retries."),
            NEARLY_FAILED("NEARLY-FAILED", "badge badge-warning", "Regression confidence > 90%, we're going to fail soon."),
            REGRESSED("REGRESSED", "badge badge-danger", "Regression confidence > 99.9% despite retries."),
            IMPROVED("IMPROVED", "badge badge-success", "Improvement confidence > 90%, rebaseline it to keep this improvement! :-)"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/ArtifactResolutionDetails.java

     * A {@link #isVersionListing() convenience method} makes it easier to find out if you
     * are in the version listing case, or module version case.
     * <p></p>
     * Filtering is done by calling the {@link #notFound()} method: as soon as you know a module
     * cannot be found in a repository, call this method. Otherwise, Gradle will perform a request
     * to find out. It doesn't matter if the module is eventually not found, as Gradle would handle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. pilot/pkg/xds/pushqueue.go

    // Get number of pending proxies
    func (p *PushQueue) Pending() int {
    	p.cond.L.Lock()
    	defer p.cond.L.Unlock()
    	return len(p.queue)
    }
    
    // ShutDown will cause queue to ignore all new items added to it. As soon as the
    // worker goroutines have drained the existing items in the queue, they will be
    // instructed to exit.
    func (p *PushQueue) ShutDown() {
    	p.cond.L.Lock()
    	defer p.cond.L.Unlock()
    	p.shuttingDown = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 16 01:37:15 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/Connection.kt

     *
     * Note that an allocation may be released before its stream is completed. This is intended to make
     * bookkeeping easier for the caller: releasing the allocation as soon as the terminal stream has
     * been found. But only complete the stream once its data stream has been exhausted.
     */
    interface Connection {
      /** Returns the route used by this connection. */
      fun route(): Route
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top