Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for startPos (0.32 sec)

  1. src/vendor/golang.org/x/text/unicode/bidi/bidi.go

    				o.runes = append(o.runes, runes[prevI:i])
    				o.directions = append(o.directions, prevDir)
    				o.startpos = append(o.startpos, prevI)
    			}
    			prevI = i
    			prevDir = curDir
    		}
    	}
    	o.runes = append(o.runes, runes[prevI:])
    	o.directions = append(o.directions, prevDir)
    	o.startpos = append(o.startpos, prevI)
    	return o
    }
    
    // Order computes the visual ordering of all the runs in a Paragraph.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractContinuousIntegrationTest.groovy

                return
            }
            int startPos = 0
            int endPos = findEndIndexOfCurrentBuild(out, startPos)
            while (startPos < out.length()) {
                if (endPos == -1) {
                    endPos = out.length()
                }
                results << createExecutionResult(out.substring(startPos, endPos), err)
                startPos = endPos
                endPos = findEndIndexOfCurrentBuild(out, startPos)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/dwarf.go

    	if ctxt.DebugInfo != nil {
    		scopes, inlcalls = ctxt.DebugInfo(s, info, curfn)
    	}
    	var err error
    	dwctxt := dwCtxt{ctxt}
    	startPos := ctxt.InnermostPos(textPos(s))
    	if !startPos.IsKnown() || startPos.RelLine() != uint(s.Func().StartLine) {
    		panic("bad startPos")
    	}
    	fnstate := &dwarf.FnState{
    		Name:          s.Name,
    		Info:          info,
    		Loc:           loc,
    		Ranges:        ranges,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/io/ClassTraversalUtil.java

            final int startPos = prefix.length();
            for (final JarEntry entry : iterable(jarFile.entries())) {
                final String entryName = entry.getName().replace('\\', '/');
                if (entryName.startsWith(prefix) && entryName.endsWith(CLASS_SUFFIX)) {
                    final String className = entryName.substring(startPos, entryName.length() - CLASS_SUFFIX.length()).replace('/', '.');
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. src/cmd/internal/dwarf/dwarf.go

    	// DW_AT_inlined value
    	putattr(ctxt, s.Absfn, abbrev, DW_FORM_data1, DW_CLS_CONSTANT, int64(DW_INL_inlined), nil)
    
    	// TODO(mdempsky): Shouldn't we write out StartPos.FileIndex() too?
    	putattr(ctxt, s.Absfn, abbrev, DW_FORM_udata, DW_CLS_CONSTANT, int64(s.StartPos.RelLine()), nil)
    
    	var ev int64
    	if s.External {
    		ev = 1
    	}
    	putattr(ctxt, s.Absfn, abbrev, DW_FORM_flag, DW_CLS_FLAG, ev, 0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/typexpr.go

    	// to interface methods. Delay this check to the end of type-checking.
    	check.later(func() {
    		if t, _ := under(typ).(*Interface); t != nil {
    			pos := syntax.StartPos(e)
    			tset := computeInterfaceTypeSet(check, pos, t) // TODO(gri) is this the correct position?
    			if !tset.IsMethodSet() {
    				if tset.comparable {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParser.java

            int startPos = buffer.pos;
            Expression expression = parseExpression(buffer);
            buffer.consumeWhitespace();
            if (expression == null || buffer.hasAny()) {
                // Unrecognized expression or extra stuff after the expression, possibly another expression
                return new SimpleExpression(buffer.substring(startPos).trim(), IncludeType.OTHER);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/resolver.go

    		// The package identifier denotes the current package,
    		// but there is no corresponding package object.
    		check.recordDef(file.PkgName, nil)
    
    		fileScope := NewScope(pkg.scope, syntax.StartPos(file), syntax.EndPos(file), check.filename(fileNo))
    		fileScopes = append(fileScopes, fileScope)
    		check.recordScope(file, fileScope)
    
    		// determine file directory, necessary to resolve imports
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/call.go

    		tparams := typ.TypeParams().list()
    		if i, err := check.verify(pos, tparams, targs, check.context()); err != nil {
    			// best position for error reporting
    			pos := pos
    			if i < len(xlist) {
    				pos = syntax.StartPos(xlist[i])
    			}
    			check.softErrorf(pos, InvalidTypeArg, "%s", err)
    		} else {
    			check.mono.recordInstance(check.pkg, pos, tparams, targs, xlist)
    		}
    	}).describef(pos, "verify instantiation")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  10. src/net/smtp/smtp.go

    	}
    	c.ext = ext
    	return err
    }
    
    // StartTLS sends the STARTTLS command and encrypts all further communication.
    // Only servers that advertise the STARTTLS extension support this function.
    func (c *Client) StartTLS(config *tls.Config) error {
    	if err := c.hello(); err != nil {
    		return err
    	}
    	_, _, err := c.cmd(220, "STARTTLS")
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top