Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for cherries (0.14 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"chart_with_downwards_trend":           "\U0001f4c9",
    	"chart_with_upwards_trend":             "\U0001f4c8",
    	"checkered_flag":                       "\U0001f3c1",
    	"cheese":                               "\U0001f9c0",
    	"cherries":                             "\U0001f352",
    	"cherry_blossom":                       "\U0001f338",
    	"chess_pawn":                           "\u265f\ufe0f",
    	"chestnut":                             "\U0001f330",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http2/FlowControlListener.kt

       * [WindowCounter] generally carries the client view of total and acked bytes.
       */
      fun receivingStreamWindowChanged(
        streamId: Int,
        windowCounter: WindowCounter,
        bufferSize: Long,
      )
    
      /**
       * Notification that the receiving connection flow control window has changed.
       * [WindowCounter] generally carries the client view of total and acked bytes.
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. src/runtime/proflabel.go

    	// most-recent labels write separately.)
    	//
    	// racereleasemerge is like a full read-modify-write on
    	// labelSync, rather than just a store-release, so it carries
    	// a dependency on the previous racereleasemerge, which
    	// ultimately carries forward to the acquire in profBuf.read.
    	if raceenabled {
    		racereleasemerge(unsafe.Pointer(&labelSync))
    	}
    	getg().labels = labels
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/UserResponse.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.protocol;
    
    /**
     * Carries the user's response to a {@link org.gradle.internal.logging.events.PromptOutputEvent}.
     */
    public class UserResponse extends InputMessage {
        private final String response;
    
        public UserResponse(String response) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1005 bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/ForwardInput.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.launcher.daemon.protocol;
    
    /**
     * Carries some text that should be made available via the daemon's System.in
     */
    public class ForwardInput extends InputMessage {
        private final byte[] bytes;
    
        public ForwardInput(byte[] bytes) {
            this.bytes = bytes;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 966 bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

            }
        }
    
        /**
         * Carries either a value or some diagnostic information about where the value would have come from, had it been present.
         * <p>
         * If value is present, it can optionally carry a {@link #getSideEffect() side effect}.
         * A {@link #isMissing() missing} value never carries a side effect.
         */
        interface Value<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/feature/feature.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package feature
    
    // Features carries feature gate values used by various plugins.
    // This struct allows us to break the dependency of the plugins on
    // the internal k8s features pkg.
    type Features struct {
    	EnableDynamicResourceAllocation              bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/http2/StreamResetException.kt

     * limitations under the License.
     */
    package okhttp3.internal.http2
    
    import java.io.IOException
    
    /** Thrown when an HTTP/2 stream is canceled without damage to the socket that carries it. */
    class StreamResetException(
      @JvmField val errorCode: ErrorCode,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 869 bytes
    - Viewed (0)
  9. cmd/admin-handlers-config-kv.go

    		return
    	}
    	if restoreID == "all" {
    		chEntries, err := listServerConfigHistory(ctx, objectAPI, false, -1)
    		if err != nil {
    			writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    			return
    		}
    		for _, chEntry := range chEntries {
    			if err = delServerConfigHistory(ctx, objectAPI, chEntry.RestoreID); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonLogFile.java

     */
    
    package org.gradle.launcher.daemon.server;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.io.File;
    
    /**
     * Carries the location of the log file for the current daemon.
     */
    @ServiceScope(Scope.Global.class)
    public class DaemonLogFile {
        private final File file;
    
        public DaemonLogFile(File file) {
            this.file = file;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:45:11 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top