Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for accomplished (0.25 sec)

  1. src/log/slog/example_logvaluer_group_test.go

    		slog.String("first", n.First),
    		slog.String("last", n.Last))
    }
    
    func ExampleLogValuer_group() {
    	n := Name{"Perry", "Platypus"}
    	slog.Info("mission accomplished", "agent", n)
    
    	// JSON Output would look in part like:
    	// {
    	//     ...
    	//     "msg": "mission accomplished",
    	//     "agent": {
    	//         "first": "Perry",
    	//         "last": "Platypus"
    	//     }
    	// }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 20:55:33 UTC 2023
    - 825 bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Queues.java

        return added;
      }
    
      /**
       * Returns a synchronized (thread-safe) queue backed by the specified queue. In order to guarantee
       * serial access, it is critical that <b>all</b> access to the backing queue is accomplished
       * through the returned queue.
       *
       * <p>It is imperative that the user manually synchronize on the returned queue when accessing the
       * queue's iterator:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. src/compress/flate/dict_decoder.go

    // LZ77 decompresses data through sequences of two forms of commands:
    //
    //   - Literal insertions: Runs of one or more symbols are inserted into the data
    //     stream as is. This is accomplished through the writeByte method for a
    //     single symbol, or combinations of writeSlice/writeMark for multiple symbols.
    //     Any valid stream must start with a literal insertion if no preset dictionary
    //     is used.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Queues.java

        return added;
      }
    
      /**
       * Returns a synchronized (thread-safe) queue backed by the specified queue. In order to guarantee
       * serial access, it is critical that <b>all</b> access to the backing queue is accomplished
       * through the returned queue.
       *
       * <p>It is imperative that the user manually synchronize on the returned queue when accessing the
       * queue's iterator:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/outbuf.go

    //     backed buffer that will get synced to disk.
    //   - Munmap the output file
    //
    // And finally, it provides a mechanism by which you can multithread the
    // writing of output files. This mechanism is accomplished by copying a OutBuf,
    // and using it in the thread/goroutine.
    //
    // Parallel OutBuf is intended to be used like:
    //
    //	func write(out *OutBuf) {
    //	  var wg sync.WaitGroup
    //	  for i := 0; i < 10; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:51:29 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/MoreObjects.java

       * Predicates.notNull())}, static importing as necessary.
       *
       * <p><b>Note:</b> if {@code first} is represented as an {@link Optional}, this can be
       * accomplished with {@link Optional#or(Object) first.or(second)}. That approach also allows for
       * lazy evaluation of the fallback instance, using {@link Optional#or(Supplier)
       * first.or(supplier)}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/reference/third_party_integration.adoc

     * The Gradle build uses the tool
     * The tool executes the Gradle build
    
    The former case is typically <<custom_plugins.adoc#custom_plugins,implemented as a Gradle plugin>>. The latter can be accomplished by embedding Gradle through the Tooling API as described below.
    
    [[embedding]]
    == Embedding Gradle using the Tooling API
    
    [[sec:embedding_introduction]]
    === Introduction to the Tooling API
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/MoreObjects.java

       * Predicates.notNull())}, static importing as necessary.
       *
       * <p><b>Note:</b> if {@code first} is represented as an {@link Optional}, this can be
       * accomplished with {@link Optional#or(Object) first.or(second)}. That approach also allows for
       * lazy evaluation of the fallback instance, using {@link Optional#or(Supplier)
       * first.or(supplier)}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  9. src/net/smtp/smtp.go

    // first, a blank line, and then the message body. The lines of msg
    // should be CRLF terminated. The msg headers should usually include
    // fields such as "From", "To", "Subject", and "Cc".  Sending "Bcc"
    // messages is accomplished by including an email address in the to
    // parameter but not including it in the msg headers.
    //
    // The SendMail function and the net/smtp package are low-level
    // mechanisms and provide no support for DKIM signing, MIME
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/RateLimiter.java

     *     executor.execute(task);
     *   }
     * }
     * }</pre>
     *
     * <p>As another example, imagine that we produce a stream of data, and we want to cap it at 5kb per
     * second. This could be accomplished by requiring a permit per byte, and specifying a rate of 5000
     * permits per second:
     *
     * <pre>{@code
     * final RateLimiter rateLimiter = RateLimiter.create(5000.0); // rate = 5000 permits per second
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 18.2K bytes
    - Viewed (0)
Back to top