Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,992 for ONCE (0.03 sec)

  1. pilot/cmd/pilot-agent/status/ready/probe.go

    )
    
    // Probe for readiness.
    type Probe struct {
    	LocalHostAddr       string
    	AdminPort           uint16
    	receivedFirstUpdate bool
    	// Indicates that Envoy is ready at least once so that we can cache and reuse that probe.
    	atleastOnceReady bool
    	Context          context.Context
    	// NoEnvoy so we only check config status
    	NoEnvoy bool
    }
    
    type Prober interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. pkg/volume/volume.go

    	// self-determined directory path. The mount point and its
    	// content should be owned by `fsUser` or 'fsGroup' so that it can be
    	// accessed by the pod. This may be called more than once, so
    	// implementations must be idempotent.
    	// It could return following types of errors:
    	//   - TransientOperationFailure
    	//   - UncertainProgressError
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/GradleEnterprisePluginServiceFactory.java

     */
    public interface GradleEnterprisePluginServiceFactory extends Serializable {
    
        /**
         * Creates a per-build-invocation plugin service.
         *
         * Should be called at-most-once for the build tree scope.
         *
         * @param config information about the plugin conveyed by Gradle
         * @param requiredServices infrastructure like services required by the plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/internal/file/FileSystemLocationPropertyInternal.java

    import org.gradle.api.file.FileSystemLocationProperty;
    import org.gradle.api.provider.Provider;
    
    /**
     * This class was added just to support FileSystemLocation properties in the convention mapping.
     *
     * Should be removed once ConventionMapping is removed.
     */
    @NonNullApi
    public interface FileSystemLocationPropertyInternal<T extends FileSystemLocation> extends FileSystemLocationProperty<T> {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. cmd/erasure-coding.go

    	}
    
    	e = Erasure{
    		dataBlocks:   dataBlocks,
    		parityBlocks: parityBlocks,
    		blockSize:    blockSize,
    	}
    
    	// Encoder when needed.
    	var enc reedsolomon.Encoder
    	var once sync.Once
    	e.encoder = func() reedsolomon.Encoder {
    		once.Do(func() {
    			e, err := reedsolomon.New(dataBlocks, parityBlocks, reedsolomon.WithAutoGoroutines(int(e.ShardSize())))
    			if err != nil {
    				// Error conditions should be checked above.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 31 02:11:45 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. internal/event/target/redis.go

    	"net/url"
    	"os"
    	"path/filepath"
    	"strings"
    	"time"
    
    	"github.com/gomodule/redigo/redis"
    	"github.com/minio/minio/internal/event"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/minio/internal/once"
    	"github.com/minio/minio/internal/store"
    	xnet "github.com/minio/pkg/v3/net"
    )
    
    // Redis constants
    const (
    	RedisFormat     = "format"
    	RedisAddress    = "address"
    	RedisPassword   = "password"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. internal/event/target/webhook.go

    	"path/filepath"
    	"strings"
    	"syscall"
    	"time"
    
    	"github.com/minio/minio/internal/event"
    	xhttp "github.com/minio/minio/internal/http"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/minio/internal/once"
    	"github.com/minio/minio/internal/store"
    	"github.com/minio/pkg/v3/certs"
    	xnet "github.com/minio/pkg/v3/net"
    )
    
    // Webhook constants
    const (
    	WebhookEndpoint   = "endpoint"
    	WebhookAuthToken  = "auth_token"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedTypeImplementationClassCachingSpec.groovy

    @UnsupportedWithConfigurationCache(because = "software model")
    class ManagedTypeImplementationClassCachingSpec extends AbstractIntegrationSpec {
    
        def "managed type implementation class is generated once for each type and reused"() {
            when:
            buildScript '''
                @Managed
                interface Named {
                    String getName()
                    void setName(String name)
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ManagedExecutor.java

         */
        @Override
        void stop();
    
        /**
         * Stops accepting new jobs and blocks until all currently executing jobs have been completed. Once the given
         * timeout has been reached, forcefully stops remaining jobs and throws an exception.
         *
         * @throws IllegalStateException on timeout.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. okhttp-sse/src/main/kotlin/okhttp3/sse/EventSource.kt

       */
      fun cancel()
    
      fun interface Factory {
        /**
         * Creates a new event source and immediately returns it. Creating an event source initiates an
         * asynchronous process to connect the socket. Once that succeeds or fails, `listener` will be
         * notified. The caller must cancel the returned event source when it is no longer in use.
         */
        fun newEventSource(
          request: Request,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top