Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 372 for simulation (0.27 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/AbstractVariantSelectionFailure.java

     * limitations under the License.
     */
    
    package org.gradle.internal.component.resolution.failure.type;
    
    /**
     * An abstract {@link ResolutionFailure} that represents the situation when a requested variant has attributes
     * that are not compatible with any of the available variants.
     */
    public abstract class AbstractVariantSelectionFailure implements ResolutionFailure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/MapMaker.java

    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.util.concurrent.ConcurrentHashMap;
    import java.util.concurrent.ConcurrentMap;
    
    /**
     * MapMaker emulation.
     *
     * @author Charles Fry
     */
    @ElementTypesAreNonnullByDefault
    public final class MapMaker {
      private int initialCapacity = 16;
    
      public MapMaker() {}
    
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/JdkBackedImmutableMap.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import java.util.Map;
    
    /**
     * GWT emulation of {@link JdkBackedImmutableMap}. Never used, but must exist so that the client is
     * willing to deserialize maps that were this type on the server.
     */
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/ConfigurationNotConsumableFailure.java

     * limitations under the License.
     */
    
    package org.gradle.internal.component.resolution.failure.type;
    
    /**
     * A {@link ResolutionFailure} that represents the situation when the selected configuration
     * is not consumable.
     *
     * This is exclusive to project dependencies when a configuration is requested by name.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/security.go

    	re(`-m(no-)?ms-bitfields`),
    	re(`-m(no-)?stack-(.+)`),
    	re(`-mmacosx-(.+)`),
    	re(`-mios-simulator-version-min=(.+)`),
    	re(`-miphoneos-version-min=(.+)`),
    	re(`-mlarge-data-threshold=[0-9]+`),
    	re(`-mtvos-simulator-version-min=(.+)`),
    	re(`-mtvos-version-min=(.+)`),
    	re(`-mwatchos-simulator-version-min=(.+)`),
    	re(`-mwatchos-version-min=(.+)`),
    	re(`-mnop-fun-dllimport`),
    	re(`-m(no-)?sse[0-9.]*`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/RegularImmutableMap.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import java.util.Map;
    
    /**
     * GWt emulation of {@link RegularImmutableMap}.
     *
     * @author Hayward Chan
     */
    @ElementTypesAreNonnullByDefault
    final class RegularImmutableMap<K, V> extends ForwardingImmutableMap<K, V> {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/Uninterruptibles.java

    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.util.concurrent.ExecutionException;
    import java.util.concurrent.Future;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /** Emulation of Uninterruptibles in GWT. */
    @ElementTypesAreNonnullByDefault
    public final class Uninterruptibles {
    
      private Uninterruptibles() {}
    
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 08 20:30:27 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/AbstractIncompatibleAttributesSelectionFailure.java

    import org.gradle.api.internal.attributes.AttributeContainerInternal;
    import org.gradle.api.internal.attributes.ImmutableAttributes;
    
    /**
     * An abstract {@link ResolutionFailure} that represents the situation when a requested variant has attributes
     * that are not compatible with any of the available variants.
     */
    public abstract class AbstractIncompatibleAttributesSelectionFailure extends AbstractVariantSelectionFailure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/compilerFacility/AbstractFirPluginPrototypeCompilerFacilityTestWithAnalysis.kt

     * and CodeGen API. For example, AA generates `FirLiteralExpression` for an initializer of a property, while CodeGen API generates
     * `FirLazyExpression`. The difference can result in crashes. This class helps us test the IDE situation that first calls analysis
     * APIs and conducts CodeGen.
     */
    abstract class AbstractFirPluginPrototypeCompilerFacilityTestWithAnalysis : AbstractFirPluginPrototypeMultiModuleCompilerFacilityTest() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/NoMatchingCapabilitiesFailure.java

    import org.gradle.internal.component.resolution.failure.ResolutionCandidateAssessor.AssessedCandidate;
    
    import java.util.Collection;
    import java.util.List;
    
    /**
     * A {@link ResolutionFailure} that represents the situation when no variants can
     * be found in the list of candidates that have the requested capabilities.
     */
    public final class NoMatchingCapabilitiesFailure extends AbstractVariantSelectionFailure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top