Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,525 for ONCE (0.07 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/counter/countertest/countertest.go

    }
    
    // Open enables telemetry data writing to disk.
    // This is supposed to be called once during the program execution
    // (i.e. typically in TestMain), and must not be used with
    // golang.org/x/telemetry/counter.Open.
    func Open(telemetryDir string) {
    	openedMu.Lock()
    	defer openedMu.Unlock()
    	if opened {
    		panic("Open was called more than once")
    	}
    	telemetry.Default = telemetry.NewDir(telemetryDir)
    
    	counter.Open()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/versions/features.go

    // Do not use directly with Compare.
    const Future = ""
    
    // AtLeast reports whether the file version v comes after a Go release.
    //
    // Use this predicate to enable a behavior once a certain Go release
    // has happened (and stays enabled in the future).
    func AtLeast(v, release string) bool {
    	if v == Future {
    		return true // an unknown future version is always after y.
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/DefaultConditionalExecutionQueue.java

    import java.util.concurrent.Future;
    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.locks.Condition;
    import java.util.concurrent.locks.ReentrantLock;
    
    /**
     * A queueing mechanism that only executes items once certain conditions are reached.
     */
    // TODO This class, DefaultBuildOperationQueue and ExecutionPlan have many of the same
    // behavior and concerns - we should look for a way to generalize this pattern.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/FileSystemWatchingSettingsFinalizedBuildOperationIntegrationTest.groovy

    @LocalOnly
    class FileSystemWatchingSettingsFinalizedBuildOperationIntegrationTest extends AbstractFileSystemWatchingIntegrationTest {
    
        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        def "emits once when not used"() {
            given:
            settingsFile << "includeBuild 'plugin'"
            file("buildSrc/src/main/java/Thing.java") << "class Thing {}"
            createDir("plugin") {
                file("settings.gradle") << ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/initialization/ClassLoaderRegistry.java

         * the build process and provide it to the worker.
         */
        FilteringClassLoader.Spec getGradleApiFilterSpec();
    
        /**
         * Returns the extension classloader spec for use in worker processes.  This is expensive to calculate, so we create it once in
         * the build process and provide it to the worker.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/plugin/software/internal/SoftwareTypeRegistry.java

         * queried via {@link #getSoftwareTypeImplementations()}.
         */
        void register(Class<? extends Plugin<Project>> pluginClass, Class<? extends Plugin<Settings>> registeringPluginClass);
    
        /**
         * Returns a set of the software types available along with their model types and associated plugins.  Note that once
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

         */
        interface BuildTree extends BuildSession {}
    
        /**
         * These services are created once per {@code org.gradle.api.initialization.Settings} the beginning of the build invocation
         * These services are closed at the end of the build invocation.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/initialization/GradlePropertiesController.java

    import java.io.File;
    
    /**
     * Controls the state (not loaded / loaded) of the attached {@link GradleProperties} instance
     * so that the set of Gradle properties is deterministically loaded only once per build.
     */
    @ServiceScope(Scope.Build.class)
    public interface GradlePropertiesController {
    
        /**
         * The {@link GradleProperties} instance attached to this service.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:05 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. docs/tr/docs/history-design-future.md

    # Geçmişi, Tasarımı ve Geleceği
    
    Bir süre önce, <a href="https://github.com/tiangolo/fastapi/issues/3#issuecomment-454956920" class="external-link" target="_blank">bir **FastAPI** kullanıcısı sordu</a>:
    
    > Bu projenin geçmişi nedir? Birkaç hafta içinde hiçbir yerden harika bir şeye dönüşmüş gibi görünüyor [...]
    
    İşte o geçmişin bir kısmı.
    
    ## Alternatifler
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. src/cmd/internal/pgo/serialize.go

    // license that can be found in the LICENSE file.
    
    package pgo
    
    import (
    	"bufio"
    	"fmt"
    	"io"
    )
    
    // Serialization of a Profile allows go tool preprofile to construct the edge
    // map only once (rather than once per compile process). The compiler processes
    // then parse the pre-processed data directly from the serialized format.
    //
    // The format of the serialized output is as follows.
    //
    //      GO PREPROFILE V1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top