Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 142 for syncs (0.22 sec)

  1. pkg/controller/podautoscaler/horizontal.go

    	recommendationsLock sync.Mutex
    
    	// Latest autoscaler events
    	scaleUpEvents       map[string][]timestampedScaleEvent
    	scaleUpEventsLock   sync.RWMutex
    	scaleDownEvents     map[string][]timestampedScaleEvent
    	scaleDownEventsLock sync.RWMutex
    
    	// Storage of HPAs and their selectors.
    	hpaSelectors    *selectors.BiMultimap
    	hpaSelectorsMux sync.Mutex
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/go.sum

    golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
    golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
    golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/go.sum

    golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
    golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
    golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    	"context"
    	"crypto/tls"
    	"errors"
    	"fmt"
    	"internal/godebug"
    	"io"
    	"log"
    	"net"
    	"net/http/httptrace"
    	"net/http/internal/ascii"
    	"net/textproto"
    	"net/url"
    	"reflect"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    	_ "unsafe"
    
    	"golang.org/x/net/http/httpguts"
    	"golang.org/x/net/http/httpproxy"
    )
    
    // DefaultTransport is the default implementation of [Transport] and is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	nodeHealthMap *nodeHealthMap
    
    	// evictorLock protects zonePodEvictor and zoneNoExecuteTainter.
    	evictorLock sync.Mutex
    	// workers that are responsible for tainting nodes.
    	zoneNoExecuteTainter map[string]*scheduler.RateLimitedTimedQueue
    
    	nodesToRetry sync.Map
    
    	zoneStates map[string]ZoneState
    
    	daemonSetStore          appsv1listers.DaemonSetLister
    	daemonSetInformerSynced cache.InformerSynced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    		}
    	}
    
    	// Remove go_bootstrap now that we're done.
    	xremove(pathf("%s/go_bootstrap"+exe, tooldir))
    
    	if goos == "android" {
    		// Make sure the exec wrapper will sync a fresh $GOROOT to the device.
    		xremove(pathf("%s/go_android_exec-adb-sync-status", os.TempDir()))
    	}
    
    	if wrapperPath := wrapperPathFor(goos, goarch); wrapperPath != "" {
    		oldcc := os.Getenv("CC")
    		os.Setenv("GOOS", gohostos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.tasks.Sync.getDestinationDir()> does not have raw return type assignable to org.gradle.api.provider.Property in (Sync.java:0)
    Method <org.gradle.api.tasks.Sync.getPreserve()> does not have raw return type assignable to org.gradle.api.provider.Provider in (Sync.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_attacher_test.go

    limitations under the License.
    */
    
    package csi
    
    import (
    	"context"
    	"crypto/sha256"
    	"fmt"
    	"os"
    	"os/user"
    	"path/filepath"
    	"reflect"
    	goruntime "runtime"
    	"sync"
    	"testing"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	storage "k8s.io/api/storage/v1"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  9. go.sum

    golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
    golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
    golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
    golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  10. src/reflect/type.go

    // sufficient to represent functions unambiguously.
    var funcLookupCache struct {
    	sync.Mutex // Guards stores (but not loads) on m.
    
    	// m is a map[uint32][]*rtype keyed by the hash calculated in FuncOf.
    	// Elements of m are append-only and thus safe for concurrent reading.
    	m sync.Map
    }
    
    // ChanOf returns the channel type with the given direction and element type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top