Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 104 for newLru (0.14 sec)

  1. pyproject.toml

        'ignore:starlette.middleware.wsgi is deprecated and will be removed in a future release\..*:DeprecationWarning:starlette',
        # TODO: remove after upgrading HTTPX to a version newer than 0.23.0
        # Including PR: https://github.com/encode/httpx/pull/2309
        "ignore:'cgi' is deprecated:DeprecationWarning",
        # For passlib
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/library/lists.go

    			if result == nil {
    				result = nextCmp
    			} else {
    				cmp := result.Compare(next)
    				if cmp == opPreferCmpResult {
    					result = nextCmp
    				}
    			}
    		}
    		if result == nil {
    			return types.NewErr("%s called on empty list", opName)
    		}
    		return result.(ref.Val)
    	}
    }
    
    func indexOf(list ref.Val, item ref.Val) ref.Val {
    	lister, ok := list.(traits.Lister)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/policy.go

    			// This is unsupported; kubeadm has no idea how it should handle a newer minor release than itself
    			// If the version is a CI/dev/experimental version though, lower the severity of this check, but then require the -f flag
    			if len(newK8sVersion.PreRelease()) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. docs/bucket/lifecycle/README.md

                }
            }
        ]
    }
    ```
    
    This JSON rule is equivalent to the following MinIO Client command:
    ```
    mc ilm rule add --noncurrent-expire-days 30 --noncurrent-expire-newer 5 myminio/mydata
    ```
    
    #### 3.2.a Automatic removal of noncurrent versions keeping only most recent ones immediately (MinIO only extension)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_arm.go

    //sys	recvmsg(s int, msg *Msghdr, flags int) (n int, err error)
    //sys	sendmsg(s int, msg *Msghdr, flags int) (n int, err error)
    
    // 64-bit file system and 32-bit uid calls
    // (16-bit uid calls are not always supported in newer kernels)
    //sys	EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error)
    //sys	Fchown(fd int, uid int, gid int) (err error) = SYS_FCHOWN32
    //sys	Fstat(fd int, stat *Stat_t) (err error) = SYS_FSTAT64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. hack/update-vendor-licenses.sh

        fi
        if [[ -z "${file}" ]]; then
          cat >&2 << __EOF__
    No license could be found for ${PACKAGE} - aborting.
    
    Options:
    1. Check if the upstream repository has a newer version with LICENSE, COPYRIGHT and/or
       COPYING files.
    2. Contact the author of the package to ensure there is a LICENSE, COPYRIGHT and/or
       COPYING file present.
    3. Do not use this package in Kubernetes.
    __EOF__
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:53 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    }
    
    // Parent returns the CLDR parent of t. In CLDR, missing fields in data for a
    // specific language are substituted with fields from the parent language.
    // The parent for a language may change for newer versions of CLDR.
    func (t Tag) Parent() Tag {
    	if t.full != nil {
    		return Make(t.full.Parent())
    	}
    	if t.language != t.locale {
    		// Simulate stripping -u-rg-xxxxxx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. cmd/xl-storage-format-v1.go

    	Distribution []int `json:"distribution"`
    	// Checksums holds all bitrot checksums of all erasure encoded blocks
    	Checksums []ChecksumInfo `json:"checksum,omitempty"`
    }
    
    // Equal equates current erasure info with newer erasure info.
    // returns false if one of the following check fails
    // - erasure algorithm is different
    // - data blocks are different
    // - parity blocks are different
    // - block size is different
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/GradleConnector.java

     *
     * <h2>Gradle version compatibility</h2>
     *
     * <p>The Tooling API is both forwards and backwards compatible with other versions of Gradle. It supports execution of Gradle builds that use older or newer versions of Gradle.  Each release of Gradle contains a new release of the Tooling API as well.</p>
     *
     * <p>The Tooling API supports running builds using Gradle version 3.0 and up.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. pkg/kubelet/util/manager/cache_based_manager.go

    			// Return the fetch result instead.
    			return object, err
    		}
    		if (err == nil && !isObjectOlder(object, data.object)) || apierrors.IsNotFound(err) {
    			// If the fetch succeeded with a newer version of the object, or if the
    			// object could not be found in the apiserver, update the cached data to
    			// reflect the current status.
    			data.object = object
    			data.err = err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top