Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 401 for Satisfied (0.18 sec)

  1. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonIntegrationTest.groovy

    @IntegrationTestTimeout(180)
    class WorkerDaemonIntegrationTest extends AbstractWorkerExecutorIntegrationTest implements JavaToolchainFixture {
        boolean isOracleJDK = TestPrecondition.satisfied(UnitTestPreconditions.JdkOracle) && (Jvm.current().jre != null)
    
        WorkerExecutorFixture.WorkActionClass workActionThatPrintsWorkingDirectory
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.h

    // given operation. Operations in the root set will be also filtered using
    // the `filter` predicate.
    //
    // Optionally resolve constraints that can be statically satisfied by the
    // value type, and stop constraints propagation early.
    //
    // Optionally emits remarks attached to operation that failed to propagate
    // results constraints to its operands (for testing purpose).
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/compile/JavaModuleCompileIntegrationTest.groovy

        }
    
        private static String unnamedModuleReadError(String packageName, String producer, String consumer) {
            if (TestPrecondition.satisfied(UnitTestPreconditions.Jdk13OrEarlier)) {
                // bug in JDK < 14 that prints the producer (instead of the consumer) name in the error message
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/batch/v1/types.go

    	// excluded from the requirement check. Possible values are:
    	//
    	// - In: the requirement is satisfied if at least one container exit code
    	//   (might be multiple if there are multiple containers not restricted
    	//   by the 'containerName' field) is in the set of specified values.
    	// - NotIn: the requirement is satisfied if at least one container exit code
    	//   (might be multiple if there are multiple containers not restricted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/README.adoc

    ```
    rm -r modules/string-utils
    gradle run
    ```
    
    Note that the `number-utils` dependency is still satisfied by the included build, while the `string-utils` dependency is now resolved from the repository.
    
    The 'dependencies' report shows the dependency substitution in action:
    
    ```
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/Authenticator.kt

     */
    fun interface Authenticator {
      /**
       * Returns a request that includes a credential to satisfy an authentication challenge in
       * [response]. Returns null if the challenge cannot be satisfied.
       *
       * The route is best effort, it currently may not always be provided even when logically
       * available. It may also not be provided when an authenticator is re-used manually in an
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/script/engine.go

    // should only run when the condition is satisfied.
    //
    // A condition can be negated: [!root] means to run the rest of the line only if
    // the user is not root. Multiple conditions may be given for a single command,
    // for example, '[linux] [amd64] skip'. The command will run if all conditions
    // are satisfied.
    package script
    
    import (
    	"bufio"
    	"context"
    	"errors"
    	"fmt"
    	"io"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/typeparams/common.go

    // for every possible instantiation of V[A_1, ..., A_N], the instantiation
    // T[A_1, ..., A_N] is valid and V[A_1, ..., A_N] implements T[A_1, ..., A_N].
    //
    // If T has structural constraints, they must be satisfied by V.
    //
    // For example, consider the following type declarations:
    //
    //	type Interface[T any] interface {
    //		Accept(T)
    //	}
    //
    //	type Container[T any] struct {
    //		Element T
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SimpleJavaContinuousIntegrationTest.groovy

            file("src/main/java/Thing.java") << "class Thing {}"
    
            then:
            succeeds("build")
            executedAndNotSkipped ":compileJava", ":build"
    
            when:
            if (TestPrecondition.satisfied(UnitTestPreconditions.Windows)) {
                //the main src dir might be locked, only delete children
                file("src/main/java").listFiles().each {
                    assert !it.deleteDir().exists()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt

            concurrentCallCapacity += connection.allocationLimit
          }
    
          // The policy was satisfied by existing connections, don't run again
          if (concurrentCallCapacity >= state.policy.minimumConcurrentCalls) return -1L
        }
    
        // If we got here then the policy was not satisfied -- open a connection!
        try {
          val connection = exchangeFinderFactory(this, state.address, PoolConnectionUser).find()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top