Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. pkg/kube/krt/collection.go

    //   - recomputeMu is responsible for ensuring there is mutually exclusive access to recomputation. Typically, in a controller
    //     pattern this would be accomplished by a queue. However, these add operational and performance overhead that is not required here.
    //     Instead, we ensure at most one goroutine is recomputing things at a time.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. 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: Mon Mar 04 22:45:41 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    // change to any config object, or when any priority level that is
    // undesired becomes completely unused, all the config objects are
    // read and processed as a whole.
    
    const (
    	// Borrowing among priority levels will be accomplished by periodically
    	// adjusting the current concurrency limits (CurrentCLs);
    	// borrowingAdjustmentPeriod is that period.
    	borrowingAdjustmentPeriod = 10 * time.Second
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top