Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 957 for ONCE (0.07 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    	// It should say "...nor is required by any...". (Issue 443099)
    	//
    	// Also build a map to hold working state and result.
    	type action struct {
    		once        sync.Once
    		result      interface{}
    		err         error
    		usesFacts   bool // (transitively uses)
    		diagnostics []analysis.Diagnostic
    	}
    	actions := make(map[*analysis.Analyzer]*action)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. pkg/proxy/config/config.go

    	OnServiceUpdate(oldService, service *v1.Service)
    	// OnServiceDelete is called whenever deletion of an existing service
    	// object is observed.
    	OnServiceDelete(service *v1.Service)
    	// OnServiceSynced is called once all the initial event handlers were
    	// called and the state is fully propagated to local cache.
    	OnServiceSynced()
    }
    
    // EndpointSliceHandler is an abstract interface of objects which receive
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cfg/cfg.go

    // CmdEnv is the new environment for running go tool commands.
    // User binaries (during go test or go run) are run with OrigEnv,
    // not CmdEnv.
    var CmdEnv []EnvVar
    
    var envCache struct {
    	once   sync.Once
    	m      map[string]string
    	goroot map[string]string
    }
    
    // EnvFile returns the name of the Go environment configuration file,
    // and reports whether the effective value differs from the default.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildOperationsIntegrationTest.groovy

            treeTaskGraphOps[1].displayName == "Calculate build tree task graph"
            treeTaskGraphOps[1].parentId == root.id
    
            // The task graph for buildB is calculated multiple times, once for the buildscript dependency and again for the production dependency
            def taskGraphOps = operations.all(CalculateTaskGraphBuildOperationType)
            taskGraphOps.size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. internal/event/target/elasticsearch.go

    	"github.com/minio/highwayhash"
    	"github.com/minio/minio/internal/event"
    	xhttp "github.com/minio/minio/internal/http"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/minio/internal/once"
    	"github.com/minio/minio/internal/store"
    	xnet "github.com/minio/pkg/v3/net"
    	"github.com/pkg/errors"
    )
    
    // Elastic constants
    const (
    	ElasticFormat     = "format"
    	ElasticURL        = "url"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

     * A provider whose inputs are only configuration time inputs would become fixed once the configuration of those inputs has completed. A provider whose inputs include a task output would become
     * fixed once the task has executed. It would become an error to query a provider whose value is still "changing".
     * </p>
     *
     * <h1>The value content</h1>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    === Initialize the Gradle project and commit to the repository
    
    Use `gradle init` to create a fresh Gradle project. You can choose any of the available options during `init`, but we recommend choosing "library" as the project type.
    
    Once the project is generated, commit the changes and push to the repository.
    
    [listing.terminal.sample-command]
    ----
    $ gradle init
    $ git add .
    $ git commit -m "Initial commit"
    $ git push
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/deployment/builder.go

    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // Builder for a group of collaborating Echo Instances. Once built, all Instances in the
    // group:
    //
    //  1. Are ready to receive traffic, and
    //  2. Can call every other Instance in the group (i.e. have received Envoy config
    //     from Pilot).
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/HttpScriptPluginIntegrationSpec.groovy

        }
    
        @ToBeFixedForConfigurationCache(because = "test expects script evaluation")
        def "will only request resource once for build invocation"() {
            given:
            def scriptName = "script-once.gradle"
            def scriptFile = file("script.gradle")
            scriptFile.setText("""println 'loaded external script'""", "UTF-8")
    
            and:
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 30 08:26:30 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/tests/BUILD

            "@llvm-project//llvm:not",
        ],
    )
    
    # We disable some tfcompile tests in the open source build with the
    # "manual" tag to avoid making our OSS users build LLVM twice
    # (once for host and once for target).
    
    test_suite(
        name = "all_tests",
        tags = ["manual"],
        tests = [
            ":test_graph_tfadd_test",
            ":test_graph_tfadd_with_ckpt_saver_test",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top