Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,380 for ONCE (0.03 sec)

  1. maven-api-impl/src/test/remote-repo/org/apache/maven/its/plugins/maven-it-plugin/0.1/maven-it-plugin-0.1.jar

    org.apache.maven.plugin.coreit.DMojo java per-lookup once-per-session java Does nothing. false true false false false true generate-sources org.apache.maven.plugin.coreit.AMojo java per-lookup once-per-session models java.lang.String[] false true version java.lang.String false true ${version} generate-test-metadata Does nothing. test false true false false false true process-test-classes org.apache.maven.plugin.coreit.EMojo java per-lookup once-per-session it Does nothing. compile false true false...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

        your response for more than 2 weeks.
    
    **4. Approved**
    
    -   Once the PR is approved, it gets `kokoro:force-run` label applied and it
        initiates CI/CD tests.
    -   We can't move forward if these tests fail.
    -   In such situations, we may request you to make further changes to your PR
        for the tests to pass.
    -   Once the tests pass, we now bring all the code into the internal code base,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/DeferrableTest.groovy

    import spock.lang.Specification
    
    import java.util.concurrent.atomic.AtomicInteger
    
    class DeferrableTest extends Specification {
    
        def "mapping #description invocations only creates the second invocation once"() {
            def mappingCount = new AtomicInteger()
    
            def mapped = deferred.map { Integer input ->
                mappingCount.incrementAndGet()
                return input + 25
            }
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. test/chanlinear.go

    		// the effect that a constant amount of overhead has
    		// on the computed ratio.
    		if t1 < 1*time.Second {
    			n *= 2
    			continue
    		}
    		// Once the test runs long enough for n ops,
    		// try to get the right ratio at least once.
    		// If five in a row all fail, give up.
    		if fails++; fails >= 5 {
    			panic(fmt.Sprintf("%s: too slow: %d channels: %v; %d channels: %v\n",
    				typ, n, t1, 2*n, t2))
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/gatewayclass_test.go

    			}
    			return nil
    		}, retry.Timeout(time.Second*3))
    	}
    
    	// Class should be created initially
    	expectClass(features.GatewayAPIDefaultGatewayClass, features.ManagedGatewayController)
    
    	// Once we delete it, it should be added back
    	deleteClass(features.GatewayAPIDefaultGatewayClass)
    	expectClass(features.GatewayAPIDefaultGatewayClass, features.ManagedGatewayController)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 08:41:13 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/internal/saved_model_api_test.cc

      TFE_ContextOptions* opts = TFE_NewContextOptions();
      bool use_tfrt = GetParam();
      if (use_tfrt) {
        TFE_DeleteContextOptions(opts);
        TF_DeleteStatus(status);
        GTEST_SKIP();  // TODO(chky) : Enable this once TFRT is open sourced.
      }
    
      TFE_ContextOptionsSetTfrt(opts, use_tfrt);
    
      TFE_Context* ctx = TFE_NewContext(opts, status);
      ASSERT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 08:08:45 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/script/conds.go

    }
    
    type onceCond struct {
    	once  sync.Once
    	v     bool
    	err   error
    	eval  func() (bool, error)
    	usage CondUsage
    }
    
    func (l *onceCond) Usage() *CondUsage { return &l.usage }
    
    func (l *onceCond) Eval(s *State, suffix string) (bool, error) {
    	if suffix != "" {
    		return false, ErrUsage
    	}
    	l.once.Do(func() { l.v, l.err = l.eval() })
    	return l.v, l.err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 5K bytes
    - Viewed (0)
  8. mvnw.cmd

    if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
    
    @REM Execute a user defined script before this one
    if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
    @REM check for pre script, once with legacy .bat ending and once with .cmd ending
    if exist "%USERPROFILE%\mavenrc_pre.bat" call "%USERPROFILE%\mavenrc_pre.bat" %*
    if exist "%USERPROFILE%\mavenrc_pre.cmd" call "%USERPROFILE%\mavenrc_pre.cmd" %*
    :skipRcPre
    
    @setlocal
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/ConfigurableFileTreeIntegrationTest.groovy

            file("src/ignore-3.txt").createFile()
    
            run("generate")
    
            then:
            result.assertTaskNotSkipped(":generate")
            output.count("checking") == 22 // checked twice, once to snapshot and once when the task action runs. Should be memoized when snapshotting
            outputContains("checking a/a.txt")
            outputContains("checking d/d.txt")
            file("out.txt").text == "a.txt,c.txt,d.txt"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  10. plugin/pkg/admission/security/podsecurity/admission.go

    var _ genericadmissioninit.WantsExternalKubeClientSet = &Plugin{}
    
    var (
    	defaultRecorder     *metrics.PrometheusRecorder
    	defaultRecorderInit sync.Once
    )
    
    func getDefaultRecorder() metrics.Recorder {
    	// initialize and register to legacy metrics once
    	defaultRecorderInit.Do(func() {
    		defaultRecorder = metrics.NewPrometheusRecorder(podsecurityadmissionapi.GetAPIVersion())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 08:49:11 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top