Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,341 for longerst (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/pkg/simulation/traffic.go

    				return vh
    			}
    		}
    	}
    	// prefix match
    	var bestMatch *route.VirtualHost
    	longest := 0
    	for _, vh := range rc.VirtualHosts {
    		for _, d := range vh.Domains {
    			if d[0] != '*' {
    				continue
    			}
    			if len(host) >= len(d) && strings.HasSuffix(host, d[1:]) && len(d) > longest {
    				bestMatch = vh
    				longest = len(d)
    			}
    		}
    	}
    	if bestMatch != nil {
    		return bestMatch
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/env/suggest/resources/log4j2.xml

    				max="${backup.max.history}" compressionLevel="9" />
    		</RollingFile>
    	</Appenders>
    
    	<Loggers>
    		<Logger name="org.codelibs.fess" additivity="false" level="${log.level}">
    			<AppenderRef ref="AppFile" />
    		</Logger>
    		<Root level="${root.log.level}">
    			<AppenderRef ref="AppFile" />
    		</Root>
    	</Loggers>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 20 13:05:30 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/env/thumbnail/resources/log4j2.xml

    				max="${backup.max.history}" compressionLevel="9" />
    		</RollingFile>
    	</Appenders>
    
    	<Loggers>
    		<Logger name="org.codelibs.fess" additivity="false" level="${log.level}">
    			<AppenderRef ref="AppFile" />
    		</Logger>
    		<Root level="${root.log.level}">
    			<AppenderRef ref="AppFile" />
    		</Root>
    	</Loggers>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 20 13:05:30 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_undeprecated_v1.0.1.txt

    -- .info --
    {"Version":"v1.0.1"}
    -- .mod --
    // no longer deprecated
    module example.com/undeprecated
    
    go 1.17
    -- go.mod --
    // no longer deprecated
    module example.com/undeprecated
    
    go 1.17
    -- undeprecated.go --
    package undeprecated
    
    -- cmd/a/a.go --
    package main
    
    import "fmt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 316 bytes
    - Viewed (0)
Back to top