Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 114 for cherries (0.19 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. subprojects/core-api/src/main/java/org/gradle/api/attributes/HasAttributes.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.attributes;
    
    /**
     * Represents something that carries attributes by utilizing an
     * {@link AttributeContainer}
     *
     * @since 3.3
     */
    public interface HasAttributes {
    
        /**
         * Returns the attributes
         */
        AttributeContainer getAttributes();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:53 UTC 2018
    - 894 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. cmd/format-meta.go

    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    // Format related consts
    const (
    	// Format config file carries backend format specific details.
    	formatConfigFile = "format.json"
    )
    
    const (
    	// Version of the formatMetaV1
    	formatMetaVersionV1 = "1"
    )
    
    // format.json currently has the format:
    // {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. subprojects/core-api/src/main/java/org/gradle/api/attributes/HasConfigurableAttributes.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.attributes;
    
    import org.gradle.api.Action;
    
    /**
     * Represents something that carries attributes by utilizing an
     * {@link AttributeContainer} that is configurable.
     *
     * @param <SELF> type extending this interface
     *
     * @since 3.4
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:53 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  10. 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)
Back to top