Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 471 for dryrun (0.16 sec)

  1. cmd/kubeadm/app/util/apiclient/init_dryrun.go

    	core "k8s.io/client-go/testing"
    	netutils "k8s.io/utils/net"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    )
    
    // InitDryRunGetter implements the DryRunGetter interface and can be used to GET/LIST values in the dryrun fake clientset
    // Need to handle these routes in a special manner:
    // - GET /default/services/kubernetes -- must return a valid Service
    // - GET /clusterrolebindings/system:nodes -- can safely return a NotFound error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:50 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. operator/cmd/mesh/uninstall.go

    		}
    		if _, exists := revisions[uiArgs.revision]; !exists {
    			return errors.New("could not find target revision")
    		}
    	}
    
    	cache.FlushObjectCaches()
    	opts := &helmreconciler.Options{DryRun: rootArgs.DryRun, Log: l, ProgressLog: progress.NewLog()}
    	var h *helmreconciler.HelmReconciler
    
    	// If the user is performing a purge install but also specified a revision or filename, we should warn
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/zz_generated.deepcopy.go

    		*out = new(bool)
    		**out = **in
    	}
    	if in.CertificateRenewal != nil {
    		in, out := &in.CertificateRenewal, &out.CertificateRenewal
    		*out = new(bool)
    		**out = **in
    	}
    	if in.DryRun != nil {
    		in, out := &in.DryRun, &out.DryRun
    		*out = new(bool)
    		**out = **in
    	}
    	if in.EtcdUpgrade != nil {
    		in, out := &in.EtcdUpgrade, &out.EtcdUpgrade
    		*out = new(bool)
    		**out = **in
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestClassProcessor.java

            listener.testPlanExecutionStarted(testPlan);
    
            for (TestIdentifier root : testPlan.getRoots()) {
                dryRun(root, testPlan, listener);
            }
    
            listener.testPlanExecutionFinished(testPlan);
        }
    
        private void dryRun(TestIdentifier testIdentifier, TestPlan testPlan, TestExecutionListener listener) {
            if (testIdentifier.isTest()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/name_flags_test.go

    		TypeMeta:   metav1.TypeMeta{APIVersion: "v1", Kind: "Pod"},
    		ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    	}
    
    	testCases := []struct {
    		name           string
    		outputFormat   string
    		operation      string
    		dryRun         bool
    		expectedError  string
    		expectedOutput string
    		expectNoMatch  bool
    	}{
    		{
    			name:           "valid \"name\" output format with no operation prints resource name",
    			outputFormat:   "name",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 21 15:08:30 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  6. pkg/registry/core/service/storage/storage.go

    	// is called at the end of this process, and we want the fully-formed
    	// object.
    	r.defaultOnReadService(svc)
    
    	// Only perform the cleanup if this is a non-dryrun deletion
    	if !dryrun.IsDryRun(options.DryRun) {
    		// It would be better if we had the caller context, but that changes
    		// this hook signature.
    		ctx := genericapirequest.WithNamespace(genericapirequest.NewContext(), svc.Namespace)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. callbacks/row.go

    package callbacks
    
    import (
    	"gorm.io/gorm"
    )
    
    func RowQuery(db *gorm.DB) {
    	if db.Error == nil {
    		BuildQuerySQL(db)
    		if db.DryRun || db.Error != nil {
    			return
    		}
    
    		if isRows, ok := db.Get("rows"); ok && isRows.(bool) {
    			db.Statement.Settings.Delete("rows")
    			db.Statement.Dest, db.Error = db.Statement.ConnPool.QueryContext(db.Statement.Context, db.Statement.SQL.String(), db.Statement.Vars...)
    		} else {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 08 05:40:41 UTC 2023
    - 581 bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/policy.v1beta1.Eviction.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/policy.v1.Eviction.yaml

    apiVersion: policy/v1
    deleteOptions:
      dryRun:
      - dryRunValue
      gracePeriodSeconds: 1
      orphanDependents: true
      preconditions:
        resourceVersion: resourceVersionValue
        uid: uidValue
      propagationPolicy: propagationPolicyValue
    kind: Eviction
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/policy.v1beta1.Eviction.yaml

    apiVersion: policy/v1beta1
    deleteOptions:
      dryRun:
      - dryRunValue
      gracePeriodSeconds: 1
      orphanDependents: true
      preconditions:
        resourceVersion: resourceVersionValue
        uid: uidValue
      propagationPolicy: propagationPolicyValue
    kind: Eviction
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top