Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/api/plugins/JvmToolchainsPluginTest.groovy

        def "registers javaToolchains extension"() {
            expect:
            project.extensions.getByType(JavaToolchainService) == project.extensions.getByName("javaToolchains")
        }
    
        def "toolchain service dependencies are satisfied"() {
            expect:
            project.extensions.getByType(JavaToolchainService).launcherFor(Actions.doNothing()).get().executablePath.asFile.isFile()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/handler.go

    			// We can't rely on a prefix match since /apis matches everything (see the big comment on Director above)
    			if path == "/apis" || path == "/apis/" {
    				klog.V(5).Infof("%v: %v %q satisfied by gorestful with webservice %v", d.name, req.Method, path, ws.RootPath())
    				// don't use servemux here because gorestful servemuxes get messed up when removing webservices
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 14 17:10:00 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/PreconditionVerifier.groovy

                this.preconditions = preconditions
            }
    
            @Override
            void evaluate() {
                Assume.assumeTrue("Not all Requirements ${preconditions*.simpleName} are satisfied", false)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/Actions.java

         *
         * @param action The action to delegate filtered items to
         * @param filter The spec to use to filter items by
         * @param <T> The type of item the action expects
         * @return A new action that only forwards arguments on to the given filter is they are satisfied by the given spec.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top