Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 401 for Satisfied (0.31 sec)

  1. 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)
  2. 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)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/DefaultTaskCacheabilityResolverTest.groovy

                [spec({ false }, "Cacheable test")]
            )
    
            then:
            reason.category == CachingDisabledReasonCategory.ENABLE_CONDITION_NOT_SATISFIED
            reason.message == "'Cacheable test' not satisfied"
        }
    
        def "error message contains which cacheIf spec failed to evaluate"() {
            when:
            determineNoCacheReason(
                [],
                [cacheableOutputProperty],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 18 08:25:11 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  4. test/typeparam/issue50690a.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    )
    
    // Numeric expresses a type constraint satisfied by any numeric type.
    type Numeric interface {
    	~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 |
    		~int | ~int8 | ~int16 | ~int32 | ~int64 |
    		~float32 | ~float64 |
    		~complex64 | ~complex128
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 09 21:26:42 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/controller/volume/persistentvolume/index.go

    // accessmodes are:
    //
    // "RWO,ROX" -- some number of GCEPDs
    // "RWO,ROX,RWX" -- some number of NFS volumes
    //
    // A request for RWO could be satisfied by both sets of indexed volumes, so
    // allPossibleMatchingAccessModes returns:
    //
    //	[][]v1.PersistentVolumeAccessMode {
    //	     []v1.PersistentVolumeAccessMode {
    //				v1.ReadWriteOnce, v1.ReadOnlyMany,
    //			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top