Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for extradata (0.19 sec)

  1. cluster/gce/windows/k8s-node-setup.psm1

    [PARSER]
        Name        syslog-rfc5424
        Format      regex
        Regex       ^\<(?<pri>[0-9]{1,5})\>1 (?<time>[^ ]+) (?<host>[^ ]+) (?<ident>[^ ]+) (?<pid>[-0-9]+) (?<msgid>[^ ]+) (?<extradata>(\[(.*?)\]|-)) (?<message>.+)$
        Time_Key    time
        Time_Format %Y-%m-%dT%H:%M:%S.%L%z
        Time_Keep   On
    
    [PARSER]
        Name        syslog-rfc3164-local
        Format      regex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_messages.go

    			var ignored cryptobyte.String
    			if !extData.ReadUint8(&statusType) ||
    				!extData.ReadUint16LengthPrefixed(&ignored) ||
    				!extData.ReadUint16LengthPrefixed(&ignored) {
    				return false
    			}
    			m.ocspStapling = statusType == statusTypeOCSP
    		case extensionSupportedCurves:
    			// RFC 4492, sections 5.1.1 and RFC 8446, Section 4.2.7
    			var curves cryptobyte.String
    			if !extData.ReadUint16LengthPrefixed(&curves) || curves.Empty() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorBuilder.java

    import org.codelibs.core.io.CopyUtil;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.crawler.container.CrawlerContainer;
    import org.codelibs.fess.crawler.entity.ExtractData;
    import org.codelibs.fess.crawler.exception.CrawlingAccessException;
    import org.codelibs.fess.crawler.exception.ExtractException;
    import org.codelibs.fess.crawler.exception.MaxLengthExceededException;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Mar 14 13:56:25 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. src/net/http/cgi/cgi_main.go

    	"net/http"
    	"os"
    	"path"
    	"slices"
    	"strings"
    	"time"
    )
    
    func cgiMain() {
    	switch path.Join(os.Getenv("SCRIPT_NAME"), os.Getenv("PATH_INFO")) {
    	case "/bar", "/test.cgi", "/myscript/bar", "/test.cgi/extrapath":
    		testCGI()
    		return
    	}
    	childCGIProcess()
    }
    
    // testCGI is a CGI program translated from a Perl program to complete host_test.
    // test cases in host_test should be provided by testCGI.
    func testCGI() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/net/http/cgi/host_test.go

    	}
    	expectedMap := map[string]string{
    		"param-a":             "b",
    		"env-PATH_INFO":       "/extrapath",
    		"env-QUERY_STRING":    "a=b",
    		"env-REQUEST_URI":     "/test.cgi/extrapath?a=b",
    		"env-SCRIPT_FILENAME": os.Args[0],
    		"env-SCRIPT_NAME":     "/test.cgi",
    	}
    	runCgiTest(t, h, "GET /test.cgi/extrapath?a=b HTTP/1.0\nHost: example.com\n\n", expectedMap)
    }
    
    func TestPathInfoDirRoot(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 18:29:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top