Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 57 for isDryRun (0.19 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/WriteDependencyVerificationFile.java

            boolean isDryRun,
            boolean exportKeyRing
        ) {
            this.buildOperationExecutor = buildOperationExecutor;
            this.checksums = checksums;
            this.checksumService = checksumService;
            this.verificationFile = verificationFile;
            this.signatureVerificationServiceFactory = signatureVerificationServiceFactory;
            this.isDryRun = isDryRun;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/DryRunFilteringTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.testing
    
    /**
     * Overrides methods from {@link AbstractTestFilteringIntegrationTest}
     */
    trait DryRunFilteringTest {
        boolean isDryRun() {
            return true
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 805 bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/TestTaskProperties.java

     */
    
    package org.gradle.internal.enterprise.test;
    
    import java.util.stream.Stream;
    
    public interface TestTaskProperties {
    
        boolean isUsingJUnitPlatform();
    
        long getForkEvery();
    
        boolean isDryRun();
    
        TestTaskFilters getFilters();
    
        TestTaskForkOptions getForkOptions();
    
        Stream<CandidateClassFile> getCandidateClassFiles();
    
        Stream<InputFileProperty> getInputFileProperties();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/reset/cleanupnode.go

    	return containerRuntime.RemoveContainers(containers)
    }
    
    // resetConfigDir is used to cleanup the files in the folder defined in dirsToClean.
    func resetConfigDir(configPathDir string, dirsToClean []string, isDryRun bool) {
    	if !isDryRun {
    		fmt.Printf("[reset] Deleting contents of directories: %v\n", dirsToClean)
    		for _, dir := range dirsToClean {
    			if err := CleanDir(dir); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/update.go

    					}
    				} else {
    					if mutatingAdmission.Handles(admission.Update) {
    						return newObj, mutatingAdmission.Admit(ctx, admission.NewAttributesRecord(newObj, oldObj, scope.Kind, namespace, name, scope.Resource, scope.Subresource, admission.Update, options, dryrun.IsDryRun(options.DryRun), userInfo), scope)
    					}
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:19:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/plugin_test.go

    			if err = wh.ValidateInitialization(); err != nil {
    				b.Errorf("%s: failed to validate initialization: %v", tt.Name, err)
    				return
    			}
    
    			attr := webhooktesting.NewAttribute(ns, nil, tt.IsDryRun)
    
    			b.ResetTimer()
    			b.RunParallel(func(pb *testing.PB) {
    				for pb.Next() {
    					wh.Validate(context.TODO(), attr, objectInterfaces)
    				}
    			})
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/controlplane/manifests.go

    func CreateInitStaticPodManifestFiles(manifestDir, patchesDir string, cfg *kubeadmapi.InitConfiguration, isDryRun bool) error {
    	klog.V(1).Infoln("[control-plane] creating static Pod files")
    	return CreateStaticPodFiles(manifestDir, patchesDir, &cfg.ClusterConfiguration, &cfg.LocalAPIEndpoint, isDryRun, kubeadmconstants.KubeAPIServer, kubeadmconstants.KubeControllerManager, kubeadmconstants.KubeScheduler)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/DryRunBuildExecutionAction.java

            this.delegate = delegate;
        }
    
        @Override
        public ExecutionResult<Void> execute(GradleInternal gradle, FinalizedExecutionPlan plan) {
            if (gradle.getStartParameter().isDryRun()) {
                for (Task task : plan.getContents().getTasks()) {
                    textOutputFactory.create(DryRunBuildExecutionAction.class)
                        .append(((TaskInternal) task).getIdentityPath().getPath())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 20:13:45 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/upgrade/common.go

    	}
    
    	// `dryRun` should be always be `false` for `kubeadm plan`.
    	isDryRun := ptr.To(false)
    	printConfigCfg := upgradeCfg.Plan.PrintConfig
    	ignoreErrCfg := upgradeCfg.Plan.IgnorePreflightErrors
    	ok := false
    	if upgradeApply {
    		printConfigCfg = upgradeCfg.Apply.PrintConfig
    		ignoreErrCfg = upgradeCfg.Apply.IgnorePreflightErrors
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. plugin/pkg/admission/eventratelimit/admission.go

    		return nil
    	}
    
    	// ignore all requests that specify dry-run
    	// because they don't correspond to any calls to etcd,
    	// they should not be affected by the ratelimit
    	if attr.IsDryRun() {
    		return nil
    	}
    
    	var errors []error
    	// give each limit enforcer a chance to reject the event
    	for _, enforcer := range a.limitEnforcers {
    		if err := enforcer.accept(attr); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 14 15:26:57 UTC 2021
    - 3.6K bytes
    - Viewed (0)
Back to top