Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 362 for Satisfied (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/remove_unused_while_results.mlir

    // RUN: tf-opt %s --tf-remove-unused-while-results --split-input-file | FileCheck %s
    
    // Check that we remove the first result and operand from the loop because the
    // result is unused and all other conditions are satisfied, that means:
    // - the corresponding first block arguments are unused (except for `tf.OpB`
    //   which is the defining op of the first result and will be pruned)
    // - `tf.OpB` is not stateful
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 21 20:25:31 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubtypingComponent.kt

         */
        STRICT,
    
        /**
         * Error types are equal to and subtypes of all types.
         *
         * [LENIENT] should be chosen if type errors are expected and should be treated as type holes that can be satisfied by any other type.
         * However, caution should be applied when using [LENIENT], as the policy can swallow type errors which should have been dealt with
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/eviction_manager.go

    	// determine the set of thresholds previously met that have not yet satisfied the associated min-reclaim
    	if len(m.thresholdsMet) > 0 {
    		thresholdsNotYetResolved := thresholdsMet(m.thresholdsMet, observations, true)
    		thresholds = mergeThresholds(thresholds, thresholdsNotYetResolved)
    	}
    	debugLogThresholdsWithObservation("thresholds - reclaim not satisfied", thresholds, observations)
    
    	// track when a threshold was first observed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    values. Containers completed with success (exit code 0) are excluded from the requirement check. Possible values are:\n\n- In: the requirement is satisfied if at least one container exit code\n  (might be multiple if there are multiple containers not restricted\n  by the 'containerName' field) is in the set of specified values.\n- NotIn: the requirement is satisfied if at least one container exit code\n  (might be multiple if there are multiple containers not restricted\n  by the 'containerName' field)...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/generated.proto

      // 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 May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/lockedfile/internal/filelock/filelock.go

    		return "Lock"
    	default:
    		return "Unlock"
    	}
    }
    
    // IsNotSupported returns a boolean indicating whether the error is known to
    // report that a function is not supported (possibly for a specific input).
    // It is satisfied by errors.ErrUnsupported as well as some syscall errors.
    func IsNotSupported(err error) bool {
    	return errors.Is(err, errors.ErrUnsupported)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 17 02:24:35 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. tensorflow/BUILD

        ],
    )
    
    # Config setting that is satisfied when TensorFlow is being built with CUDA
    # support through e.g. `--config=cuda` (or `--config=cuda_clang` in OSS).
    alias(
        name = "is_cuda_enabled",
        actual = if_oss(
            "@local_config_cuda//:is_cuda_enabled",
            "@local_config_cuda//cuda:using_clang",
        ),
    )
    
    # Config setting that is satisfied when CUDA device code should be compiled
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  8. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenPublishS3IntegrationTest.groovy

            expectPublish(module.pom)
            expectPublish(module.moduleMetadata)
            module.rootMetaData.expectDownloadMissing()
            expectPublish(module.rootMetaData)
    
            if (TestPrecondition.satisfied(UnitTestPreconditions.MacOsM1)) {
                // FIXME KM M1 support might require aws-sdk-java-v2:2.17.198 and higher; see https://github.com/aws/aws-sdk-java-v2/issues/2942
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/MultiProjectContinuousIntegrationTest.groovy

            // changes generated during build are picked up only after the build which retriggers the build
            // Fix for issue: https://github.com/gradle/gradle-private/issues/3728
            if (TestPrecondition.satisfied(UnitTestPreconditions.MacOs) && TestPrecondition.notSatisfied(UnitTestPreconditions.MacOsM1)) {
                def quietPeriod = 250
                waitAtEndOfBuildForQuietPeriod(quietPeriod)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorTest.groovy

            '1.6'  | 50
            '1.7'  | 51
            '1.8'  | 52
        }
    
        private boolean canTargetJava6() {
            TestPrecondition.satisfied(UnitTestPreconditions.Jdk12OrEarlier)
        }
    
        private boolean canTargetJava7() {
            TestPrecondition.satisfied(UnitTestPreconditions.Jdk19OrEarlier)
        }
    
        def "should not remove public field"() {
            given:
            def api = toApi 'A': '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 14.8K bytes
    - Viewed (0)
Back to top