Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 571 for indented (0.62 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

                JarEntry classEntry = jarFile.getJarEntry(classNameToPath(className));
                if (classEntry == null) {
                    // This can happen if the class was "injected" into the classloader, e.g. when decorated class is generated by the ObjectFactory.
                    // Injected classes reuse the protection domain. See ClassLoaderUtils.define and defineDecorator.
                    return null;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/dumper.go

    		if x.IsNil() {
    			p.printf("nil")
    			return
    		}
    		p.printf("%s (%d entries) {", x.Type(), x.Len())
    		if x.Len() > 0 {
    			p.indent++
    			p.printf("\n")
    			for i, n := 0, x.Len(); i < n; i++ {
    				p.printf("%d: ", i)
    				p.dump(x.Index(i), nil)
    				p.printf("\n")
    			}
    			p.indent--
    		}
    		p.printf("}")
    
    	case reflect.Struct:
    		typ := x.Type()
    
    		// if span, ok := x.Interface().(lexical.Span); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 08 17:32:14 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/modfile/print.go

    	comment      []Comment // pending end-of-line comments
    	margin       int       // left margin (indent), a number of tabs
    }
    
    // printf prints to the buffer.
    func (p *printer) printf(format string, args ...interface{}) {
    	fmt.Fprintf(p, format, args...)
    }
    
    // indent returns the position on the current line, in bytes, 0-indexed.
    func (p *printer) indent() int {
    	b := p.Bytes()
    	n := 0
    	for n < len(b) && b[len(b)-1-n] != '\n' {
    		n++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 00:48:59 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/testing.go

    			}
    			res[prev.line] = append(res[prev.line], err)
    		}
    	}, comments)
    
    	for s.tok != _EOF {
    		s.next()
    		if s.tok == _Semi && s.lit != "semicolon" {
    			continue // ignore automatically inserted semicolons
    		}
    		prev.line, prev.col = s.line, s.col
    	}
    
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:53:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/cover_list.txt

    # This test is intended to verify that "go list" accepts coverage related
    # build arguments (such as -cover, -covermode). See issue #57785.
    
    [short] skip
    [!GOEXPERIMENT:coverageredesign] skip
    
    env GOBIN=$WORK/bin
    
    # Install a target and then do an ordinary staleness check on it.
    go install m/example
    ! stale m/example
    
    # Run a second staleness check with "-cover" as a build flag. The
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 22:47:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/op.go

    	return a.abiInfo.ArgWidth()
    }
    
    // ParamAssignmentForResult returns the ABI Parameter assignment for result which (indexed 0, 1, etc).
    func (a *AuxCall) ParamAssignmentForResult(which int64) *abi.ABIParamAssignment {
    	return a.abiInfo.OutParam(int(which))
    }
    
    // OffsetOfResult returns the SP offset of result which (indexed 0, 1, etc).
    func (a *AuxCall) OffsetOfResult(which int64) int64 {
    	n := int64(a.abiInfo.OutParam(int(which)).Offset())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/printer.go

    			}
    		case newline:
    			const maxEmptyLines = 1
    			if p.nlcount <= maxEmptyLines {
    				p.write(newlineByte)
    				p.nlcount++
    				prev = newline
    			}
    		case indent:
    			p.indent++
    		case outdent:
    			p.indent--
    			if p.indent < 0 {
    				panic("negative indentation")
    			}
    		// case comment:
    		// 	if text := p.pending[i].text; text != "" {
    		// 		p.writeString(text)
    		// 		p.nlcount = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/collection/IndexedIterator.java

     *
     * List&lt;String&gt; list = ...;
     * for (Indexed&lt;String%gt; indexed : indexed(list)) {
     *     System.out.println(indexed.getIndex());
     *     System.out.println(indexed.getElement());
     * }
     * </pre>
     *
     * <pre>
     * import static org.codelibs.core.collection.IndexedIterator.*;
     * import static org.codelibs.core.io.LineIterator.*;
     *
     * BufferedReader reader = ...;
     * for (Indexed&lt;String%gt; indexed : indexed(iterable(reader))) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/plan9/errors_plan9.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package plan9
    
    import "syscall"
    
    // Constants
    const (
    	// Invented values to support what package os expects.
    	O_CREAT    = 0x02000
    	O_APPEND   = 0x00400
    	O_NOCTTY   = 0x00000
    	O_NONBLOCK = 0x00000
    	O_SYNC     = 0x00000
    	O_ASYNC    = 0x00000
    
    	S_IFMT   = 0x1f000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/collection/IndexedIteratorTest.java

            final List<String> list = newArrayList();
            list.add("aaa");
            list.add("bbb");
            list.add("ccc");
            for (final Indexed<String> indexed : indexed(list)) {
                System.out.println(indexed.getIndex());
                System.out.println(indexed.getElement());
            }
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testForEachLineIterator() throws Exception {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top