Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for executor (0.24 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            }
    
            ExecutorService createExecutor(int parallelism) {
                //
                // We need an executor that will not block.
                // We can't use work stealing, as we are building a graph
                // and this could lead to cycles where a thread waits for
                // a task to finish, then execute another one which waits
                // for the initial task...
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  2. .bazelrc

    # BEGIN TF CACHE HELPER OPTIONS
    # Options when using remote execution
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Thu May 02 19:34:20 GMT 2024
    - 52.8K bytes
    - Viewed (2)
  3. docs/en/docs/advanced/settings.md

    ```
    
    your program could execute like this:
    
    ```mermaid
    sequenceDiagram
    
    participant code as Code
    participant function as say_hi()
    participant execute as Execute function
    
        rect rgba(0, 255, 0, .1)
            code ->> function: say_hi(name="Camila")
            function ->> execute: execute function code
            execute ->> code: return the result
        end
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 15.7K bytes
    - Viewed (0)
  4. architecture/build-state-model.md

    The build tree state is managed by the `BuildTreeState` class.
    An instance is created at the start of a build execution and discarded at the end of the execution.
    
    ### Build state
    
    The "build state" holds the state for a build within the build definition for a single build execution, and is contained by the build tree state.
    
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Sun May 05 22:45:11 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  5. doc/go_spec.html

    </pre>
    
    <pre>
    for i := 0; i &lt; 10; i++ {
    	f(i)
    }
    </pre>
    
    <p>
    If non-empty, the init statement is executed once before evaluating the
    condition for the first iteration;
    the post statement is executed after each execution of the block (and
    only if the block was executed).
    Any element of the ForClause may be empty but the
    <a href="#Semicolons">semicolons</a> are
    required unless there is only a condition.
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  6. maven-api-impl/pom.xml

                    <param>minimalVersion=4.0.0</param>
                  </params>
                </configuration>
              </execution>
              <execution>
                <id>modello-site-docs</id>
                <phase>none</phase>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  7. architecture/platforms.md

            core_configuration["core-configuration module"]
            style core_configuration stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px,color:#000;
    
            core_execution["core-execution module"]
            style core_execution stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px,color:#000;
        end
        style core fill:#c2e0f4,stroke:#3498db,stroke-width:2px,color:#000;
    
        documentation["documentation module"]
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Thu May 02 06:42:46 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  8. internal/logger/logger.go

    }
    
    // LogAlwaysIf prints a detailed error message during
    // the execution of the server.
    func LogAlwaysIf(ctx context.Context, subsystem string, err error, errKind ...interface{}) {
    	if err == nil {
    		return
    	}
    	logIf(ctx, subsystem, err, errKind...)
    }
    
    // LogIf prints a detailed error message during
    // the execution of the server, if it is not an
    // ignored error.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat May 04 00:17:57 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  9. maven-compat/src/test/java/org/apache/maven/repository/LegacyRepositorySystemTest.java

    import org.apache.maven.artifact.resolver.ArtifactResolutionResult;
    import org.apache.maven.artifact.resolver.ResolutionErrorHandler;
    import org.apache.maven.execution.DefaultMavenExecutionRequest;
    import org.apache.maven.execution.DefaultMavenExecutionResult;
    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.internal.impl.DefaultRepositoryFactory;
    import org.apache.maven.internal.impl.DefaultSession;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 8.8K bytes
    - Viewed (0)
  10. .teamcity/subprojects.json

        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "execution",
        "path": "platforms/core-execution/execution",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "execution-e2e-tests",
        "path": "platforms/core-execution/execution-e2e-tests",
        "unitTests": false,
        "functionalTests": true,
        "crossVersionTests": false
    Json
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Tue May 07 22:21:19 GMT 2024
    - 26.8K bytes
    - Viewed (0)
Back to top