Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for syncs (0.05 sec)

  1. cmd/kube-controller-manager/app/options/options_test.go

    	"--concurrent-deployment-syncs=10",
    	"--concurrent-horizontal-pod-autoscaler-syncs=10",
    	"--concurrent-statefulset-syncs=15",
    	"--concurrent-endpoint-syncs=10",
    	"--concurrent-ephemeralvolume-syncs=10",
    	"--concurrent-service-endpoint-syncs=10",
    	"--concurrent-gc-syncs=30",
    	"--concurrent-namespace-syncs=20",
    	"--concurrent-job-syncs=10",
    	"--concurrent-cron-job-syncs=10",
    	"--concurrent-replicaset-syncs=10",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    	defer proxier.mu.Unlock()
    
    	// don't sync rules till we've received services and endpoints
    	if !proxier.isInitialized() {
    		proxier.logger.V(2).Info("Not syncing nftables until Services and Endpoints have been received from master")
    		return
    	}
    
    	//
    	// Below this point we will not return until we try to write the nftables rules.
    	//
    
    	// Keep track of how long syncs take.
    	start := time.Now()
    	defer func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier.go

    		// been flushed. In both of those cases, the code will force a full sync.
    		// In all other cases, it ought to be safe to assume that the rules
    		// already exist, so we'll skip this step when doing a partial sync, to
    		// save us from having to invoke /sbin/iptables 20 times on each sync
    		// (which will be very slow on hosts with lots of iptables rules).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers_test.go

    )
    
    // fakePodWorkers runs sync pod function in serial, so we can have
    // deterministic behaviour in testing.
    type fakePodWorkers struct {
    	lock      sync.Mutex
    	syncPodFn syncPodFnType
    	cache     kubecontainer.Cache
    	t         TestingInterface
    
    	triggeredDeletion []types.UID
    	triggeredTerminal []types.UID
    
    	statusLock            sync.Mutex
    	running               map[types.UID]bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			// To prevent the restartable init containers to keep pod alive, we should
    			// not restart them.
    			changes.InitContainersToStart = nil
    		}
    	}
    
    	return changes
    }
    
    // SyncPod syncs the running pod into the desired pod by executing following steps:
    //
    //  1. Compute sandbox and container changes.
    //  2. Kill pod sandbox if necessary.
    //  3. Kill any containers that should not be running.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof_test.go

    `},
    		{
    			name: "mutex",
    			f:    blockMutex,
    			stk: []string{
    				"sync.(*Mutex).Lock",
    				"runtime/pprof.blockMutex",
    				"runtime/pprof.TestBlockProfile",
    			},
    			re: `
    [0-9]+ [0-9]+ @( 0x[[:xdigit:]]+)+
    #	0x[0-9a-f]+	sync\.\(\*Mutex\)\.Lock\+0x[0-9a-f]+	.*sync/mutex\.go:[0-9]+
    #	0x[0-9a-f]+	runtime/pprof\.blockMutex\+0x[0-9a-f]+	.*runtime/pprof/pprof_test.go:[0-9]+
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package job
    
    import (
    	"context"
    	"fmt"
    	"reflect"
    	"sort"
    	"sync"
    	"sync/atomic"
    	"time"
    
    	batch "k8s.io/api/batch/v1"
    	v1 "k8s.io/api/core/v1"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  8. cmd/erasure-server-pool.go

    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v3/sync/errgroup"
    	"github.com/minio/pkg/v3/wildcard"
    )
    
    type erasureServerPools struct {
    	poolMetaMutex sync.RWMutex
    	poolMeta      poolMeta
    
    	rebalMu   sync.RWMutex
    	rebalMeta *rebalanceMeta
    
    	deploymentID     [16]byte
    	distributionAlgo string
    
    	serverPools []*erasureSets
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    				service:      service,
    				l:            &sync.Mutex{},
    				lastResponse: &kmsPluginHealthzResponse{},
    			},
    			wantTTL: kmsPluginHealthzPositiveTTL,
    		},
    		{
    			desc: "kms provider in bad state",
    			probe: &kmsPluginProbe{
    				name:         "test",
    				ttl:          kmsPluginHealthzPositiveTTL,
    				service:      errService,
    				l:            &sync.Mutex{},
    				lastResponse: &kmsPluginHealthzResponse{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// Important: Since HighWaterMark is using sync/atomic, it has to be at the top of the struct due to a bug on 32-bit platforms
    	// See: https://golang.org/pkg/sync/atomic/ for more information
    	incomingHWM storage.HighWaterMark
    	// Incoming events that should be dispatched to watchers.
    	incoming chan watchCacheEvent
    
    	resourcePrefix string
    
    	sync.RWMutex
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top