Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,268 for guarantee (0.2 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/Connection.java

     * <li>should allow stopping or requesting stopping from a different thread than receiving/dispatching</li>
     * <li>don't guarantee allowing multiple threads dispatching</li>
     * </ul>
     */
    public interface Connection<T> extends Dispatch<T>, Receive<T>, Stoppable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/GradleEnterprisePluginEndOfBuildListener.java

    import org.gradle.api.problems.internal.Problem;
    
    import javax.annotation.Nullable;
    import java.util.Collection;
    
    /**
     * Used to signal the end of build to the plugin.
     *
     * Uses a specific listener to guarantee being invoked after user buildFinished callbacks.
     * Expected to be invoked once for a build tree.
     *
     * Implemented by the Enterprise plugin.
     */
    public interface GradleEnterprisePluginEndOfBuildListener {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.idea.GenerateIdeaModule.xml

                        (sometimes the <replaceable>project.name</replaceable> is prefixed with parts of <replaceable>${project.path}</replaceable> to guarantee uniqueness).
                        Bear in mind that usually it is easier to use moduleName property instead of outputFile property.
                    </td>
                    <td/>
                </tr>
            </table>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.eclipse.model.EclipseProject.xml

                </thead>
                <tr>
                    <td>name</td>
                    <td><literal><replaceable>${project.name}</replaceable> (sometimes prefixed with parts of <replaceable>${project.path}</replaceable> to guarantee uniqueness)</literal></td>
                </tr>
                <tr>
                    <td>comment</td>
                    <td><literal>project.description</literal></td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/failure/TestFailureMapper.java

    /**
     * A mapper that maps a {@link Throwable} thrown during test execution into a {@link TestFailure}.
     * <p>
     * Implementors of this class should not depend on classes outside the standard library, as there is no guarantee that they will be on the test VM's classpath.
     * Instead, they should rely completely on reflection.
     */
    @NonNullApi
    public abstract class TestFailureMapper {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:48:53 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/ExecutionList.java

     * instance contains a list of listeners, each with an associated {@code Executor}, and guarantees
     * that every {@code Runnable} that is {@linkplain #add added} will be executed after {@link
     * #execute()} is called. Any {@code Runnable} added after the call to {@code execute} is still
     * guaranteed to execute. There is no guarantee, however, that listeners will be executed in the
     * order that they are added.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:17:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ExecutionList.java

     * instance contains a list of listeners, each with an associated {@code Executor}, and guarantees
     * that every {@code Runnable} that is {@linkplain #add added} will be executed after {@link
     * #execute()} is called. Any {@code Runnable} added after the call to {@code execute} is still
     * guaranteed to execute. There is no guarantee, however, that listeners will be executed in the
     * order that they are added.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:17:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. src/cmd/pprof/README

    ../vendor/github.com/google/pprof.
    
    Two important notes:
    
    1. Using github.com/google/pprof directly (for example, after installing
    with "go get") should work with Go programs, but we cannot guarantee that.
    What we test is that the "go tool pprof" shipped with each Go release works
    with programs from that release.
    
    2. Pprof is used inside Google for C++, Java, and Go programs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 19:51:01 UTC 2017
    - 905 bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/base/public/BUILD

    # Experimental C++ APIs for TensorFlow.
    # New TF C++ APIs under the tensorflow::cc namespace aim to guarantee ABI stability.
    # Users are expected to compile against public c++ headers, and link against
    # libtensorflow (https://www.tensorflow.org/install/lang_c).
    # We aim to achieve ABI stability in new C++ APIs by only using types
    # on the API surface that:
    # 1. Have a header-only implementation
    # 2. Are std:: types
    # 3. Wrap an opaque C type
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/11-language-change.yml

            - label: "Does this affect error handling?"
            - label: "Is this about generics?"
            - label: "Is this change backward compatible? Breaking the Go 1 compatibility guarantee is a large cost and requires a large benefit"
    
      - type: textarea
        id: related-proposals
        attributes:
          label: Has this idea, or one like it, been proposed before?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 20:49:24 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top