Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 317 for Satisfied (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/mux/pathrecorder.go

    	if exactHandler, ok := h.pathToHandler[r.URL.Path]; ok {
    		klog.V(5).Infof("%v: %q satisfied by exact match", h.muxName, r.URL.Path)
    		exactHandler.ServeHTTP(w, r)
    		return
    	}
    
    	for _, prefixHandler := range h.prefixHandlers {
    		if strings.HasPrefix(r.URL.Path, prefixHandler.prefix) {
    			klog.V(5).Infof("%v: %q satisfied by prefix %v", h.muxName, r.URL.Path, prefixHandler.prefix)
    			prefixHandler.handler.ServeHTTP(w, r)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 01:52:15 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/authenticator/JavaNetAuthenticator.kt

                challenge.charset,
              )
            return request.newBuilder()
              .header(credentialHeader, credential)
              .build()
          }
        }
    
        return null // No challenges were satisfied!
      }
    
      @Throws(IOException::class)
      private fun Proxy.connectToInetAddress(
        url: HttpUrl,
        dns: Dns,
      ): InetAddress {
        return when (type()) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. src/go/build/constraint/vers.go

    package constraint
    
    import (
    	"strconv"
    	"strings"
    )
    
    // GoVersion returns the minimum Go version implied by a given build expression.
    // If the expression can be satisfied without any Go version tags, GoVersion returns an empty string.
    //
    // For example:
    //
    //	GoVersion(linux && go1.22) = "go1.22"
    //	GoVersion((linux && go1.22) || (windows && go1.20)) = "go1.20" => go1.20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:19:00 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Task.java

         *
         * @since 7.4
         */
        void notCompatibleWithConfigurationCache(String reason);
    
        /**
         * <p>Execute the task only if the given spec is satisfied. The spec will be evaluated at task execution time, not
         * during configuration. If the Spec is not satisfied, the task will be skipped.</p>
         *
         * <p>You may add multiple such predicates. The task is skipped if any of the predicates return false.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/WithSideEffectProviderTest.groovy

            "MappingProvider"         | { p, m -> new MappingProvider(Integer, p, m) }
        }
    
        def "runs the side effect when changing provider is filtered with #description and spec is satisfied"() {
            given:
            def sideEffect = Mock(ValueSupplier.SideEffect)
            def counter = new AtomicInteger(23)
            def parent = Providers.changing { counter.getAndIncrement() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 06:53:07 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top