Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 65 for accomplished (0.16 sec)

  1. android/guava/src/com/google/common/base/FinalizableReferenceQueue.java

     * ServerSocket} is closed even if the {@code MyServer} object is garbage-collected without calling
     * its {@code close} method. You could use a finalizer to accomplish this, but that has a
     * number of well-known problems. Here is how you might use this class instead:
     *
     * <pre>{@code
     * public class MyServer implements Closeable {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/FinalizableReferenceQueue.java

     * ServerSocket} is closed even if the {@code MyServer} object is garbage-collected without calling
     * its {@code close} method. You could use a finalizer to accomplish this, but that has a
     * number of well-known problems. Here is how you might use this class instead:
     *
     * <pre>{@code
     * public class MyServer implements Closeable {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    For testing with the build cache, the build cache directory should be cleaned between tests.
    The easiest way to accomplish this is to configure the local build cache to use a temporary directory.
    
    === Example: Clean build cache between tests
    
    [source,groovy,indent=0]
    .BuildLogicFunctionalTest.groovy
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. src/internal/coverage/cfile/emitdata_test.go

    // what we'd like is for package coverage data (that is, coverage for
    // routines in "runtime/coverage") to be incorporated into the test
    // run from the "harness.exe" runs we've just done. We can accomplish
    // this by doing a merge from the harness gocoverdir's to the test
    // gocoverdir.
    func upmergeCoverData(t *testing.T, gocoverdir string, mode string) {
    	if testing.CoverMode() != mode {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    [[publishing_maven:snapshot_and_release_repositories]]
    === Snapshot and release repositories
    
    It is a common practice to publish snapshots and releases to different Maven repositories. A simple way to accomplish this is to configure the repository URL based on the project version. The following sample uses one URL for versions that end with "SNAPSHOT" and a different URL for the rest:
    
    .Configuring repository URL based on project version
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Ascii.java

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public final class Ascii {
    
      private Ascii() {}
    
      /* The ASCII control characters, per RFC 20. */
      /**
       * Null ('\0'): The all-zeros character which may serve to accomplish time fill and media fill.
       * Normally used as a C string terminator.
       *
       * <p>Although RFC 20 names this as "Null", note that it is distinct from the C/C++ "NULL"
       * pointer.
       *
       * @since 8.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Ascii.java

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public final class Ascii {
    
      private Ascii() {}
    
      /* The ASCII control characters, per RFC 20. */
      /**
       * Null ('\0'): The all-zeros character which may serve to accomplish time fill and media fill.
       * Normally used as a C string terminator.
       *
       * <p>Although RFC 20 names this as "Null", note that it is distinct from the C/C++ "NULL"
       * pointer.
       *
       * @since 8.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

        }
    }
    ----
    =====
    ====
    
    [IMPORTANT]
    ====
    To query incremental changes for an input file property, that property must always return the same instance.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/subr.go

    	// types: structs parent the types they embed, and types parent their
    	// fields or methods. Our goal here is to find the shortest path to
    	// a field or method named s in the subtree rooted at t. To accomplish
    	// that, we iteratively perform depth-first searches of increasing depth
    	// until we either find the named field/method or exhaust the tree.
    	for d := 0; ; d++ {
    		if d > len(dotlist) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    If a project registers multiple artifact transforms, needs to use an artifact transform to produce a matching variant for a consumer's request, and multiple artifact transforms could each be used to accomplish this, then Gradle will fail with an ambiguous transformation error like the following:
    
    [listing]
    ----
    > Could not resolve all dependencies for configuration ':resolveMe'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top