Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 306 for mpos (0.06 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XmlUtil.java

                            .replace("<", "&lt;")//
                            .replace(">", "&gt;")//
                            .replace("\"", "&quot;")//
                            .replace("\'", "&apos;")//
            );
        }
    
        public static String stripInvalidXMLCharacters(final String in) {
            if (StringUtil.isEmpty(in)) {
                return in;
            }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/util/NameMatcher.java

            Matcher matcher = boundaryPattern.matcher(name);
            int pos = 0;
            StringBuilder builder = new StringBuilder();
            while (matcher.find()) {
                String prefix = name.substring(pos, matcher.start());
                if (prefix.length() > 0) {
                    builder.append(Pattern.quote(prefix));
                }
                if (pos > 0) {
                    builder.append('-');
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:48:18 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/decl.go

    // firstInSrc reports the index of the object with the "smallest"
    // source position in path. path must not be empty.
    func firstInSrc(path []Object) int {
    	fst, pos := 0, path[0].Pos()
    	for i, t := range path[1:] {
    		if cmpPos(t.Pos(), pos) < 0 {
    			fst, pos = i+1, t.Pos()
    		}
    	}
    	return fst
    }
    
    func (check *Checker) constDecl(obj *Const, typ, init syntax.Expr, inherited bool) {
    	assert(obj.typ == nil)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/interface.go

    }
    
    func (check *Checker) interfaceType(ityp *Interface, iface *syntax.InterfaceType, def *TypeName) {
    	addEmbedded := func(pos syntax.Pos, typ Type) {
    		ityp.embeddeds = append(ityp.embeddeds, typ)
    		if ityp.embedPos == nil {
    			ityp.embedPos = new([]syntax.Pos)
    		}
    		*ityp.embedPos = append(*ityp.embedPos, pos)
    	}
    
    	for _, f := range iface.MethodList {
    		if f.Name == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/util/internal/NameMatcher.java

            Matcher matcher = boundaryPattern.matcher(name);
            int pos = 0;
            StringBuilder builder = new StringBuilder();
            while (matcher.find()) {
                String prefix = name.substring(pos, matcher.start());
                if (prefix.length() > 0) {
                    builder.append(Pattern.quote(prefix));
                }
                if (pos > 0) {
                    builder.append('-');
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/env.go

    func GetProxyEnvVars() []kubeadmapi.EnvVar {
    	envs := []kubeadmapi.EnvVar{}
    	for _, env := range os.Environ() {
    		pos := strings.Index(env, "=")
    		if pos == -1 {
    			// malformed environment variable, skip it.
    			continue
    		}
    		name := env[:pos]
    		value := env[pos+1:]
    		if strings.HasSuffix(strings.ToLower(name), "_proxy") && value != "" {
    			envVar := kubeadmapi.EnvVar{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 09:09:19 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    	rb.nbyte += utf8.UTFMax
    	rb.rune[rb.nrune] = Properties{pos: bn, size: uint8(sz)}
    	rb.nrune++
    }
    
    // assignRune sets a rune at position pos. It is used for Hangul and recomposition.
    func (rb *reorderBuffer) assignRune(pos int, r rune) {
    	bn := rb.rune[pos].pos
    	sz := utf8.EncodeRune(rb.byte[bn:], rune(r))
    	rb.rune[pos] = Properties{pos: bn, size: uint8(sz)}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modindex/build_read.go

    		}
    	}
    
    	if err != nil {
    		if err == io.EOF {
    			r.eof = true
    		} else if r.err == nil {
    			r.err = err
    		}
    		return 0
    	}
    	r.pos.Offset++
    	if c == '\n' {
    		r.pos.Line++
    		r.pos.Column = 1
    	} else {
    		r.pos.Column++
    	}
    	return c
    }
    
    // peekByte returns the next byte from the input reader but does not advance beyond it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 13K bytes
    - Viewed (0)
  9. src/runtime/os_wasm.go

    	// js only invokes the exception handler for memory faults.
    	gp.sig = _SIGSEGV
    	panicmem()
    }
    
    // func exitThread(wait *uint32)
    // FIXME: wasm doesn't have atomic yet
    func exitThread(wait *atomic.Uint32)
    
    type mOS struct{}
    
    func osyield()
    
    //go:nosplit
    func osyield_no_g() {
    	osyield()
    }
    
    type sigset struct{}
    
    // Called to initialize a new m (including the bootstrap m).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite386splitload.go

    	for {
    		vo := auxIntToValAndOff(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		ptr := v_0
    		mem := v_1
    		v.reset(Op386CMPBconst)
    		v.AuxInt = int8ToAuxInt(vo.Val8())
    		v0 := b.NewValue0(v.Pos, Op386MOVBload, typ.UInt8)
    		v0.AuxInt = int32ToAuxInt(vo.Off())
    		v0.Aux = symToAux(sym)
    		v0.AddArg2(ptr, mem)
    		v.AddArg(v0)
    		return true
    	}
    }
    func rewriteValue386splitload_Op386CMPBload(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top