Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 48 for Getcwd (0.19 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    - go.etcd.io/bbolt: v1.3.8 → v1.3.9
    - go.etcd.io/etcd/api/v3: v3.5.10 → v3.5.13
    - go.etcd.io/etcd/client/pkg/v3: v3.5.10 → v3.5.13
    - go.etcd.io/etcd/client/v2: v2.305.10 → v2.305.13
    - go.etcd.io/etcd/client/v3: v3.5.10 → v3.5.13
    - go.etcd.io/etcd/pkg/v3: v3.5.10 → v3.5.13
    - go.etcd.io/etcd/raft/v3: v3.5.10 → v3.5.13
    - go.etcd.io/etcd/server/v3: v3.5.10 → v3.5.13
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. hack/local-up-cluster.sh

      [[ -n "${SCHEDULER_PIDS-}" ]] && sudo kill "${SCHEDULER_PIDS[@]}" 2>/dev/null
    
      # Check if the etcd is still running
      [[ -n "${ETCD_PID-}" ]] && kube::etcd::stop
      if [[ "${PRESERVE_ETCD}" == "false" ]]; then
        [[ -n "${ETCD_DIR-}" ]] && kube::etcd::clean_etcd_dir
      fi
    
      exit 0
    }
    
    # Check if all processes are still running. Prints a warning once each time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. go.sum

    go.etcd.io/bbolt v1.3.6 h1:/ecaJf0sk1l4l6V4awd65v2C3ILy7MSj+s/x1ADCIMU=
    go.etcd.io/bbolt v1.3.6/go.mod h1:qXsaaIqmgQH0T+OPdb99Bf+PKfBBQVAdyD6TY9G8XM4=
    go.etcd.io/etcd/api/v3 v3.5.14 h1:vHObSCxyB9zlF60w7qzAdTcGaglbJOpSj1Xj9+WGxq0=
    go.etcd.io/etcd/api/v3 v3.5.14/go.mod h1:BmtWcRlQvwa1h3G2jvKYwIQy4PkHlDej5t7uLMUdJUU=
    go.etcd.io/etcd/client/pkg/v3 v3.5.14 h1:SaNH6Y+rVEdxfpA2Jr5wkEvN6Zykme5+YnbCkxvuWxQ=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		return nil, fields.Set{"metadata.name": pod.Name, "spec.nodeName": pod.Spec.NodeName}, nil
    	}
    	// Use compact to increase etcd global revision without changes to any resources.
    	// The increase in resources version comes from Kubernetes compaction updating hidden key.
    	// Used to test consistent List to confirm it returns latest etcd revision.
    	compaction(ctx, t, initialRV)
    	currentRV := fmt.Sprintf("%d", continueRV+1)
    
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  5. cmd/bucket-handlers.go

    	postPolicyBucketTagging = "tagging"
    )
    
    // Check if there are buckets on server without corresponding entry in etcd backend and
    // make entries. Here is the general flow
    // - Range over all the available buckets
    // - Check if a bucket has an entry in etcd backend
    // -- If no, make an entry
    // -- If yes, check if the entry matches local IP check if we
    //
    //	need to update the entry then proceed to update
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  6. cmd/iam.go

    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/minio/internal/jwt"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v3/ldap"
    	"github.com/minio/pkg/v3/policy"
    	etcd "go.etcd.io/etcd/client/v3"
    	"golang.org/x/sync/singleflight"
    )
    
    // UsersSysType - defines the type of users and groups system that is
    // active on the server.
    type UsersSysType string
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    						"field": []interface{}{
    							map[string]interface{}{
    								"name":  "nginx",
    								"port":  443,
    								"field": "value",
    							},
    							map[string]interface{}{
    								"name":  "etcd",
    								"port":  2379,
    								"field": "value",
    							},
    							map[string]interface{}{
    								"name":  "kube-apiserver",
    								"port":  6443,
    								"field": "value",
    							},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// Watch cache doesn't support continuations, so serve them from etcd.
    	hasContinuation := len(pred.Continue) > 0
    	// Serve paginated requests about revision "0" from watch cache to avoid overwhelming etcd.
    	hasLimit := pred.Limit > 0 && resourceVersion != "0"
    	// Watch cache only supports ResourceVersionMatchNotOlderThan (default).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	DefaultQualifiedResource schema.GroupResource
    
    	// SingularQualifiedResource is the singular name of the resource.
    	SingularQualifiedResource schema.GroupResource
    
    	// KeyRootFunc returns the root etcd key for this resource; should not
    	// include trailing "/".  This is used for operations that work on the
    	// entire collection (listing and watching).
    	//
    	// KeyRootFunc and KeyFunc must be supplied together or not at all.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	if err != nil {
    		t.Fatalf("Watch failed: %v", err)
    	}
    	defer tooOldWatcher.Stop()
    	expiredError := errors.NewResourceExpired("").ErrStatus
    	// TODO(wojtek-t): It seems that etcd is currently returning a different error,
    	// being an Internal error of "etcd event received with PrevKv=nil".
    	// We temporary allow both but we should unify here.
    	internalError := metav1.Status{
    		Status: metav1.StatusFailure,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top