Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for syncs (0.32 sec)

  1. cluster/gce/gci/configure-helper.sh

         # Keep in sync with add-replica-to-etcd/remove-replica-from-etcd in util.sh.
         ETCD_APISERVER_CLIENT_KEY_PATH="${auth_dir}/etcd-apiserver-client.key"
         echo "${ETCD_APISERVER_CLIENT_KEY}" | base64 --decode > "${ETCD_APISERVER_CLIENT_KEY_PATH}"
    
         # Keep in sync with add-replica-to-etcd/remove-replica-from-etcd in util.sh.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. cmd/metrics-v2.go

    					Help:      "Time (in milliseconds) since last successful IAM data sync",
    					Type:      gaugeMetric,
    				},
    				Value: float64(sinceLastSyncMillis),
    			},
    			{
    				Description: MetricDescription{
    					Namespace: nodeMetricNamespace,
    					Subsystem: iamSubsystem,
    					Name:      "sync_successes",
    					Help:      "Number of successful IAM data syncs since server uptime",
    					Type:      counterMetric,
    				},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    		// extra syncs may no longer be necessary. Reevaluate whether Reconcile and Sync can be
    		// merged (after resolving the next two TODOs).
    
    		// Reconcile Pod "Ready" condition if necessary. Trigger sync pod for reconciliation.
    		// TODO: this should be unnecessary today - determine what is the cause for this to
    		// be different than Sync, or if there is a better place for it. For instance, we have
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // for more information.
    //
    // # Sync workspace build list to modules
    //
    // Usage:
    //
    //	go work sync
    //
    // Sync syncs the workspace's build list back to the
    // workspace's modules
    //
    // The workspace's build list is the set of versions of all the
    // (transitive) dependency modules used to do builds in the workspace. go
    // work sync generates that build list using the Minimal Version Selection
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods_test.go

    				uid := types.UID("1")
    				if len(w.podSyncStatuses) != 0 {
    					t.Fatalf("unexpected sync statuses: %#v", w.podSyncStatuses)
    				}
    				// no pod sync record was delivered
    				if actual, expected := records[uid], []syncPodRecord(nil); !reflect.DeepEqual(expected, actual) {
    					t.Fatalf("unexpected pod sync records: %s", cmp.Diff(expected, actual, cmp.AllowUnexported(syncPodRecord{})))
    				}
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  6. pkg/controller/garbagecollector/garbagecollector_test.go

    	// for cache sync ~2 times in every wait.PollImmediateUntil() loop.
    	//
    	// The 1s sleep in the test allows GetDeletableResources and
    	// gc.resyncMonitors to run ~5 times to ensure the changes to the
    	// fakeDiscoveryClient are picked up.
    	go gc.Sync(tCtx, fakeDiscoveryClient, 200*time.Millisecond)
    
    	// Wait until the sync discovers the initial resources
    	time.Sleep(1 * time.Second)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    	. "net/http"
    	"net/http/httptest"
    	"net/http/httptrace"
    	"net/http/httputil"
    	"net/http/internal/testcert"
    	"net/textproto"
    	"net/url"
    	"os"
    	"reflect"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"testing/iotest"
    	"time"
    
    	"golang.org/x/net/http/httpguts"
    )
    
    // TODO: test 5 pipelined requests with responses: 1) OK, 2) OK, Connection: Close
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. src/net/http/server.go

    	}
    	cr.remain -= int64(n)
    	cr.unlock()
    
    	cr.cond.Broadcast()
    	return n, err
    }
    
    var (
    	bufioReaderPool   sync.Pool
    	bufioWriter2kPool sync.Pool
    	bufioWriter4kPool sync.Pool
    )
    
    const copyBufPoolSize = 32 * 1024
    
    var copyBufPool = sync.Pool{New: func() any { return new([copyBufPoolSize]byte) }}
    
    func getCopyBuf() []byte {
    	return copyBufPool.Get().(*[copyBufPoolSize]byte)[:]
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if exists {
    		t.Errorf("There should be no expectations for DaemonSet %q after it was deleted", oldDSKey)
    	}
    
    	// skip sync for the delete event so we only see the new RS in sync
    	key, quit := dsc.queue.Get()
    	if quit {
    		t.Fatal("Queue is shutting down!")
    	}
    	dsc.queue.Done(key)
    	if key != oldDSKey {
    		t.Fatal("Keys should be equal!")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  10. cmd/bucket-replication.go

    package cmd
    
    import (
    	"context"
    	"encoding/base64"
    	"encoding/binary"
    	"errors"
    	"fmt"
    	"io"
    	"math/rand"
    	"net/http"
    	"net/url"
    	"path"
    	"reflect"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    
    	"github.com/dustin/go-humanize"
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio-go/v7"
    	"github.com/minio/minio-go/v7/pkg/encrypt"
    	"github.com/minio/minio-go/v7/pkg/tags"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top