Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for accomplished (0.15 sec)

  1. 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)
  2. android/guava/src/com/google/common/collect/Tables.java

            }
          };
    
      /**
       * Returns a synchronized (thread-safe) table backed by the specified table. In order to guarantee
       * serial access, it is critical that <b>all</b> access to the backing table is accomplished
       * through the returned table.
       *
       * <p>It is imperative that the user manually synchronize on the returned table when accessing any
       * of its collection views:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "FRSP", argLength: 1, reg: fp11, asm: "FRSP", typ: "Float64"},     // round float to 32-bit value
    
    		// Movement between float and integer registers with no change in bits; accomplished with stores+loads on PPC.
    		// Because the 32-bit load-literal-bits instructions have impoverished addressability, always widen the
    		// data instead and use FMOVDload and FMOVDstore instead (this will also dodge endianess issues).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Sets.java

      /**
       * Returns a synchronized (thread-safe) navigable set backed by the specified navigable set. In
       * order to guarantee serial access, it is critical that <b>all</b> access to the backing
       * navigable set is accomplished through the returned navigable set (or its views).
       *
       * <p>It is imperative that the user manually synchronize on the returned sorted set when
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    //    (from _GCoff), enabling the write barrier, enabling mutator
    //    assists, and enqueueing root mark jobs. No objects may be
    //    scanned until all Ps have enabled the write barrier, which is
    //    accomplished using STW.
    //
    //    b. Start the world. From this point, GC work is done by mark
    //    workers started by the scheduler and by assists performed as
    //    part of allocation. The write barrier shades both the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Maps.java

      }
    
      /**
       * Returns a synchronized (thread-safe) bimap backed by the specified bimap. In order to guarantee
       * serial access, it is critical that <b>all</b> access to the backing bimap is accomplished
       * through the returned bimap.
       *
       * <p>It is imperative that the user manually synchronize on the returned map when accessing any
       * of its collection views:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Multimaps.java

      }
    
      /**
       * Returns a synchronized (thread-safe) multimap backed by the specified multimap. In order to
       * guarantee serial access, it is critical that <b>all</b> access to the backing multimap is
       * accomplished through the returned multimap.
       *
       * <p>It is imperative that the user manually synchronize on the returned multimap when accessing
       * any of its collection views:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

        }
    
        /**
         * This {@link Action} is also a {@link CommandLineActionCreator} that, when run, will create new {@link Action}s that
         * will be immediately executed.
         *
         * This class accomplishes this be maintaining a list of {@link CommandLineActionCreator}s which can each attempt to
         * create an {@link Action} from the given CLI args, and handles the logic for deciding whether or not to continue processing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/link/internal/ld/data.go

    // writeBlocks writes a specified chunk of symbols to the output buffer. It
    // breaks the write up into ≥blockSize chunks to write them out, and schedules
    // as many goroutines as necessary to accomplish this task. This call then
    // blocks, waiting on the writes to complete. Note that we use the sem parameter
    // to limit the number of concurrent writes taking place.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
Back to top