Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 303 for Getcwd (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics_test.go

    etcd_request_duration_seconds_count{operation="foo",type="bar"} 1
    # HELP etcd_requests_total [ALPHA] Etcd request counts for each operation and object type.
    # TYPE etcd_requests_total counter
    etcd_requests_total{operation="foo",type="bar"} 1
    # HELP etcd_request_errors_total [ALPHA] Etcd failed request counts for each operation and object type.
    # TYPE etcd_request_errors_total counter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/certs/renewal/manager_test.go

    			name:                 "cluster with local etcd",
    			cfg:                  &kubeadmapi.ClusterConfiguration{},
    			expectedCertificates: 11, // [admin super-admin apiserver apiserver-etcd-client apiserver-kubelet-client controller-manager etcd/healthcheck-client etcd/peer etcd/server front-proxy-client scheduler]
    		},
    		{
    			name: "cluster with external etcd",
    			cfg: &kubeadmapi.ClusterConfiguration{
    				Etcd: kubeadmapi.Etcd{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/pgo_devirtualize_test.go

    	}
    }
    
    // TestPGODevirtualize tests that specific functions are devirtualized when PGO
    // is applied to the exact source that was profiled.
    func TestPGODevirtualize(t *testing.T) {
    	wd, err := os.Getwd()
    	if err != nil {
    		t.Fatalf("error getting wd: %v", err)
    	}
    	srcDir := filepath.Join(wd, "testdata", "pgo", "devirtualize")
    
    	// Copy the module to a scratch location so we can add a go.mod.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 21:30:35 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/apiextensions.go

    	genericConfig.RESTOptionsGetter = nil
    
    	// copy the etcd options so we don't mutate originals.
    	// we assume that the etcd options have been completed already.  avoid messing with anything outside
    	// of changes to StorageConfig as that may lead to unexpected behavior when the options are applied.
    	etcdOptions := *commandOptions.Etcd
    	// this is where the true decodable levels come from.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/certs_test.go

    		"config",
    	}
    
    	expectedCommands := []string{
    		"renew all",
    
    		"renew apiserver",
    		"renew apiserver-kubelet-client",
    		"renew apiserver-etcd-client",
    
    		"renew front-proxy-client",
    
    		"renew etcd-server",
    		"renew etcd-peer",
    		"renew etcd-healthcheck-client",
    
    		"renew admin.conf",
    		"renew scheduler.conf",
    		"renew controller-manager.conf",
    	}
    
    	renewCmd := newCmdCertsRenewal(os.Stdout)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 13:26:12 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.defaults.go

    	return nil
    }
    
    func SetObjectDefaults_ClusterConfiguration(in *ClusterConfiguration) {
    	SetDefaults_ClusterConfiguration(in)
    	if in.Etcd.Local != nil {
    		for i := range in.Etcd.Local.ExtraEnvs {
    			a := &in.Etcd.Local.ExtraEnvs[i]
    			SetDefaults_EnvVar(a)
    		}
    	}
    	for i := range in.APIServer.ControlPlaneComponent.ExtraEnvs {
    		a := &in.APIServer.ControlPlaneComponent.ExtraEnvs[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. pkg/controlplane/apiserver/options/options_test.go

    		"--enable-aggregator-routing=true",
    		"--enable-priority-and-fairness=false",
    		"--enable-logs-handler=false",
    		"--etcd-keyfile=/var/run/kubernetes/etcd.key",
    		"--etcd-certfile=/var/run/kubernetes/etcdce.crt",
    		"--etcd-cafile=/var/run/kubernetes/etcdca.crt",
    		"--http2-max-streams-per-connection=42",
    		"--tracing-config-file=/var/run/kubernetes/tracing_config.yaml",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/go.sum

    go.etcd.io/etcd/client/pkg/v3 v3.5.13/go.mod h1:XxHT4u1qU12E2+po+UVPrEeL94Um6zL58ppuJWXSAB8=
    go.etcd.io/etcd/client/v2 v2.305.13 h1:RWfV1SX5jTU0lbCvpVQe3iPQeAHETWdOTb6pxhd77C8=
    go.etcd.io/etcd/client/v2 v2.305.13/go.mod h1:iQnL7fepbiomdXMb3om1rHq96htNNGv2sJkEcZGDRRg=
    go.etcd.io/etcd/client/v3 v3.5.13 h1:o0fHTNJLeO0MyVbc7I3fsCf6nrOqn5d+diSarKnB2js=
    go.etcd.io/etcd/client/v3 v3.5.13/go.mod h1:cqiAeY8b5DEEcpxvgWKsbLIWNM/8Wy2xJSDMtioMcoI=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/go.sum

    go.etcd.io/etcd/client/pkg/v3 v3.5.13/go.mod h1:XxHT4u1qU12E2+po+UVPrEeL94Um6zL58ppuJWXSAB8=
    go.etcd.io/etcd/client/v2 v2.305.13 h1:RWfV1SX5jTU0lbCvpVQe3iPQeAHETWdOTb6pxhd77C8=
    go.etcd.io/etcd/client/v2 v2.305.13/go.mod h1:iQnL7fepbiomdXMb3om1rHq96htNNGv2sJkEcZGDRRg=
    go.etcd.io/etcd/client/v3 v3.5.13 h1:o0fHTNJLeO0MyVbc7I3fsCf6nrOqn5d+diSarKnB2js=
    go.etcd.io/etcd/client/v3 v3.5.13/go.mod h1:cqiAeY8b5DEEcpxvgWKsbLIWNM/8Wy2xJSDMtioMcoI=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. hack/update-openapi-spec.sh

    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    DISCOVERY_ROOT_DIR="${KUBE_ROOT}/api/discovery"
    OPENAPI_ROOT_DIR="${KUBE_ROOT}/api/openapi-spec"
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::util::require-jq
    kube::golang::setup_env
    kube::etcd::install
    
    # We need to call `make` here because that includes all of the compile and link
    # flags that we use for a production build, which we need for this script.
    make -C "${KUBE_ROOT}" WHAT=cmd/kube-apiserver
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top