Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 616 for lasta (0.2 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/validation.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Expression field is set to the value of the last call.
    func (b *ValidationApplyConfiguration) WithExpression(value string) *ValidationApplyConfiguration {
    	b.Expression = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/probehandler.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Exec field is set to the value of the last call.
    func (b *ProbeHandlerApplyConfiguration) WithExec(value *ExecActionApplyConfiguration) *ProbeHandlerApplyConfiguration {
    	b.Exec = value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 01 18:25:37 UTC 2021
    - 3K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/report/package.go

    package report
    
    import "regexp"
    
    // pkgRE extracts package name, It looks for the first "." or "::" that occurs
    // after the last "/". (Searching after the last / allows us to correctly handle
    // names that look like "some.url.com/foo.bar".)
    var pkgRE = regexp.MustCompile(`^((.*/)?[\w\d_]+)(\.|::)([^/]*)$`)
    
    // packageName returns the package name of the named symbol, or "" if not found.
    func packageName(name string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 512 bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/LightTreeUtil.kt

        override val indexRange: IntRange by lazy {
            val originalRange = nodeRange
            val first = originalRange.first - sourceOffset
            val last = originalRange.last - sourceOffset
            first..last
        }
    
        private
        val lineColumnInfo: LineColumnInfo by lazy {
            LineColumnInfo.fromIndexRange(sourceCode, sourceOffset, indexRange)
        }
        override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/certs/certlist_test.go

    		t.Run(test.name, func(t *testing.T) {
    			var lastCA *KubeadmCert
    			for i, cert := range test.certs {
    				if i > 0 && lastCA == nil {
    					t.Fatalf("CA not present in list before certificate %q", cert.Name)
    				}
    				if cert.CAName == "" {
    					lastCA = cert
    				} else {
    					if cert.CAName != lastCA.Name {
    						t.Fatalf("expected CA name %q, got %q, for certificate %q", lastCA.Name, cert.CAName, cert.Name)
    					}
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/noder/posmap.go

    	"cmd/compile/internal/syntax"
    	"cmd/internal/src"
    )
    
    // A posMap handles mapping from syntax.Pos to src.XPos.
    type posMap struct {
    	bases map[*syntax.PosBase]*src.PosBase
    	cache struct {
    		last *syntax.PosBase
    		base *src.PosBase
    	}
    }
    
    type poser interface{ Pos() syntax.Pos }
    type ender interface{ End() syntax.Pos }
    
    func (m *posMap) pos(p poser) src.XPos { return m.makeXPos(p.Pos()) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 27 03:43:35 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/cover/profile.go

    		j := 1
    		for i := 1; i < len(p.Blocks); i++ {
    			b := p.Blocks[i]
    			last := p.Blocks[j-1]
    			if b.StartLine == last.StartLine &&
    				b.StartCol == last.StartCol &&
    				b.EndLine == last.EndLine &&
    				b.EndCol == last.EndCol {
    				if b.NumStmt != last.NumStmt {
    					return nil, fmt.Errorf("inconsistent NumStmt: changed from %d to %d", last.NumStmt, b.NumStmt)
    				}
    				if mode == "set" {
    					p.Blocks[j-1].Count |= b.Count
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 17:02:03 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumeclaimstatus.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Phase field is set to the value of the last call.
    func (b *PersistentVolumeClaimStatusApplyConfiguration) WithPhase(value v1.PersistentVolumeClaimPhase) *PersistentVolumeClaimStatusApplyConfiguration {
    	b.Phase = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg_test.go

    		{"example.com/mycmd/v3", []string{}, "mycmd", "v3"}, // Semantic import versioning, use second last element in module mode.
    		{"mycmd", []string{}, "mycmd", "mycmd"},
    		{"mycmd/v0", []string{}, "v0", "v0"},
    		{"mycmd/v1", []string{}, "v1", "v1"},
    		{"mycmd/v2", []string{}, "mycmd", "v2"}, // Semantic import versioning, use second last element in module mode.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 14:05:53 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/FileSystemWatchingFixture.groovy

            }
    
            int getReceivedFileSystemEventsSinceLastBuild() {
                String eventsSinceLastBuild = spec.result.getOutputLineThatContains("file system events since last build")
                def numberMatcher = eventsSinceLastBuild =~ /Received (\d+) file system events since last build while watching \d+ locations/
                return numberMatcher[0][1] as int
            }
    
            int getRetainedFilesSinceLastBuild() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top