Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for IsDryRun (0.33 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

            this.resultProcessor = resultProcessorActor.getProxy(TestResultProcessor.class);
            applicationClassLoader = Thread.currentThread().getContextClassLoader();
            if (spec.isDryRun()) {
                System.setProperty("testng.mode.dryrun", "true");
            }
        }
    
        @Override
        public void processTestClass(TestClassRunInfo testClass) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	// has occurred in any aspects.
    	if err := etcdphase.CreateLocalEtcdStaticPodManifestFile(pathMgr.TempManifestDir(), pathMgr.PatchesDir(), cfg.NodeRegistration.Name, &cfg.ClusterConfiguration, &cfg.LocalAPIEndpoint, false /* isDryRun */); err != nil {
    		return true, errors.Wrap(err, "error creating local etcd static pod manifest file")
    	}
    
    	retries := 10
    	retryInterval := 15 * time.Second
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  3. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestClassProcessor.java

                TestExecutionListener executionListener = new JUnitPlatformTestExecutionListener(resultProcessor, clock, idGenerator);
                Launcher launcher = launcherSession.getLauncher();
                if (spec.isDryRun()) {
                    TestPlan testPlan = launcher.discover(discoveryRequest);
                    executeDryRun(testPlan, executionListener);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    			if err != nil {
    				t.Fatalf("couldn't run CreateInitStaticPodManifestFiles: %v", err)
    			}
    			err = etcdphase.CreateLocalEtcdStaticPodManifestFile(pathMgr.RealManifestDir(), pathMgr.PatchesDir(), oldcfg.NodeRegistration.Name, &oldcfg.ClusterConfiguration, &oldcfg.LocalAPIEndpoint, false /* isDryRun */)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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