Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,341 for longerst (0.25 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/factory.go

    	switch c.Type {
    	case storagebackend.StorageTypeETCD2:
    		return nil, nil, fmt.Errorf("%s is no longer a supported storage backend", c.Type)
    	case storagebackend.StorageTypeUnset, storagebackend.StorageTypeETCD3:
    		return newETCD3Storage(c, newFunc, newListFunc, resourcePrefix)
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. pkg/util/tail/tail_test.go

    			max:           0,
    			longerThanMax: true,
    			expected:      "",
    		},
    		{
    			name:          "the file length is longer than max",
    			max:           1,
    			longerThanMax: true,
    			expected:      "a",
    		},
    		{
    			name:          "the file length is longer than max and contains newlines",
    			max:           blockSize,
    			longerThanMax: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ProjectDependency.java

        /**
         * {@inheritDoc}
         *
         * @deprecated This class will no longer implement {@link SelfResolvingDependency} in Gradle 9.0
         */
        @Override
        @Deprecated
        TaskDependency getBuildDependencies();
    
        /**
         * {@inheritDoc}
         *
         * @deprecated This class will no longer implement {@link SelfResolvingDependency} in Gradle 9.0
         */
        @Override
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_deprecate_install.txt

    stderr '^\t''go get'' is no longer supported outside a module.$'
    
    cp go.mod.orig go.mod
    
    # 'go get' inside a module with a non-main package does not print a message.
    # This will stop building in the future, but it's the command we want to use.
    go get rsc.io/quote
    ! stderr deprecated
    ! stderr 'no longer installs'
    cp go.mod.orig go.mod
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:08 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  5. src/regexp/exec.go

    func (m *machine) step(runq, nextq *queue, pos, nextPos int, c rune, nextCond *lazyFlag) {
    	longest := m.re.longest
    	for j := 0; j < len(runq.dense); j++ {
    		d := &runq.dense[j]
    		t := d.t
    		if t == nil {
    			continue
    		}
    		if longest && m.matched && len(t.cap) > 0 && m.matchcap[0] < t.cap[0] {
    			m.pool = append(m.pool, t)
    			continue
    		}
    		i := t.inst
    		add := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 04 20:10:54 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  6. src/time/tick.go

    // if efficiency was a concern, code should use NewTicker instead and
    // call [Ticker.Stop] when the ticker is no longer needed.
    // As of Go 1.23, the garbage collector can recover unreferenced
    // tickers, even if they haven't been stopped.
    // The Stop method is no longer necessary to help the garbage collector.
    // There is no longer any reason to prefer NewTicker when Tick will do.
    func Tick(d Duration) <-chan Time {
    	if d <= 0 {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/imports.go

    	if name != "" {
    		newImport.Name = &ast.Ident{Name: name}
    	}
    
    	// Find an import decl to add to.
    	// The goal is to find an existing import
    	// whose import path has the longest shared
    	// prefix with path.
    	var (
    		bestMatch  = -1         // length of longest shared prefix
    		lastImport = -1         // index in f.Decls of the file's final import decl
    		impDecl    *ast.GenDecl // import decl containing the best match
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 21:56:21 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/wait/poll.go

    // context is not cancelled first. The returned error will be from ctx.Err(), the condition's
    // err return value, or nil. If invoking condition takes longer than interval the next condition
    // will be invoked immediately. When using very short intervals, condition may be invoked multiple
    // times before a context cancellation is detected. If immediate is true, condition will be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 06:13:35 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. doc/next/6-stdlib/99-minor/path/filepath/63703.md

    On Windows, [EvalSymlinks] no longer evaluates mount points,
    which was a source of many inconsistencies and bugs.
    This behavior is controlled by the `winsymlink` setting.
    For Go 1.23, it defaults to `winsymlink=1`.
    Previous versions default to `winsymlink=0`.
    
    On Windows, [EvalSymlinks] no longer tries to normalize
    volumes to drive letters, which was not always even possible.
    This behavior is controlled by the `winreadlinkvolume` setting.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 545 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/get_insecure_no_longer_supported.txt

    env GO111MODULE=off
    
    # GOPATH: Fetch with insecure, should error
    ! go get -insecure test
    stderr 'go: -insecure flag is no longer supported; use GOINSECURE instead'
    
    # Modules: Set up
    env GO111MODULE=on
    
    # Modules: Fetch with insecure, should error
    ! go get -insecure test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 364 bytes
    - Viewed (0)
Back to top