Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 401 for Satisfied (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/DefaultTaskCacheabilityResolver.java

                    return Optional.of(new CachingDisabledReason(
                        CachingDisabledReasonCategory.ENABLE_CONDITION_NOT_SATISFIED,
                        "'" + cacheIfSpec.getDisplayName() + "' not satisfied"
                    ));
                }
            }
    
            for (SelfDescribingSpec<TaskInternal> doNotCacheIfSpec : doNotCacheIfSpecs) {
                if (doNotCacheIfSpec.isSatisfiedBy(task)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 15 07:20:24 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

      static class FlagGuard extends Monitor.Guard {
    
        private boolean satisfied;
    
        protected FlagGuard(Monitor monitor) {
          super(monitor);
        }
    
        @Override
        public boolean isSatisfied() {
          return satisfied;
        }
    
        public void setSatisfied(boolean satisfied) {
          this.satisfied = satisfied;
        }
      }
    
      private final Method method;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/AlreadyOnClasspathPluginUseIntegrationTest.groovy

            when:
            fails "help"
    
            then:
            failureDescriptionStartsWith("Error resolving plugin [id: 'my-plugin', version: '1.0.1']")
            failureHasCause("The request for this plugin could not be satisfied because the plugin is already on the classpath with a different version (1.0).")
    
            and:
            operations.hasOperation("Apply plugin my-plugin to root project 'root'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/preconditions/IntegTestPreconditions.groovy

                return satisfied(UnitTestPreconditions.Windows) && notSatisfied(IsEmbeddedExecutor)
            }
        }
    
        static final class CanPublishToS3 implements TestPrecondition {
            @Override
            boolean isSatisfied() {
                // The S3 publish tests require the following
                return satisfied(UnitTestPreconditions.Jdk9OrLater) || notSatisfied(IsEmbeddedExecutor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool_patterns.td

    // Returns true if the provided padding in the composite op can *not* be 
    // satisfied by SAME or VALID tensorflow padding.
    def HasCustomPadding:
      Constraint<CPred<"GetAvgPoolOpPadAttr($_builder, (*$0.begin()).getDefiningOp<mhlo::CompositeOp>()) == $_builder.getStringAttr(\"CUSTOM\")">>;
    
    // Returns true if the provided padding in the composite op can be satisfied 
    // by SAME or VALID tensorflow padding.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. src/crypto/boring/boring.go

    // Go+BoringCrypto toolchain is used. Use the Enabled function to determine
    // whether the BoringCrypto core is actually in use.
    //
    // Any time the Go+BoringCrypto toolchain is used, the "boringcrypto" build tag
    // is satisfied, so that applications can tag files that use this package.
    package boring
    
    import "crypto/internal/boring"
    
    // Enabled reports whether BoringCrypto handles supported crypto operations.
    func Enabled() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:22 UTC 2022
    - 800 bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/SpecsTest.groovy

    import spock.lang.Specification
    
    class SpecsTest extends Specification {
    
        static class A {}
        static class B extends A {}
        static class C extends B {}
    
        def "isInstance spec is satisfied for all instances extending from the specified type"() {
            when:
            Spec<Object> spec = Specs.isInstance(B)
    
            then:
            !spec.isSatisfiedBy(new Object())
            !spec.isSatisfiedBy(new A())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. cmd/postpolicyform.go

    				condt, reflect.TypeOf(condt).String())
    		}
    	}
    	return parsedPolicy, nil
    }
    
    // checkPolicyCond returns a boolean to indicate if a condition is satisfied according
    // to the passed operator
    func checkPolicyCond(op string, input1, input2 string) bool {
    	switch op {
    	case policyCondEqual:
    		return input1 == input2
    	case policyCondStartsWith:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppPreCompiledHeaderSourcesIntegrationTest.groovy

                "  Not made cacheable, yet"
            output.contains "Caching disabled for task ':compileHelloSharedLibraryHelloCpp' because:\n" +
                "  'Pre-compiled headers are used' satisfied"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/AlreadyOnClasspathPluginResolver.java

                        "the plugin is already on the classpath with an unknown version, so compatibility cannot be checked."
                );
            } else if (!existingVersion.equals(version)) {
                throw new InvalidPluginRequestException(
                    pluginRequest,
                    "The request for this plugin could not be satisfied because " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top