Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for isDryRun (0.1 sec)

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

    			return nil, err
    		}
    	}
    
    	// 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. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/action/BuildActionSerializer.java

                // Flags
                encoder.writeBoolean(startParameter.isBuildProjectDependencies());
                encoder.writeBoolean(startParameter.isDryRun());
                encoder.writeBoolean(startParameter.isRerunTasks());
                encoder.writeBoolean(startParameter.isProfile());
                encoder.writeBoolean(startParameter.isContinueOnFailure());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    	configurationName := invocation.Webhook.GetConfigurationName()
    	changed := false
    	defer func() { annotator.addMutationAnnotation(changed) }()
    	if attr.Attributes.IsDryRun() {
    		if h.SideEffects == nil {
    			return false, &webhookutil.ErrCallingWebhook{WebhookName: h.Name, Reason: fmt.Errorf("Webhook SideEffects is nil"), Status: apierrors.NewBadRequest("Webhook SideEffects is nil")}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

            offline: Boolean,
        ) : StartParameterInternal(buildLayout) {
    
            init {
                // Dry run in case a callback tries to access the task graph.
                isDryRun = true
                isOffline = offline
                doNotSearchUpwards()
                useEmptySettings()
            }
    
            override fun getAllInitScripts(): List<File> = emptyList()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    			}
    
    			// Execute createStaticPodFunction
    			manifestPath := filepath.Join(tmpdir, kubeadmconstants.ManifestsSubDirName)
    			err := CreateStaticPodFiles(manifestPath, "", cfg, &kubeadmapi.APIEndpoint{}, false /* isDryRun */, test.components...)
    			if err != nil {
    				t.Errorf("Error executing createStaticPodFunction: %v", err)
    				return
    			}
    
    			// Assert expected files are there
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

         *
         * @return this
         */
        public StartParameter setBuildProjectDependencies(boolean build) {
            this.buildProjectDependencies = build;
            return this;
        }
    
        public boolean isDryRun() {
            return dryRun;
        }
    
        public void setDryRun(boolean dryRun) {
            this.dryRun = dryRun;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    		if err != nil {
    			admissionAttribute.result = err
    			continue
    		}
    
    		// Don't update quota for admissionAttributes that correspond to dry-run requests
    		if admissionAttribute.attributes.IsDryRun() {
    			admissionAttribute.result = nil
    			continue
    		}
    
    		// if the new quotas are the same as the old quotas, then this particular one doesn't issue any updates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top