Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 138 for Executer (0.24 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[test_task_fail_on_no_test_executed]]
    ==== Deprecated running test task successfully when no test executed
    Running the `Test` task successfully when no test was executed is now deprecated and will become an error in Gradle 9.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            return this;
        }
    
        @Override
        public void runDependencyActions() {
            runActionInHierarchy(conf -> {
                conf.defaultDependencyActions.execute(conf.dependencies);
                conf.withDependencyActions.execute(conf.dependencies);
    
                // Discard actions after execution
                conf.defaultDependencyActions = ImmutableActionSet.empty();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier.go

    		if err != nil {
    			logger.Error(err, "Failed to execute iptables-restore", "table", utiliptables.TableNAT)
    			metrics.IPTablesRestoreFailuresTotal.Inc()
    			encounteredError = true
    		}
    	}
    
    	// Flush and remove all of our "-t filter" chains.
    	iptablesData.Reset()
    	if err := ipt.SaveInto(utiliptables.TableFilter, iptablesData); err != nil {
    		logger.Error(err, "Failed to execute iptables-save", "table", utiliptables.TableFilter)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    // executed update if no update is already queued, and then notifies the pod
    // worker goroutine of the update. This method must be called while holding
    // the pod lock.
    func (p *podWorkers) requeueLastPodUpdate(podUID types.UID, status *podSyncStatus) {
    	// if there is already an update queued, we can use that instead, or if
    	// we have no previously executed update, we cannot replay it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    ----
    ❯ gradle --configuration-cache help
    include::{snippetsPath}/configurationCache/noProblem/tests/store.out[]
    ...
    BUILD SUCCESSFUL in 4s
    1 actionable task: 1 executed
    Configuration cache entry stored.
    ----
    
    Running this for the first time, the configuration phase executes, calculating the task graph.
    
    Then, run the same command again.
    This reuses the cached configuration:
    
    ----
    ❯ gradle --configuration-cache help
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/runtime/framework.go

    		metrics.FrameworkExtensionPointDuration.WithLabelValues(metrics.Unreserve, framework.Success.String(), f.profileName).Observe(metrics.SinceInSeconds(startTime))
    	}()
    	// Execute the Unreserve operation of each reserve plugin in the
    	// *reverse* order in which the Reserve operation was executed.
    	logger := klog.FromContext(ctx)
    	verboseLogs := logger.V(4).Enabled()
    	if verboseLogs {
    		logger = klog.LoggerWithName(logger, "Unreserve")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    		ust.uss.clk.EventAfterDuration(returnSeatDemand, ust.uc.padDuration)
    		returnTime = ust.uss.clk.Now()
    	})
    	now := ust.uss.clk.Now()
    	ust.uss.t.Logf("%s: %d, %d, %d got executed=%v, idle2=%v", now.Format(nsTimeFmt), ust.i, ust.j, k, executed, idle2)
    	if !executed {
    		atomic.AddUint64(&ust.uss.failedCount, 1)
    		atomic.AddInt32(&ust.uss.rejects[ust.i], 1)
    		returnSeatDemand(ust.uss.clk.Now())
    	} else if now != returnTime {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            // present supplied by the user. The rule is that we only allow the execution of one ConfigurationProcessor.
            // If there is more than one then we execute the one supplied by the user, otherwise we execute the
            // default SettingsXmlConfigurationProcessor.
            //
            int userSuppliedConfigurationProcessorCount = configurationProcessors.size() - 1;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Default permissions differ for files and directories:
    
    * *file*: read & write for *owner*, read for *group*, read for *other* (*0644*, *rw-r--r--*)
    * *directory*: read, write & execute for *owner*, read & execute for *group*, read & execute for *other* (*0755*, *rwxr-xr-x*)
    
    [[sec:moving_files_example]]
    == Moving files and directories
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            EdgeState edge = potentialEdge.edge;
            virtualEdges.add(edge);
            edge.markUsed();
            discoveredEdges.add(edge);
            edge.getSelector().use(false);
        }
    
    
        /**
         * Execute any dependency substitution rules that apply to this dependency.
         *
         * This may be better done as a decorator on ConfigurationMetadata.getDependencies()
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
Back to top