Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,525 for ONCE (0.06 sec)

  1. cmd/metrics-v3-bucket-replication.go

    		"Total number of bytes failed at least once to replicate in the last hour on a bucket",
    		bucketL)
    	bucketReplLastHrFailedCountMD = NewGaugeMD(bucketReplLastHrFailedCount,
    		"Total number of objects which failed replication in the last hour on a bucket",
    		bucketL)
    	bucketReplLastMinFailedBytesMD = NewGaugeMD(bucketReplLastMinFailedBytes,
    		"Total number of bytes failed at least once to replicate in the last full minute on a bucket",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. pkg/proxy/metaproxier/meta_proxier.go

    // object is observed.
    func (proxier *metaProxier) OnServiceDelete(service *v1.Service) {
    	proxier.ipv4Proxier.OnServiceDelete(service)
    	proxier.ipv6Proxier.OnServiceDelete(service)
    
    }
    
    // OnServiceSynced is called once all the initial event handlers were
    // called and the state is fully propagated to local cache.
    func (proxier *metaProxier) OnServiceSynced() {
    	proxier.ipv4Proxier.OnServiceSynced()
    	proxier.ipv6Proxier.OnServiceSynced()
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:28:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. testing/performance/src/templates/cpp-project/build.gradle

    <% if (projectType == 'exe') { %>
    // TODO: Remove this once we bump the minimum version of the test
    try {
        apply plugin: 'cpp-application'
    } catch (Exception e) {
        apply plugin: 'cpp-executable'
    }
    <% } else { %>
    apply plugin: 'cpp-library'
    <% } %>
    
    <% if (projectDeps.size() > 0) { %>
    dependencies {
        <% projectDeps.each() { %>
        implementation project(":${it}")
        <% } %>
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 396 bytes
    - Viewed (0)
  4. requirements-tests.txt

    -e .[all]
    -r requirements-docs-tests.txt
    pytest >=7.1.3,<8.0.0
    coverage[toml] >= 6.5.0,< 8.0
    mypy ==1.8.0
    ruff ==0.2.0
    dirty-equals ==0.6.0
    # TODO: once removing databases from tutorial, upgrade SQLAlchemy
    # probably when including SQLModel
    sqlalchemy >=1.3.18,<1.4.43
    databases[sqlite] >=0.3.2,<0.7.0
    flask >=1.1.2,<3.0.0
    anyio[trio] >=3.2.1,<4.0.0
    PyJWT==2.8.0
    pyyaml >=5.3.1,<7.0.0
    passlib[bcrypt] >=1.7.2,<2.0.0
    
    # types
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 468 bytes
    - Viewed (0)
  5. src/net/internal/socktest/switch.go

    // Package socktest provides utilities for socket testing.
    package socktest
    
    import (
    	"fmt"
    	"sync"
    )
    
    // A Switch represents a callpath point switch for socket system
    // calls.
    type Switch struct {
    	once sync.Once
    
    	fmu   sync.RWMutex
    	fltab map[FilterType]Filter
    
    	smu   sync.RWMutex
    	sotab Sockets
    	stats stats
    }
    
    func (sw *Switch) init() {
    	sw.fltab = make(map[FilterType]Filter)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. pkg/apis/storagemigration/validation/validation.go

    	}
    
    	// success cannot be set to false once it is true
    	isOldSuccessful := isSuccessful(oldSVMBundle)
    	if isOldSuccessful && !isSuccessful(newSVMBundle) {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("conditions"), newSVMBundle.Status.Conditions, "Success condition cannot be set to false once it is true"))
    	}
    	isOldFailed := isFailed(oldSVMBundle)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/cache/internal/AbstractCrossBuildInMemoryCacheTest.groovy

            def cache = newCache()
    
            expect:
            cache.get("a", function) == a
            cache.get("b", function) == b
            cache.get("a", function) == a
        }
    
        def "creates each entry once"() {
            def a = new Object()
            def b = new Object()
            def c = new Object()
            def function = Mock(Function)
    
            given:
            def cache = newCache()
            cache.put("c", c)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. docs/tr/docs/async.md

    Birden fazla kasiyer varken (varsayalım 8) sıraya girdiniz👩‍🍳👨‍🍳👩‍🍳👨‍🍳👩‍🍳👨‍🍳👩‍🍳👨‍🍳 ve sıranız gelene kadar bekliyorsunuz.
    
    Sizden önceki herkez ayrılmadan önce hamburgerlerinin 🍔 hazır olmasını bekliyor 🕙. Çünkü kasiyerlerin her biri bir hamburger hazırlanmadan önce bir sonraki siparişe geçmiiyor.
    
    Sonunda senin sıran, aşkın 😍 ve kendin için 2 hamburger 🍔 siparişi verdiniz.
    
    Ödemeyi yaptınız 💸.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. buildscripts/checkdeps.sh

    	ARCH=$(uname -m)
    	case "${KNAME}" in
    	SunOS)
    		ARCH=$(isainfo -k)
    		;;
    	esac
    }
    
    ## FIXME:
    ## In OSX, 'readlink -f' option does not exist, hence
    ## we have our own readlink -f behavior here.
    ## Once OSX has the option, below function is good enough.
    ##
    ## readlink() {
    ##     return /bin/readlink -f "$1"
    ## }
    ##
    readlink() {
    	TARGET_FILE=$1
    
    	cd $(dirname $TARGET_FILE)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. docs/tr/docs/advanced/security/index.md

    !!! tip "İpucu"
        Sonraki bölümler **mutlaka "gelişmiş" olmak zorunda değildir**.
    
        Kullanım şeklinize bağlı olarak, çözümünüz bu bölümlerden birinde olabilir.
    
    ## Önce Öğreticiyi Okuyun
    
    Sonraki bölümler [Tutorial - User Guide: Security](../../tutorial/security/index.md){.internal-link target=_blank} sayfasını okuduğunuzu varsayarak hazırlanmıştır.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 27 16:21:37 UTC 2024
    - 700 bytes
    - Viewed (0)
Back to top