Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 520 for longerst (0.24 sec)

  1. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/text/StyledTableTest.groovy

                    new StyledTable.Row(["tiny", "even longer"], StyledTextOutput.Style.Normal)
                ]
            )
    
            expect:
            StyledTableUtil.toString(table) == """
                | a         | b           |
                |-----------|-------------|
                | foo       | bar         |
                | very long | short       |
                | tiny      | even longer |
            """.stripIndent(true).trim()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 25 00:22:38 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  2. src/regexp/backtrack.go

    			}
    			if old := b.matchcap[1]; old == -1 || (longest && pos > 0 && pos > old) {
    				copy(b.matchcap, b.cap)
    			}
    
    			// If going for first match, we're done.
    			if !longest {
    				return true
    			}
    
    			// If we used the entire text, no longer match is possible.
    			if pos == b.end {
    				return true
    			}
    
    			// Otherwise, continue on in hope of a longer match.
    			continue
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_get_ambiguous_pkg.txt

    # 'go mod tidy' would arbitrarily choose the one with the longer path,
    # but 'go mod tidy' also arbitrarily chooses the latest version.
    
    cp go.mod go.mod.orig
    
    
    # From a clean slate, 'go get' currently does the same thing as 'go mod tidy':
    # it resolves the package from the module with the longest matching prefix.
    
    go get example.net/ambiguous/nested/pkg@v0.1.0
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  4. src/internal/diff/diff.go

    		l[len(l)-1] += "\n\\ No newline at end of file\n"
    	}
    	return l
    }
    
    // tgs returns the pairs of indexes of the longest common subsequence
    // of unique lines in x and y, where a unique line is one that appears
    // once in x and once in y.
    //
    // The longest common subsequence algorithm is as described in
    // Thomas G. Szymanski, “A Special Case of the Maximal Common
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 14:13:04 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. pkg/config/host/names.go

    // In a few locations we care about the order hostnames appear in Envoy config: primarily HTTP routes, but also in
    // gateways, and for SNI. In those locations, we sort hostnames longest to shortest with wildcards last.
    type Names []Name
    
    // prove we implement the interface at compile time
    var _ sort.Interface = Names{}
    
    func (h Names) Len() int {
    	return len(h)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  6. pkg/registry/core/pod/rest/log.go

    	_ "k8s.io/kubernetes/pkg/apis/core/install"
    )
    
    // LogREST implements the log endpoint for a Pod
    type LogREST struct {
    	KubeletConn client.ConnectionInfoGetter
    	Store       *genericregistry.Store
    }
    
    // LogREST implements GetterWithOptions
    var _ = rest.GetterWithOptions(&LogREST{})
    
    // New creates a new Pod log options object
    func (r *LogREST) New() runtime.Object {
    	// TODO - return a resource that represents a log
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 24 10:50:43 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. src/net/http/servemux121.go

    // Find a handler on a handler map given a path string.
    // Most-specific (longest) pattern wins.
    func (mux *serveMux121) match(path string) (h Handler, pattern string) {
    	// Check for exact match first.
    	v, ok := mux.m[path]
    	if ok {
    		return v.h, v.pattern
    	}
    
    	// Check for longest valid match.  mux.es contains all patterns
    	// that end in / sorted from longest to shortest.
    	for _, e := range mux.es {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. src/internal/syscall/windows/registry/key.go

    	SubKeyCount     uint32
    	MaxSubKeyLen    uint32 // size of the key's subkey with the longest name, in Unicode characters, not including the terminating zero byte
    	ValueCount      uint32
    	MaxValueNameLen uint32 // size of the key's longest value name, in Unicode characters, not including the terminating zero byte
    	MaxValueLen     uint32 // longest data component among the key's values, in bytes
    	lastWriteTime   syscall.Filetime
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. pkg/registry/core/pod/rest/log_test.go

    	store := &genericregistry.Store{
    		Storage: genericregistry.DryRunnableStorage{Storage: s},
    	}
    	logRest := &LogREST{Store: store, KubeletConn: nil}
    
    	negativeOne := int64(-1)
    	testCases := []*api.PodLogOptions{
    		{SinceSeconds: &negativeOne},
    		{TailLines: &negativeOne},
    	}
    
    	for _, tc := range testCases {
    		_, err := logRest.Get(genericapirequest.NewDefaultContext(), "test", tc)
    		if !errors.IsInvalid(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/env/crawler/resources/log4j2.xml

    			<DefaultRolloverStrategy fileIndex="max" min="1"
    				max="${backup.max.history}" compressionLevel="9" />
    		</RollingFile>
    		<Rewrite name="AppFile">
    			<AppenderRef ref="AppRollingFile" />
    			<ErrorToWarnRewritePolicy loggers="org.apache.fontbox,org.apache.pdfbox,org.apache.poi" />
    		</Rewrite>
    		<RollingFile name="StatsFile" fileName="${log.file.basedir}/fess-urls.log"
    			filePattern="${log.file.basedir}/fess-urls${backup.date.suffix}-%i.log.gz">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 20 13:05:30 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top