Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 483 for pcap (0.05 sec)

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

    				"application/x-xmind",
    				"application/x-xz",
    				"application/x-zoo",
    				"application/x400-bp",
    				"application/xcap-att+xml",
    				"application/xcap-caps+xml",
    				"application/xcap-el+xml",
    				"application/xcap-error+xml",
    				"application/xcap-ns+xml",
    				"application/xcon-conference-info-diff+xml",
    				"application/xcon-conference-info+xml",
    				"application/xenc+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. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <glob pattern="*.zoo"/>
      </mime-type>
    
      <mime-type type="application/x400-bp"/>
      <mime-type type="application/xcap-att+xml"/>
      <mime-type type="application/xcap-caps+xml"/>
      <mime-type type="application/xcap-el+xml"/>
      <mime-type type="application/xcap-error+xml"/>
      <mime-type type="application/xcap-ns+xml"/>
      <mime-type type="application/xcon-conference-info-diff+xml"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  3. test/slice3.go

    		notOK()
    		println(desc, "=", base, len, cap, "want panic")
    		return
    	}
    	if cap != 0 && base != uintptr(xbase) || base >= 10 || len != uintptr(xlen) || cap != uintptr(xcap) {
    		notOK()
    		if cap == 0 {
    			println(desc, "=", base, len, cap, "want", "0-9", xlen, xcap)
    		} else {
    			println(desc, "=", base, len, cap, "want", xbase, xlen, xcap)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.9K bytes
    - Viewed (0)
  4. src/regexp/exec.go

    func (re *Regexp) doOnePass(ir io.RuneReader, ib []byte, is string, pos, ncap int, dstCap []int) []int {
    	startCond := re.cond
    	if startCond == ^syntax.EmptyOp(0) { // impossible
    		return nil
    	}
    
    	m := newOnePassMachine()
    	if cap(m.matchcap) < ncap {
    		m.matchcap = make([]int, ncap)
    	} else {
    		m.matchcap = m.matchcap[:ncap]
    	}
    
    	matched := false
    	for i := range m.matchcap {
    		m.matchcap[i] = -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 04 20:10:54 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  5. src/regexp/backtrack.go

    		b.visited = b.visited[:visitedSize]
    		clear(b.visited) // set to 0
    	}
    
    	if cap(b.cap) < ncap {
    		b.cap = make([]int, ncap)
    	} else {
    		b.cap = b.cap[:ncap]
    	}
    	for i := range b.cap {
    		b.cap[i] = -1
    	}
    
    	if cap(b.matchcap) < ncap {
    		b.matchcap = make([]int, ncap)
    	} else {
    		b.matchcap = b.matchcap[:ncap]
    	}
    	for i := range b.matchcap {
    		b.matchcap[i] = -1
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  6. src/mdo/model-v3.vm

          #elseif ( $field.to == "String" && $field.type == "java.util.List" && $field.multiplicity == "*" )
            return new WrapperList<String, ${field.to}>(() -> getDelegate().get${cap}(), this::set${cap}, s -> s, s -> s);
          #elseif ( $field.to )
            return getDelegate().${pfx}${cap}() != null ? new ${field.to}(getDelegate().${pfx}${cap}(), this) : null;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 06 19:04:44 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. src/runtime/os_illumos.go

    	}
    
    	if cents := int32(getcpucap()); cents > 0 {
    		// Convert from a percentage of CPUs to a number of CPUs,
    		// rounding up to make use of a fractional CPU
    		// e.g., 336% becomes 4 CPUs
    		ncap := (cents + 99) / 100
    		if ncap < n {
    			return ncap
    		}
    	}
    
    	return n
    }
    
    //go:nosplit
    func getrctl(controlname, oldbuf, newbuf unsafe.Pointer, flags uint32) uintptr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 18:06:12 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  8. internal/bpool/bpool.go

    	}
    	return &BytePoolCap{
    		c:    make(chan []byte, maxSize),
    		w:    width,
    		wcap: capwidth,
    	}
    }
    
    // Populate - populates and pre-warms the byte pool, this function is non-blocking.
    func (bp *BytePoolCap) Populate() {
    	for _, buf := range reedsolomon.AllocAligned(cap(bp.c), bp.wcap) {
    		bp.Put(buf[:bp.w])
    	}
    }
    
    // Get gets a []byte from the BytePool, or creates a new one if none are
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 19 16:44:59 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/builtin.go

    	// n escapes; set up a call to makeslice.
    	// When len and cap can fit into int, use makeslice instead of
    	// makeslice64, which is faster and shorter on 32 bit platforms.
    
    	len, cap := l, r
    
    	fnname := "makeslice64"
    	argtype := types.Types[types.TINT64]
    
    	// Type checking guarantees that TIDEAL len/cap are positive and fit in an int.
    	// The case of len or cap overflow when converting TUINT or TUINTPTR to TINT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/pod.go

    }
    
    func getPortMap(pod *v1.Pod) map[string]uint32 {
    	pmap := map[string]uint32{}
    	for _, c := range pod.Spec.Containers {
    		for _, port := range c.Ports {
    			if port.Name == "" || port.Protocol != v1.ProtocolTCP {
    				continue
    			}
    			// First port wins, per Kubernetes (https://github.com/kubernetes/kubernetes/issues/54213)
    			if _, f := pmap[port.Name]; !f {
    				pmap[port.Name] = uint32(port.ContainerPort)
    			}
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top