Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 822 for run1 (0.06 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

        }
    
        def "runs actions when command is run"() {
            Runnable command = Mock()
    
            when:
            coordinator.runCommand(command, "command")
    
            then:
            1 * onStartCommand.run()
            1 * command.run()
            1 * onFinishCommand.run()
            0 * _._
        }
    
        def "runs actions when more commands are run"() {
            Runnable command = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    If your PR includes any changes to the Gradle Public API, it will cause the binary compatibility check to fail.
    The binary compatibility check runs as a part of the broader sanity check.
    The latter runs on every PR and is a prerequisite for merging.
    
    If you run the sanity check locally with the `./gradlew sanityCheck`, you can see the binary compatibility error in the output.
    It looks like the following:
    
    ```
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/predicates.go

    	if x == y {
    		return true
    	}
    
    	if c.ignoreInvalids && (!isValid(x) || !isValid(y)) {
    		return true
    	}
    
    	switch x := x.(type) {
    	case *Basic:
    		// Basic types are singletons except for the rune and byte
    		// aliases, thus we cannot solely rely on the x == y check
    		// above. See also comment in TypeName.IsAlias.
    		if y, ok := y.(*Basic); ok {
    			return x.kind == y.kind
    		}
    
    	case *Array:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/MoreExecutors.java

      }
    
      /**
       * Creates an executor service that runs each task in the thread that invokes {@code
       * execute/submit}, as in {@code ThreadPoolExecutor.CallerRunsPolicy}. This applies both to
       * individually submitted tasks and to collections of tasks submitted via {@code invokeAll} or
       * {@code invokeAny}. In the latter case, tasks will run serially on the calling thread. Tasks are
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/inline.go

    		// it is part of a left-flanking delimiter run and either
    		// (a) not part of a right-flanking delimiter run or
    		// (b) part of a right-flanking delimiter run preceded by a Unicode punctuation character.”
    
    		// “A double __ can open strong emphasis iff
    		// it is part of a left-flanking delimiter run and either
    		// (a) not part of a right-flanking delimiter run or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. pkg/test/framework/test.go

    	TopLevel() Test
    	// Run the test, supplied as a lambda.
    	Run(fn func(t TestContext))
    	// RunParallel runs this test in parallel with other children of the same parent test/suite. Under the hood,
    	// this relies on Go's t.Parallel() and will, therefore, have the same behavior.
    	//
    	// A parallel test will run in parallel with siblings that share the same parent test. The parent test function
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      public static final Integer m5 = -5;
      public static final Integer m6 = -6;
      public static final Integer m10 = -10;
    
      /**
       * Runs Runnable r with a security policy that permits precisely the specified permissions. If
       * there is no current security manager, the runnable is run twice, both with and without a
       * security manager. We require that any security manager permit getPolicy/setPolicy.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

            given:
            withParallelThreads(2)
    
            when:
            buildFile << """
                bPing.shouldRunAfter aPing
            """
    
            then:
            2.times {
                blockingServer.expectConcurrent(":aPing", ":bPing")
                run ":aPing", ":bPing"
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testplugin/plugin_test.go

    	run(t, "./issue24351.exe")
    }
    
    func TestIssue25756(t *testing.T) {
    	globalSkip(t)
    	goCmd(t, "build", "-buildmode=plugin", "-o", "life.so", "./issue25756/plugin")
    	goCmd(t, "build", "-o", "issue25756.exe", "./issue25756/main.go")
    	// Fails intermittently, but 20 runs should cause the failure
    	for n := 20; n > 0; n-- {
    		t.Run(fmt.Sprint(n), func(t *testing.T) {
    			t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

        bool use_tuple_args, bool use_resource_updates_for_aliases,
        const XlaShapeLayoutHelpers::ShapeDeterminationFns shape_determination_fns,
        XlaCompilationResult* compilation_result);
    
    // Runs MLIR Bridge on a MLIR module.
    //
    // If lower_to_xla_hlo is true then compiles down into XLA HLO, generates all
    // accompanying metadata and stores them in CompilationResult.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top