Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,234 for findBy (0.19 sec)

  1. ci/official/utilities/rename_and_verify_wheels.sh

      ls -t *.whl | tail -n +2 | xargs rm
    fi
    
    # Check if size is too big. TFCI_WHL_SIZE_LIMIT is in find's format, which can be
    # 'k' for kilobytes, 'M' for megabytes, or 'G' for gigabytes, and the + to indicate
    # "anything greater than" is added by the script.
    if [[ "$TFCI_WHL_SIZE_LIMIT_ENABLE" == "1" ]] && [[ -n "$(find . -iname "*.whl" -size "+$TFCI_WHL_SIZE_LIMIT")" ]]; then
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 21:16:27 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier.go

    	if err != nil {
    		// We assume that we couldn't find the type, then check for namespace:
    		supports, _ = supportsQueryParam(oapi, schema.GroupVersionKind{Group: "", Version: "v1", Kind: "Namespace"}, v.queryParam)
    		// If namespace supports the query param, then we will support the query param for CRDs only.
    		if supports {
    			supports, err = v.finder.HasCRD(gvk.GroupKind())
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 01:23:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier_v3.go

    	return &queryParamVerifierV3{
    		finder:     NewCRDFinder(CRDFromDynamic(dynamicClient)),
    		root:       openapi3.NewRoot(oapiClient),
    		queryParam: queryParam,
    	}
    }
    
    // queryParamVerifierV3 encapsulates info necessary to determine if
    // the queryParam is a parameter for the Patch endpoint for a
    // passed GVK.
    type queryParamVerifierV3 struct {
    	finder     CRDFinder
    	root       openapi3.Root
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 01:23:27 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/AttributeMatchingArtifactVariantSelectorSpec.groovy

        def failureDescriberRegistry = DependencyManagementTestUtil.standardResolutionFailureDescriberRegistry()
        def failureProcessor = new ResolutionFailureHandler(failureDescriberRegistry)
    
        def 'direct match on variant means no finder interaction'() {
            given:
            def resolvedArtifactSet = Mock(ResolvedArtifactSet)
            def variants = [variant]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/connection/RoutePlanner.kt

     *     lookups) and attempt a new connection them. When failures occur, retries iterate the list of
     *     available routes.
     *
     * If the pool gains an eligible connection while DNS, TCP, or TLS work is in flight, this finder
     * will prefer pooled connections. Only pooled HTTP/2 connections are used for such de-duplication.
     *
     * It is possible to cancel the finding process by canceling its call.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. src/runtime/mpallocbits.go

    func (b *pallocBits) find(npages uintptr, searchIdx uint) (uint, uint) {
    	if npages == 1 {
    		addr := b.find1(searchIdx)
    		return addr, addr
    	} else if npages <= 64 {
    		return b.findSmallN(npages, searchIdx)
    	}
    	return b.findLargeN(npages, searchIdx)
    }
    
    // find1 is a helper for find which searches for a single free page
    // in the pallocBits and returns the index.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/SingleDepthFilesFinderTest.groovy

        def "finds files for depth #depth"() {
            given:
            tmpDir.file("a/aa/aaa").createFile("1")
            tmpDir.file("a/aa/aaa").createFile("2")
            tmpDir.file("b/bb/bbb").createFile("3")
            tmpDir.file("b/bb/bbb").createFile("4")
    
            when:
            def result = new SingleDepthFilesFinder(depth).find(tmpDir.getTestDirectory(), { true })
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_toolchain.txt

    grep 'toolchain go1.99rc1' go.mod
    
    # go get go@1.24 does NOT find the release candidate
    cp go.mod.orig go.mod
    ! go get go@1.24
    stderr '^go: go@1.24: no matching versions for query "1.24"$'
    
    # go get go@1.24rc1 works
    cp go.mod.orig go.mod
    go get go@1.24rc1
    stderr '^go: upgraded go 1.21 => 1.24rc1$'
    grep 'go 1.24rc1' go.mod
    grep 'toolchain go1.99rc1' go.mod
    
    # go get go@latest finds the latest Go 1.23
    cp go.mod.orig go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 19:33:16 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/tools/ToolSearchPathTest.groovy

        @Rule def TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
        def os = Stub(OperatingSystem)
        def registry = new ToolSearchPath(os)
    
        def "finds executable in system path"() {
            def file = tmpDir.createFile("cc.bin")
    
            given:
            os.getExecutableName("cc") >> "cc.bin"
            os.path >> [file.parentFile]
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/meta/errors.go

    */
    
    package meta
    
    import (
    	"errors"
    	"fmt"
    
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/sets"
    )
    
    // AmbiguousResourceError is returned if the RESTMapper finds multiple matches for a resource
    type AmbiguousResourceError struct {
    	PartialResource schema.GroupVersionResource
    
    	MatchingResources []schema.GroupVersionResource
    	MatchingKinds     []schema.GroupVersionKind
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 11 22:50:51 UTC 2022
    - 4.2K bytes
    - Viewed (0)
Back to top