Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,111 for ONCE (0.1 sec)

  1. 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)
  2. src/cmd/dist/util.go

    	}
    	if vflag > 2 {
    		errprintf("run: %s DONE\n", strings.Join(cmd, " "))
    	}
    	return string(data)
    }
    
    var maxbg = 4 /* maximum number of jobs to run at once */
    
    var (
    	bgwork = make(chan func(), 1e5)
    
    	bghelpers sync.WaitGroup
    
    	dieOnce sync.Once // guards close of dying
    	dying   = make(chan struct{})
    )
    
    func bginit() {
    	bghelpers.Add(maxbg)
    	for i := 0; i < maxbg; i++ {
    		go bghelper()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 17:50:29 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_tf_xla_call_module_to_stablehlo_pass.cc

          // TODO(b/291988976): move enforcement of this variable outside of this
          // rewrite pattern such that it's only checked once. Currently, this
          // approach results in duplicate error messages as this pattern executes
          // more than once.
          if (!IsShloMainFuncOp(main_func_op)) {
            auto error_msg =
                "'main' FuncOp in XlaCallModuleOp missing or has visibility other "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 25 09:43:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/LoggingDeprecatedFeatureHandlerTest.groovy

            handler.init(WarningMode.All, progressBroadcaster, new DefaultProblems(Stub(ProblemEmitter)), problemStream)
        }
    
        def 'logs each deprecation warning only once'() {
            given:
            useStackTrace()
            useStackTrace()
            useStackTrace()
    
            when:
            handler.featureUsed(deprecatedFeatureUsage('feature1'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 16:09:54 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Queues.java

            // multiple elements already available (e.g. LinkedBlockingQueue#drainTo locks only once)
            added += q.drainTo(buffer, numElements - added);
            if (added < numElements) { // not enough elements immediately available; will have to poll
              E e; // written exactly once, by a successful (uninterrupted) invocation of #poll
              while (true) {
                try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top