Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 167 for lineFor (0.15 sec)

  1. src/cmd/vendor/rsc.io/markdown/parse.go

    }
    
    func (p *parseState) addBlock(c blockBuilder) {
    	p.trimStack(p.lineDepth + 1)
    	p.stack = append(p.stack, openBlock{})
    	ob := &p.stack[len(p.stack)-1]
    	ob.builder = c
    	ob.pos.StartLine = p.lineno
    	ob.pos.EndLine = p.lineno
    }
    
    func (p *parseState) doneBlock(b Block) {
    	p.trimStack(p.lineDepth + 1)
    	ob := &p.stack[len(p.stack)-1]
    	ob.inner = append(ob.inner, b)
    }
    
    func (p *parseState) para() *paraBuilder {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/templates/java-android-application/src/main/res/drawable-v24/ic_launcher_foreground.xml

                <gradient
                    android:endX="78.5885"
                    android:endY="90.9159"
                    android:startX="48.7653"
                    android:startY="61.0927"
                    android:type="linear">
                    <item
                        android:color="#44000000"
                        android:offset="0.0" />
                    <item
                        android:color="#00000000"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml

                <gradient
                    android:endX="78.5885"
                    android:endY="90.9159"
                    android:startX="48.7653"
                    android:startY="61.0927"
                    android:type="linear">
                    <item
                        android:color="#44000000"
                        android:offset="0.0" />
                    <item
                        android:color="#00000000"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/wasm/asm.go

    	ctxt.Out.WriteByte(0x00)            // no max
    	writeUleb128(ctxt.Out, numElements) // min
    
    	writeSecSize(ctxt, sizeOffset)
    }
    
    // writeMemorySec writes the section that declares linear memories. Currently one linear memory is being used.
    // Linear memory always starts at address zero. More memory can be requested with the GrowMemory instruction.
    func writeMemorySec(ctxt *ld.Link, ldr *loader.Loader) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/legacy_java_profile.go

    			continue
    		}
    		var lineFunc, lineFile string
    		var lineNo int64
    
    		if fileLine := javaLocationFileLineRx.FindStringSubmatch(jloc[2]); len(fileLine) == 4 {
    			// Found a line of the form: "function (file:line)"
    			lineFunc, lineFile = fileLine[1], fileLine[2]
    			if n, err := strconv.ParseInt(fileLine[3], 10, 64); err == nil && n > 0 {
    				lineNo = n
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/ChildMapFactory.java

    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.Comparator;
    import java.util.List;
    
    public class ChildMapFactory {
        /**
         * If a node has fewer children, we use a linear search for the child.
         * We use this limit since {@link VfsRelativePath#compareToFirstSegment(String, CaseSensitivity)}
         * is about twice as slow as {@link VfsRelativePath#hasPrefix(String, CaseSensitivity)},
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. docs/bucket/versioning/versioning-tests.sh

    #!/usr/bin/env bash
    
    if [ -n "$TEST_DEBUG" ]; then
    	set -x
    fi
    
    trap 'catch $LINENO' ERR
    
    # shellcheck disable=SC2120
    catch() {
    	if [ $# -ne 0 ]; then
    		echo "error on line $1"
    		echo "server logs ========="
    		cat "/tmp/sitea_1.log"
    		echo "==========================="
    		cat "/tmp/sitea_2.log"
    	fi
    
    	echo "Cleaning up instances of MinIO"
    	pkill minio
    	pkill -9 minio
    	rm -rf /tmp/multisitea
    }
    
    catch
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. src/debug/dwarf/entry.go

    			var b1 buf
    			if fmt == formStrp {
    				b1 = makeBuf(b.dwarf, b.format, "str", 0, b.dwarf.str)
    			} else {
    				if len(b.dwarf.lineStr) == 0 {
    					b.error("DW_FORM_line_strp with no .debug_line_str section")
    					return nil
    				}
    				b1 = makeBuf(b.dwarf, b.format, "line_str", 0, b.dwarf.lineStr)
    			}
    			b1.skip(int(off))
    			val = b1.string()
    			if b1.err != nil {
    				b.err = b1.err
    				return nil
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    			m := abiSuff.FindStringSubmatch(fnName)
    			if m != nil {
    				return m[1], m[2]
    			}
    			return fnName, ""
    		}
    		for lineno, line := range lines {
    			lineno++
    
    			badf := func(format string, args ...interface{}) {
    				pass.Reportf(analysisutil.LineStart(tf, lineno), "[%s] %s: %s", arch, fnName, fmt.Sprintf(format, args...))
    			}
    
    			if arch == "" {
    				// Determine architecture from +build line if possible.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  10. src/go/types/example_test.go

    	fmt.Println("Defs and Uses of each named object:")
    	usesByObj := make(map[types.Object][]string)
    	for id, obj := range info.Uses {
    		posn := fset.Position(id.Pos())
    		lineCol := fmt.Sprintf("%d:%d", posn.Line, posn.Column)
    		usesByObj[obj] = append(usesByObj[obj], lineCol)
    	}
    	var items []string
    	for obj, uses := range usesByObj {
    		slices.Sort(uses)
    		item := fmt.Sprintf("%s:\n  defined at %s\n  used at %s",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top