Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 58 for Replies (0.17 sec)

  1. src/internal/trace/testdata/generators/go122-syscall-steal-proc-ambiguous.go

    // license that can be found in the LICENSE file.
    
    // Tests syscall P stealing.
    //
    // Specifically, it tests a scenerio wherein, without a
    // P sequence number of GoSyscallBegin, the syscall that
    // a ProcSteal applies to is ambiguous. This only happens in
    // practice when the events aren't already properly ordered
    // by timestamp, since the ProcSteal won't be seen until after
    // the correct GoSyscallBegin appears on the frontier.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java

        return new NoOpScheduledExecutorService();
      }
    
      /**
       * Creates a scheduled executor service that runs each task in the thread that invokes {@code
       * execute/submit/schedule}, as in {@link CallerRunsPolicy}. This applies both to individually
       * submitted tasks and to collections of tasks submitted via {@code invokeAll}, {@code invokeAny},
       * {@code schedule}, {@code scheduleAtFixedRate}, and {@code scheduleWithFixedDelay}. In the case
    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-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/types/AbstractAbbreviatedTypeTest.kt

     * [TestModuleKind][org.jetbrains.kotlin.analysis.test.framework.test.configurators.TestModuleKind] supplied by generated tests applies to
     * the expansion-site module instead of the use-site module in these tests, as we want to check the `KaType` when it's built with an
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtCallableSignature.kt

        @Deprecated("Use `callableId` instead.", ReplaceWith("callableId"))
        public val callableIdIfNonLocal: CallableId? get() = callableId
    
        /**
         * Applies a [substitutor] to the given signature and return a new signature with substituted types.
         *
         * @see KaSubstitutor.substitute
         */
        public abstract fun substitute(substitutor: KaSubstitutor): KaCallableSignature<S>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/AnalysisStatementFilter.kt

    
    fun AnalysisStatementFilter.or(other: AnalysisStatementFilter): AnalysisStatementFilter = AnalysisStatementFiltersImplementations.DefaultOrFilter(this, other)
    
    
    fun AnalysisStatementFilter.implies(other: AnalysisStatementFilter) = this.not().or(other)
    
    
    fun AnalysisStatementFilter.not(): AnalysisStatementFilter = AnalysisStatementFiltersImplementations.DefaultNotFilter(this)
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/compatibility.adoc

    However, the latest Java version may only be supported for compilation or testing, not for running Gradle.
    Support is achieved using <<toolchains#toolchains,toolchains>> and applies to all tasks supporting toolchains.
    
    See the table below for the Java version supported by a specific Gradle release:
    
    .Java Compatibility
    |===
    |Java version | Support for toolchains | Support for running Gradle
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 03:35:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/schema/schema_utils.cc

    // library will feed zero value, which is the default value in the v3a schema.
    // The actual builtin operator code value will exist in the
    // `deprecated_builtin_code` field. At the same time, it implies that
    // `deprecated_builtin_code` >= `builtin_code` and the maximum value of the two
    // fields will be same with `deprecated_builtin_code'.
    //
    // - Supporting builtin operator codes beyonds 127
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/KtEffects.kt

        }
    }
    
    public typealias KtContractCallsInPlaceContractEffectDeclaration = KaContractCallsInPlaceContractEffectDeclaration
    
    /**
     * Represents [kotlin.contracts.SimpleEffect.implies].
     */
    public class KaContractConditionalContractEffectDeclaration(
        private val backingEffect: KaContractEffectDeclaration,
        private val backingCondition: KaContractBooleanExpression
    ) : KaContractEffectDeclaration {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. hack/logcheck.conf

    structured k8s.io/apiserver/pkg/server/options/encryptionconfig/.*
    
    # The following packages have been migrated to contextual logging.
    # Packages matched here do not have to be listed above because
    # "contextual" implies "structured".
    contextual k8s.io/api/.*
    contextual k8s.io/apimachinery/pkg/util/runtime/.*
    contextual k8s.io/client-go/metadata/.*
    contextual k8s.io/client-go/tools/events/.*
    contextual k8s.io/client-go/tools/record/.*
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskSelectionIntegrationTest.groovy

            then:
            result.assertTasksExecuted(":a:thing", ":b:thing", ":a:a:thing", ":b:b:thing")
        }
    
        @ToBeFixedForIsolatedProjects(because = "subprojects")
        def "stops traversing sub-projects when task implies sub-projects"() {
            createDirs("a", "b", "a/a", "b/b")
            settingsFile << "include 'a', 'b', 'a:a', 'b:b'"
    
            buildFile << """
                subprojects {
                    task thing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top