Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 166 for dryrun (0.11 sec)

  1. pkg/registry/apps/deployment/storage/storage.go

    		}
    	}
    
    	// Update the Deployment with information in DeploymentRollback to trigger rollback
    	err := r.rollbackDeployment(ctx, rollback.Name, &rollback.RollbackTo, rollback.UpdatedAnnotations, dryrun.IsDryRun(options.DryRun))
    	if err != nil {
    		return nil, err
    	}
    	return &metav1.Status{
    		Status:  metav1.StatusSuccess,
    		Message: fmt.Sprintf("rollback request for deployment %q succeeded", rollback.Name),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  2. plugin/pkg/admission/eventratelimit/admission_test.go

    func (r request) withEventComponent(component string) request {
    	return r.withEvent(&api.Event{
    		Source: api.EventSource{
    			Component: component,
    		},
    	})
    }
    
    func (r request) withDryRun(dryRun bool) request {
    	r.dryRun = dryRun
    	return r
    }
    
    func (r request) withUser(name string) request {
    	r.username = name
    	return r
    }
    
    func (r request) blocked() request {
    	r.accepted = false
    	return r
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 17 13:19:08 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestFilteringIntegrationTest.groovy

        TestOutcome getPassedTestOutcome() {
            return dryRun ? TestOutcome.SKIPPED : TestOutcome.PASSED
        }
    
        TestOutcome getFailedTestOutcome() {
            return dryRun ? TestOutcome.SKIPPED : TestOutcome.FAILED
        }
    
        final List<String> getTestTaskArguments() {
            return dryRun ? ['--test-dry-run'] : []
        }
    
        boolean isDryRun() {
            return false
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/types.go

    	// BootstrapTokens is respected at "kubeadm init" time and describes a set of Bootstrap Tokens to create.
    	BootstrapTokens []bootstraptokenv1.BootstrapToken
    
    	// DryRun tells if the dry run mode is enabled, don't apply any change if it is and just output what would be done.
    	DryRun bool
    
    	// NodeRegistration holds fields that relate to registering the new control-plane node to the cluster
    	NodeRegistration NodeRegistrationOptions
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

            this.buildProjectDependencies = build;
            return this;
        }
    
        public boolean isDryRun() {
            return dryRun;
        }
    
        public void setDryRun(boolean dryRun) {
            this.dryRun = dryRun;
        }
    
        /**
         * Sets the settings file to use for the build. Use null to use the default settings file.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. cmd/kubeadm/app/apis/kubeadm/v1beta4/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
    - 24.1K bytes
    - Viewed (0)
Back to top