Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 100 for cherries (0.15 sec)

  1. pkg/proxy/types.go

    	Sync()
    	// SyncLoop runs periodic work.
    	// This is expected to run as a goroutine or as the main loop of the app.
    	// It does not return.
    	SyncLoop()
    }
    
    // ServicePortName carries a namespace + name + portname.  This is the unique
    // identifier for a load-balanced service.
    type ServicePortName struct {
    	types.NamespacedName
    	Port     string
    	Protocol v1.Protocol
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:28:37 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/exception/AbstractResolutionFailureException.java

    import javax.annotation.Nullable;
    import java.util.List;
    
    /**
     * Abstract base class for all attribute matching selection failures occurring at any stage of dependency resolution.
     *
     * This exception type carries information about the failure, and implements {@link ResolutionProvider} to provide a
     * list of resolutions that may help the user to fix the problem.  This class is meant to be immutable.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. cmd/format-erasure.go

    type formatErasureV1 struct {
    	formatMetaV1
    	Erasure struct {
    		Version string `json:"version"` // Version of 'xl' format.
    		Disk    string `json:"drive"`   // Disk field carries assigned disk uuid.
    		// JBOD field carries the input disk order generated the first
    		// time when fresh disks were supplied.
    		JBOD []string `json:"jbod"`
    	} `json:"xl"` // Erasure field holds xl format.
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/ResolutionOutputs.java

     */
    @HasInternalProtocol
    public interface ResolutionOutputs {
    
        /**
         * A {@link FileCollection} containing all resolved files. The returned collection
         * carries all task dependencies required to build the resolved files, and when used
         * as a task input the files will be built before the task executes.
         */
        FileCollection getFiles();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblem.java

     */
    package org.apache.maven.api.services;
    
    /**
     * Describes a problem that was encountered during model building. A problem can either be an exception that was thrown
     * or a simple string message. In addition, a problem carries a hint about its source, e.g. the POM file that exhibits
     * the problem.
     *
     */
    public interface ModelProblem extends BuilderProblem {
    
        /**
         * Version
         */
        enum Version {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. src/runtime/trace/annotation.go

    package trace
    
    import (
    	"context"
    	"fmt"
    	"sync/atomic"
    	_ "unsafe"
    )
    
    type traceContextKey struct{}
    
    // NewTask creates a task instance with the type taskType and returns
    // it along with a Context that carries the task.
    // If the input context contains a task, the new task is its subtask.
    //
    // The taskType is used to classify task instances. Analysis tools
    // like the Go execution tracer may assume there are only a bounded
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultBuilderProblem.java

    import org.apache.maven.api.services.BuilderProblem;
    
    /**
     * Describes a problem that was encountered during settings building. A problem can either be an exception that was
     * thrown or a simple string message. In addition, a problem carries a hint about its source, e.g. the settings file
     * that exhibits the problem.
     */
    class DefaultBuilderProblem implements BuilderProblem {
        final String source;
        final int lineNumber;
        final int columnNumber;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleUnsupportedTypesIntegrationTest.groovy

    import java.util.concurrent.Executors.DefaultThreadFactory
    import java.util.concurrent.ThreadFactory
    
    class GradleLifecycleUnsupportedTypesIntegrationTest extends AbstractIntegrationSpec {
    
        def "reports when lifecycle action carries an object of type #baseType"() {
            given:
            settingsFile << """
                abstract class SomeBuildService implements $BuildService.name<${BuildServiceParameters.name}.None> {
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:15:52 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/http/ExchangeCodec.kt

      /**
       * Cancel this stream. Resources held by this stream will be cleaned up, though not synchronously.
       * That may happen later by the connection pool thread.
       */
      fun cancel()
    
      /**
       * Carries an exchange. This is usually a connection, but it could also be a connect plan for
       * CONNECT tunnels. Note that CONNECT tunnels are significantly less capable than connections.
       */
      interface Carrier {
        val route: Route
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/WithSideEffectProviderTest.groovy

            "none have"                            | null              | 0        | null       | 0         | null
        }
    
        def "carries the side effect in the execution time value for a provider of a fixed value"() {
            given:
            def sideEffect = Mock(ValueSupplier.SideEffect)
            def parent = Providers.of(23)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 06:53:07 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top