Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for foo$i (0.05 sec)

  1. testing/soak/src/integTest/groovy/org/gradle/launcher/daemon/ClassLoaderLeakAvoidanceSoakTest.groovy

                        println new Foo0()
                    }
                }
            """
    
            expect:
            for(int i = 0; i < 35; i++) {
                buildFile.text = buildFile.text.replace("Foo$i", "Foo${i + 1}")
                executer.withBuildJvmOpts("-Xmx256m", "-XX:+HeapDumpOnOutOfMemoryError")
                assert succeeds("myTask")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. testing/performance/src/templates/task-creation/build.gradle

     */
    
    @groovy.transform.CompileStatic
    void createTasks(Project p, int iterations) {
        for (int i=0; i<iterations; i++) {
            p.task("foo\$i", type: Copy)
        }
    }
    
    if (tasks.metaClass.respondsTo(tasks, "register")) {
        for (int i=0; i<$taskCount; i++) {
           project.tasks.register("foo\$i", Copy)
        }
    } else {
        createTasks(project, $taskCount)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 974 bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/security_test.go

    	{"-march=@dawn"},
    	{"-march=-dawn"},
    	{"-mcmodel=@model"},
    	{"-mlarge-data-threshold=@12"},
    	{"-std=@c99"},
    	{"-std=-c99"},
    	{"-x@c"},
    	{"-x-c"},
    	{"-D", "@foo"},
    	{"-D", "-foo"},
    	{"-I", "@foo"},
    	{"-I", "-foo"},
    	{"-I", "=@obj"},
    	{"-include", "@foo"},
    	{"-framework", "-Caffeine"},
    	{"-framework", "@Home"},
    	{"-x", "--c"},
    	{"-x", "@obj"},
    }
    
    func TestCheckCompilerFlags(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/AggregatingProblemConsumerTest.groovy

            def emitter = new AggregatingProblemConsumer(eventConsumer, { new OperationIdentifier(1) })
    
    
            when:
            for (int i = 0; i < 3; i++) {
                emitter.emit(createMockProblem("foo$i"))
            }
    
            then:
            3 * eventConsumer.progress(_)
        }
    
        def "emit summary if there are deduplicate events"() {
            given:
            def eventConsumer = Mock(ProgressEventConsumer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:19 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Queues.java

       * ...
       * synchronized (queue) {  // Must synchronize on queue!
       *   Iterator<E> i = queue.iterator(); // Must be in synchronized block
       *   while (i.hasNext()) {
       *     foo(i.next());
       *   }
       * }
       * }</pre>
       *
       * <p>Failure to follow this advice may result in non-deterministic behavior.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. src/html/template/js.go

    // tokens, regular expression literal tokens, or division operators.
    //
    // This fails on some valid but nonsensical JavaScript programs like
    // "x = ++/foo/i" which is quite different than "x++/foo/i", but is not known to
    // fail on any known useful programs. It is based on the draft
    // JavaScript 2.0 lexical grammar and requires one token of lookbehind:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Queues.java

       * ...
       * synchronized (queue) {  // Must synchronize on queue!
       *   Iterator<E> i = queue.iterator(); // Must be in synchronized block
       *   while (i.hasNext()) {
       *     foo(i.next());
       *   }
       * }
       * }</pre>
       *
       * <p>Failure to follow this advice may result in non-deterministic behavior.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18K bytes
    - Viewed (0)
  8. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

            // Arrange
            CliRequest request = new CliRequest(
                    new String[] {
                        "-Dfoo=bar",
                        "-DvalFound=s${foo}i",
                        "-DvalNotFound=s${foz}i",
                        "-DvalRootDirectory=${session.rootDirectory}/.mvn/foo",
                        "-DvalTopDirectory=${session.topDirectory}/pom.xml",
                        "-f",
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Tables.java

       * ...
       * synchronized (table) {  // Synchronizing on table, not row!
       *   Iterator<Entry<C, V>> i = row.entrySet().iterator(); // Must be in synchronized block
       *   while (i.hasNext()) {
       *     foo(i.next());
       *   }
       * }
       * }</pre>
       *
       * <p>Failure to follow this advice may result in non-deterministic behavior.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 22:45:41 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Tables.java

       * ...
       * synchronized (table) {  // Synchronizing on table, not row!
       *   Iterator<Entry<C, V>> i = row.entrySet().iterator(); // Must be in synchronized block
       *   while (i.hasNext()) {
       *     foo(i.next());
       *   }
       * }
       * }</pre>
       *
       * <p>Failure to follow this advice may result in non-deterministic behavior.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top