Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 98 for Replayed (0.3 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionInternal.java

        @Override
        FileCollectionInternal filter(Spec<? super File> filterSpec);
    
        @Override
        FileTreeInternal getAsFileTree();
    
        /**
         * Returns a copy of this collection, with the given collection replaced with the value returned by the given supplier.
         *
         * This is used to deal with the case where a mutable collection may be added to itself. This is intended to become an error at some point.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 14:55:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java

    import com.google.common.util.concurrent.ListeningScheduledExecutorService;
    import com.google.common.util.concurrent.MoreExecutors;
    import java.util.List;
    import java.util.concurrent.Callable;
    import java.util.concurrent.Delayed;
    import java.util.concurrent.ExecutorService;
    import java.util.concurrent.ScheduledExecutorService;
    import java.util.concurrent.ScheduledFuture;
    import java.util.concurrent.ThreadPoolExecutor.CallerRunsPolicy;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:12:37 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtPsiTypeProvider.kt

         *
         * @param allowErrorTypes if **false** the result will be null in the case of an error type inside the [type][this].
         * Erroneous types will be replaced with `error.NonExistentClass` type.
         *
         * @param suppressWildcards indicates whether wild cards in type arguments need to be suppressed or not,
         * e.g., according to the annotation on the containing declarations.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    	// This extension must only be used on lists and may have 3 possible values:
    	//
    	// 1) `atomic`: the list is treated as a single entity, like a scalar.
    	//      Atomic lists will be entirely replaced when updated. This extension
    	//      may be used on any type of list (struct, scalar, ...).
    	// 2) `set`:
    	//      Sets are lists that must not have multiple items with the same value. Each
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalComponentResolveMetadata.java

    import javax.annotation.Nullable;
    import java.util.Arrays;
    import java.util.List;
    
    /**
     * The meta-data for an external component instance that is required during dependency resolution.
     *
     * <p>Note that this type is being replaced by several other interfaces that separate out the data and state required at various stages of dependency resolution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. pkg/config/security/security.go

    	case hasPrefix(key, attrExperimental):
    		return validateMapKey(key)
    	case isEqual(key, attrDestNamespace):
    		return fmt.Errorf("attribute %s is replaced by the metadata.namespace", key)
    	case hasPrefix(key, attrDestLabel):
    		return fmt.Errorf("attribute %s is replaced by the workload selector", key)
    	case isEqual(key, attrDestName, attrDestUser):
    		return fmt.Errorf("deprecated attribute %s: only supported in v1alpha1", key)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/common/deployment/external.go

    	"istio.io/istio/pkg/test/util/file"
    )
    
    const (
    	ExternalSvc      = "external"
    	ExternalHostname = "fake.external.com"
    )
    
    type External struct {
    	// Namespace where external echo app will be deployed
    	Namespace namespace.Instance
    
    	// All external echo instances with no sidecar injected
    	All echo.Instances
    }
    
    func (e External) Build(t resource.Context, b deployment.Builder) deployment.Builder {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ModuleComponentResolveMetadata.java

    /**
     * The meta-data for a component that is resolved from a module in a binary repository.
     *
     * <p>Implementations of this type should be immutable and thread safe.</p>
     *
     * This type is being replaced by several other interfaces. Try to avoid this interface.
     * @see ComponentGraphResolveMetadata
     * @see ModuleComponentGraphResolveMetadata
     * @see ComponentArtifactResolveMetadata
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. pkg/controller/serviceaccount/serviceaccounts_controller.go

    	// Otherwise, re-list will be delayed as long as possible (until the watch is closed or times out).
    	ServiceAccountResync time.Duration
    
    	// NamespaceResync is the interval between full resyncs of Namespaces.
    	// If non-zero, all namespaces will be re-listed this often.
    	// Otherwise, re-list will be delayed as long as possible (until the watch is closed or times out).
    	NamespaceResync time.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. src/sync/once.go

    	// call f, and the second would return immediately, without
    	// waiting for the first's call to f to complete.
    	// This is why the slow path falls back to a mutex, and why
    	// the o.done.Store must be delayed until after f returns.
    
    	if o.done.Load() == 0 {
    		// Outlined slow-path to allow inlining of the fast-path.
    		o.doSlow(f)
    	}
    }
    
    func (o *Once) doSlow(f func()) {
    	o.m.Lock()
    	defer o.m.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top