Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 403 for Gleason (0.18 sec)

  1. platforms/core-configuration/flow-services/src/integTest/groovy/org/gradle/internal/flow/services/FlowScopeIntegrationTest.groovy

    import org.gradle.test.preconditions.IntegTestPreconditions
    
    class FlowScopeIntegrationTest extends AbstractIntegrationSpec {
    
        @Requires(
            value = IntegTestPreconditions.IsConfigCached,
            reason = "Isolation provided by Configuration Cache serialization"
        )
        def 'flow actions are isolated from each other'() {
            given: 'flow actions that share a bean'
            buildFile '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:01:34 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. src/cmd/trace/threadgen.go

    	if from == to {
    		// Filter out no-op events.
    		return
    	}
    	if from.Executing() && !to.Executing() {
    		if to == trace.GoWaiting {
    			// Goroutine started blocking.
    			gs.block(ev.Time(), ev.Stack(), st.Reason, ctx)
    		} else {
    			gs.stop(ev.Time(), ev.Stack(), ctx)
    		}
    	}
    	if !from.Executing() && to.Executing() {
    		start := ev.Time()
    		if from == trace.GoUndetermined {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

                            "{} as configuration cache cannot be reused because {}.",
                            buildActionModelRequirements.actionDisplayName.capitalizedDisplayName,
                            checkedFingerprint.reason
                        )
                        ConfigurationCacheAction.STORE
                    }
    
                    is CheckedFingerprint.ProjectsInvalid -> {
                        logBootstrapSummary(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            file("gradle.properties") << "org.gradle.configureondemand=true"
        }
    
        @Requires(
            value = [IntegTestPreconditions.NotParallelExecutor, IntegTestPreconditions.NotIsolatedProjects],
            reason = "these features hide incubating message"
        )
        def "presents incubating message"() {
            file("gradle.properties") << "org.gradle.configureondemand=false"
            buildFile << "task foo"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. pkg/scheduler/testing/wrappers.go

    func (n *NodeWrapper) Condition(typ v1.NodeConditionType, status v1.ConditionStatus, message, reason string) *NodeWrapper {
    	n.Status.Conditions = []v1.NodeCondition{
    		{
    			Type:               typ,
    			Status:             status,
    			Message:            message,
    			Reason:             reason,
    			LastHeartbeatTime:  metav1.Time{Time: time.Now()},
    			LastTransitionTime: metav1.Time{Time: time.Now()},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"startingDeadlineSeconds":    "Optional deadline in seconds for starting the job if it misses scheduled time for any reason.  Missed jobs executions will be counted as failed ones.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTestKitIntegrationTest.groovy

         */
        @Issue(["https://github.com/gradle/gradle/issues/13614", "https://github.com/gradle/gradle/issues/28729"])
        @Requires(value = IntegTestPreconditions.NotEmbeddedExecutor, reason = "Testing build using a TestKit")
        def "running a test that applies Jacoco with TestKit should generate a test report when running without configuration cache"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. manifests/charts/istio-cni/templates/daemonset.yaml

            - name: cni-netns-dir
              hostPath:
                path: {{ .Values.cni.cniNetnsDir | default "/var/run/netns" }}
                type: DirectoryOrCreate # DirectoryOrCreate instead of Directory for the following reason - CNI may not bind mount this until a non-hostnetwork pod is scheduled on the node,
                # and we don't want to block CNI agent pod creation on waiting for the first non-hostnetwork pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/batch/v1/generated.proto

      // reason UnknownTimeZone.
      // More information can be found in https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/#time-zones
      // +optional
      optional string timeZone = 8;
    
      // Optional deadline in seconds for starting the job if it misses scheduled
      // time for any reason.  Missed jobs executions will be counted as failed ones.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  10. cmd/erasure-healing.go

    	disksToHealCount := 0
    	for i := range availableDisks {
    		yes, reason := shouldHealObjectOnDisk(errs[i], dataErrsByDisk[i], partsMetadata[i], latestMeta)
    		if yes {
    			outDatedDisks[i] = storageDisks[i]
    			disksToHealCount++
    		}
    
    		driveState := ""
    		switch {
    		case reason == nil:
    			driveState = madmin.DriveStateOk
    		case IsErr(reason, errDiskNotFound):
    			driveState = madmin.DriveStateOffline
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
Back to top