Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 107 for cherries (0.13 sec)

  1. pkg/ctrlz/topics/collection.go

    			case 2:
    				c.handleItem(w, req, parts[0], parts[1])
    
    			default:
    				c.handleError(w, req, fmt.Sprintf("InvalidUrl %s", req.URL.Path))
    			}
    		})
    }
    
    // mainContext is passed to the template processor and carries information that is used by the main template.
    type mainContext struct {
    	Title       string
    	Collections []string
    	Error       string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/MergeProviderIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    /**
     * Tests {@link org.gradle.api.internal.provider.MergeProvider}.
     */
    class MergeProviderIntegrationTest extends AbstractIntegrationSpec {
    
        def "carries task dependencies"() {
            buildFile << """
                tasks.register('myTask1', StringTask) {
                    string.set('Hello')
                }
                tasks.register('myTask2', StringTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonCommandAction.java

     * Implementations must be multiple use and threadsafe.
     */
    public interface DaemonCommandAction {
    
        /**
         * Executes this action.
         * <p>
         * The execution object is a kind of continuation and also carries the “result” of the action.
         * For example, if an exception arises as part of actioning the command, the exception should be
         * set on the execution object and not thrown. The implication of this is that any exceptions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/PropertyContributor.java

     *
     * @since 4.0.0
     */
    @Experimental
    @Consumer
    public interface PropertyContributor extends SpiService {
        /**
         * Invoked just before session is created with a mutable map that carries collected user properties so far.
         *
         * @param userProperties The mutable user properties, never {@code null}.
         */
        void contribute(Map<String, String> userProperties);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/PropertyDetails.java

         */
        Collection<Method> getSetters();
    
        /**
         * Returns the backing field for this property, if a Groovy implemented property. In this case, the field instead of the getter carries the property annotations.
         */
        @Nullable
        Field getBackingField();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. pkg/test/datasets/Readme.md

    ```plain
    # Input file for the test
    .../dataset/**/<testname>_<stageNo>.yaml
    .../dataset/**/<testname>_<stageNo>_meshconfig.yaml
    .../dataset/**/<testname>_<stageNo>_expected.json
    
    e.g.
    # First stage files. Meshconfig carries over to the next stage
    .../dataset/**/foo_0.yaml
    .../dataset/**/foo_0_meshconfig.yaml
    .../dataset/**/foo_0_expected.json
    # Second stage files.
    .../dataset/**/foo_1.yaml
    .../dataset/**/foo_1_expected.json
    
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  10. cmd/xl-storage-format-v1.go

    import (
    	"encoding/binary"
    	"encoding/hex"
    	"encoding/json"
    	"fmt"
    	"time"
    
    	"github.com/cespare/xxhash/v2"
    	jsoniter "github.com/json-iterator/go"
    )
    
    // XL constants.
    const (
    	// XL metadata file carries per object metadata.
    	xlStorageFormatFileV1 = "xl.json"
    )
    
    // Valid - tells us if the format is sane by validating
    // format version and erasure coding information.
    func (m *xlMetaV1Object) valid() bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top