Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for nncp (0.09 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.informedcontrol.rms+xml",
    				"application/vnd.informix-visionary",
    				"application/vnd.intercon.formnet",
    				"application/vnd.intertrust.digibox",
    				"application/vnd.intertrust.nncp",
    				"application/vnd.intu.qbo",
    				"application/vnd.intu.qfx",
    				"application/vnd.iptc.g2.conceptitem+xml",
    				"application/vnd.iptc.g2.knowledgeitem+xml",
    				"application/vnd.iptc.g2.newsitem+xml",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/listener.go

    func retrieveListenerType(l *listener.Listener) string {
    	nHTTP := 0
    	nTCP := 0
    	for _, filterChain := range getFilterChains(l) {
    		for _, filter := range filterChain.GetFilters() {
    			if filter.Name == HTTPListener {
    				nHTTP++
    			} else if filter.Name == TCPListener {
    				if !strings.Contains(string(filter.GetTypedConfig().GetValue()), util.BlackHoleCluster) {
    					nTCP++
    				}
    			}
    		}
    	}
    
    	if nHTTP > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  3. src/net/textproto/textproto.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package textproto implements generic support for text-based request/response
    // protocols in the style of HTTP, NNTP, and SMTP.
    //
    // The package provides:
    //
    // [Error], which represents a numeric error response from
    // a server.
    //
    // [Pipeline], to manage pipelined requests and responses
    // in a client.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. operator/pkg/validate/validate.go

    			errs = util.AppendErrs(errs, validateLeaf(validations, newPath, fieldValue.Interface(), checkRequired))
    			for _, key := range fieldValue.MapKeys() {
    				nnp := append(newPath, key.String())
    				errs = util.AppendErrs(errs, validateLeaf(validations, nnp, fieldValue.MapIndex(key), checkRequired))
    			}
    		case reflect.Slice:
    			for i := 0; i < fieldValue.Len(); i++ {
    				newValue := fieldValue.Index(i).Interface()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 12 16:04:15 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm_arm64_test.go

    	dir, err := os.MkdirTemp("", "testnoret")
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer os.RemoveAll(dir)
    	tmpfile := filepath.Join(dir, "x.s")
    	if err := os.WriteFile(tmpfile, []byte("TEXT ·stub(SB),$0-0\nNOP\n"), 0644); err != nil {
    		t.Fatal(err)
    	}
    	cmd := testenv.Command(t, testenv.GoToolPath(t), "tool", "asm", "-o", filepath.Join(dir, "x.o"), tmpfile)
    	cmd.Env = append(os.Environ(), "GOOS=linux")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/asm_test.go

    	dir, err := os.MkdirTemp("", "testnoret")
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer os.RemoveAll(dir)
    	tmpfile := filepath.Join(dir, "x.s")
    	if err := os.WriteFile(tmpfile, []byte("TEXT ·stub(SB),$0-0\nNOP\n"), 0644); err != nil {
    		t.Fatal(err)
    	}
    	cmd := testenv.Command(t, testenv.GoToolPath(t), "tool", "asm", "-o", filepath.Join(dir, "x.o"), tmpfile)
    	cmd.Env = append(os.Environ(), "GOARCH=riscv64", "GOOS=linux")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 01:50:18 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <glob pattern="*.xpw"/>
        <glob pattern="*.xpx"/>
      </mime-type>
      <mime-type type="application/vnd.intertrust.digibox"/>
      <mime-type type="application/vnd.intertrust.nncp"/>
      <mime-type type="application/vnd.intu.qbo">
        <glob pattern="*.qbo"/>
      </mime-type>
      <mime-type type="application/vnd.intu.qfx">
        <glob pattern="*.qfx"/>
      </mime-type>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  8. operator/pkg/translate/translate.go

    		}
    	case reflect.Map:
    		scope.Debug("Map")
    		for _, key := range vv.MapKeys() {
    			nnp := append(path, key.String())
    			errs = util.AppendErrs(errs, t.insertLeaf(root, nnp, vv.MapIndex(key)))
    		}
    	case reflect.Slice:
    		scope.Debug("Slice")
    		for i := 0; i < vv.Len(); i++ {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. src/go/doc/comment/parse.go

    // are added here, the fast path at the top of autoURL will need updating.
    func isScheme(s string) bool {
    	switch s {
    	case "file",
    		"ftp",
    		"gopher",
    		"http",
    		"https",
    		"mailto",
    		"nntp":
    		return true
    	}
    	return false
    }
    
    // isHost reports whether c is a byte that can appear in a URL host,
    // like www.example.com or user@[::1]:8080
    func isHost(c byte) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  10. cmd/testdata/xl-meta-merge.zip

    KºS xrŽûÀxi`juOªszin滸Ē*˜' ¾ qjD ¦¼aÜc¥®ºImW M}ò²CsG¢xcÐtslôwWHªCY÷QKph¸Vñú}n18ôO¢ebv®VÖILxgk !iaxm„V_ÚÅ@GM[LÏû>TU\rÉ”°¡Çó eTi[¦oñwwýznˆ^q ãZfYI^KuoïuWˆLñˆNñ~Lª ˜´‚òÔà~DÕpÌ_ZZKxP]Õ²«ƒŽ 6/¼’©z rgLˆ7í~L# ܈• ¸¾“t - ¬è UoV|k±k„q~ÜqzRGW¸NïON DB@FHbÚÆ ñncE²{¥me `r IxGJ~KÕ>kv\¢¯req£¯Îéü >)Þê)i noŠÐQrVy²HITqIò{¼L~so¸ ˜ Š²@c¾ ºµ‚®Ð^`dD_V^iLzKdlwÕº¥ ² ° ,ª«Ð²tåB†7“fVoLFª—˜š˜ £€‘¸ …`Šƒ! , öWwNÚaws²eÐPGxnïUºDsGBýptÜdxj@Ä·¹²"oÕB¬ it ¸…UxRqåNg|SVIÖBqq¥ <IEˆ¤{_UòC¼ gT3 ¸ ñhGmfq Ú3q\› ¼ GTBwÖºwmeqˆqyX`ªýh²sex»llo¸t1...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top