Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 489 for mechanisms (0.17 sec)

  1. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

     * Additionally, users can monitor state transitions with the {@linkplain Listener listener}
     * mechanism.
     *
     * <p>While it is recommended that service lifecycles be managed via this class, state transitions
     * initiated via other mechanisms do not impact the correctness of its methods. For example, if the
     * services are started by some mechanism besides {@link #startAsync}, the listeners will be invoked
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/ClassPath.java

     *       href="https://openjdk.java.net/jeps/220">{@code jrt:/} URLs</a>, among <a
     *       href="https://github.com/classgraph/classgraph/wiki/Classpath-specification-mechanisms">others</a>.
     *   <li>It does not know how to look for classes when running under an Android VM. (ClassGraph does
     *       not support this directly, either, but ClassGraph documents how to <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  3. tests/integration/README.md

    ### Test Selection
    
    When no flags are specified, the test framework will run all applicable tests. It is possible to filter in/out specific
    tests using 2 mechanisms:
    
    1. The standard ```-run <regexp>``` flag, as exposed by Go's own test framework.
    1. ```--istio.test.select <filter-expr>``` flag to select/skip framework-aware tests that use labels.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    //
    // The pseudo resource record is part of the extension mechanisms for DNS
    // as defined in RFC 6891.
    type OPTResource struct {
    	Options []Option
    }
    
    // An Option represents a DNS message option within OPTResource.
    //
    // The message option is part of the extension mechanisms for DNS as
    // defined in RFC 6891.
    type Option struct {
    	Code uint16 // option code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/ServiceManager.java

     * Additionally, users can monitor state transitions with the {@linkplain Listener listener}
     * mechanism.
     *
     * <p>While it is recommended that service lifecycles be managed via this class, state transitions
     * initiated via other mechanisms do not impact the correctness of its methods. For example, if the
     * services are started by some mechanism besides {@link #startAsync}, the listeners will be invoked
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. src/runtime/os_linux.go

    // that the profiler uses, returning whether the delivery should be processed.
    // To be processed, a signal delivery from a known profiling mechanism should
    // correspond to the best profiling mechanism available to this thread. Signals
    // from other sources are always considered valid.
    //
    //go:nosplit
    func validSIGPROF(mp *m, c *sigctxt) bool {
    	code := int32(c.sigcode())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    It's a common requirement to run subsets of a test suite, such as when you're fixing a bug or developing a new test case. Gradle provides two mechanisms to do this:
    
     * Filtering (the preferred option)
     * Test inclusion/exclusion
    
    Filtering supersedes the inclusion/exclusion mechanism, but you may still come across the latter in the wild.
    
    With Gradle's test filtering you can select tests to run based on:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  8. tensorflow/BUILD

        deps = select({
            "//conditions:default": ["@com_github_grpc_grpc//:grpc++"],
        }),
    )
    # copybara:comment_end
    
    # A shared object which includes registration mechanisms for ops and
    # kernels. Does not include the implementations of any ops or kernels. Instead,
    # the library which loads libtensorflow_framework.so
    # (e.g. _pywrap_tensorflow_internal.so for Python, libtensorflow.so for the C
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  9. doc/go_mem.html

    a particular object is no longer reachable by the program.
    A call to <code>SetFinalizer(x, f)</code> is synchronized before the finalization call <code>f(x)</code>.
    </p>
    
    <h3 id="more">Additional Mechanisms</h3>
    
    <p>
    The <code>sync</code> package provides additional synchronization abstractions,
    including <a href="/pkg/sync/#Cond">condition variables</a>,
    <a href="/pkg/sync/#Map">lock-free maps</a>,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    The `generateReport` task is wired to the `build` task.
    
    By running the build, we observe that our start script generation task is executed, and it's `UP-TO-DATE` in subsequent builds.
    Gradle's incremental building and caching mechanisms work seamlessly with custom tasks:
    
    [source,text]
    ----
    ./gradlew :app:build
    ----
    
    [source, text]
    ----
    > Task :buildSrc:checkKotlinGradlePluginConfigurationErrors
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
Back to top