Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 247 for Replayed (0.19 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredFileInputsIntegrationTest.groovy

            configurationCacheRunLenient()
    
            then:
            configurationCache.assertStateStored()
            problems.assertResultHasProblems(result) {
                // TODO when implemented, this assertion should be replaced with the commented one:
                inputs.expect(allOf(startsWith("Plugin class 'SneakyPluginA': file '${FileUtils.testFileName}'"), containsString(FileUtils.testFileName)))
                /*
                pluginClasses.forEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/subst.go

    	return len(m) == 0
    }
    
    func (m substMap) lookup(tpar *TypeParam) Type {
    	if t := m[tpar]; t != nil {
    		return t
    	}
    	return tpar
    }
    
    // subst returns the type typ with its type parameters tpars replaced by the
    // corresponding type arguments targs, recursively. subst doesn't modify the
    // incoming type. If a substitution took place, the result type is different
    // from the incoming type.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/go/types/subst.go

    	return len(m) == 0
    }
    
    func (m substMap) lookup(tpar *TypeParam) Type {
    	if t := m[tpar]; t != nil {
    		return t
    	}
    	return tpar
    }
    
    // subst returns the type typ with its type parameters tpars replaced by the
    // corresponding type arguments targs, recursively. subst doesn't modify the
    // incoming type. If a substitution took place, the result type is different
    // from the incoming type.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top