Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 613 for lasta (0.12 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r42/BuildProgressTaskActionsCrossVersionSpec.groovy

                    doFirst("A first step") {}
                    doLast("One last thing...") {}
                }
            """
    
            when:
            runCustomTask()
    
            then:
            def task = events.operation("Task :custom")
            task.descendant('Execute A first step for :custom')
            task.descendant('Execute One last thing... for :custom')
        }
    
        @TargetGradleVersion(">=4.10.3")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/validatingadmissionpolicybindingspec.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the PolicyName field is set to the value of the last call.
    func (b *ValidatingAdmissionPolicyBindingSpecApplyConfiguration) WithPolicyName(value string) *ValidatingAdmissionPolicyBindingSpecApplyConfiguration {
    	b.PolicyName = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/numberlines.go

    			if f.pass.stats > 1 {
    				f.LogStat("file", v.f, "low", v.lp.first, "high", v.lp.last)
    			}
    			total += uint64(v.lp.last - v.lp.first)
    			if maxfile < v.f {
    				maxfile = v.f
    			}
    			if minline > v.lp.first {
    				minline = v.lp.first
    			}
    			if maxline < v.lp.last {
    				maxline = v.lp.last
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 21:26:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/lastappliedupdater.go

    		lastAppliedValue, err := buildLastApplied(newObj)
    		if err != nil {
    			return nil, nil, fmt.Errorf("failed to build last-applied annotation: %v", err)
    		}
    		err = SetLastApplied(liveObj, lastAppliedValue)
    		if err != nil {
    			return nil, nil, fmt.Errorf("failed to set last-applied annotation: %v", err)
    		}
    	}
    	return liveObj, managed, err
    }
    
    func hasLastApplied(obj runtime.Object) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. internal/cachevalue/cache.go

    	"sync/atomic"
    	"time"
    )
    
    // Opts contains options for the cache.
    type Opts struct {
    	// When set to true, return the last cached value
    	// even if updating the value errors out.
    	// Returns the last good value AND the error.
    	ReturnLastGood bool
    
    	// If NoWait is set, Get() will return the last good value,
    	// if TTL has expired but 2x TTL has not yet passed,
    	// but will fetch a new value in the background.
    	NoWait bool
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 12:50:46 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift3Test.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/go/ast/import.go

    	}
    	first := len(f.Comments)
    	last := -1
    	for i, g := range f.Comments {
    		if g.End() >= end {
    			break
    		}
    		// g.End() < end
    		if beg <= g.Pos() {
    			// comment is within the range [beg, end[ of import declarations
    			if i < first {
    				first = i
    			}
    			if i > last {
    				last = i
    			}
    		}
    	}
    
    	var comments []*CommentGroup
    	if last >= 0 {
    		comments = f.Comments[first : last+1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. cmd/metrics-v3-bucket-replication.go

    		bucketL)
    	bucketReplLastHrFailedCountMD = NewGaugeMD(bucketReplLastHrFailedCount,
    		"Total number of objects which failed replication in the last hour on a bucket",
    		bucketL)
    	bucketReplLastMinFailedBytesMD = NewGaugeMD(bucketReplLastMinFailedBytes,
    		"Total number of bytes failed at least once to replicate in the last full minute on a bucket",
    		bucketL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift3.groovy

                }
    
                public func getLastNameOfFirstEntry(names: [Name]) -> String {
                    var result: String = ""
                    names.forEach({ first, last in
                        result = last  // "den Hollander"
                    })
                    return result
                }
    
                public func getLongMessage() -> String {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/matchresources.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the NamespaceSelector field is set to the value of the last call.
    func (b *MatchResourcesApplyConfiguration) WithNamespaceSelector(value *v1.LabelSelectorApplyConfiguration) *MatchResourcesApplyConfiguration {
    	b.NamespaceSelector = value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top