Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,335 for idents (0.27 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

                    return true;
                }
            }
            return false;
        }
    
        /**
         * Indents every line of {@code text} by {@code indent}. Empty lines
         * and lines that only contain whitespace are not indented.
         */
        public static String indent(String text, String indent) {
            StringBuilder builder = new StringBuilder();
            String[] lines = text.split("\n");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/codegen_test.cc

      string ident;
      for (char c = 'a'; c <= 'z'; c++) {
        ident.append(1, c);
      }
      for (char c = 'A'; c <= 'Z'; c++) {
        ident.append(1, c);
      }
      for (char c = '0'; c <= '9'; c++) {
        ident.append(1, c);
      }
      ident += "_";
      ExpectOK(ident, ident, {});
      ExpectOK(ident + "::" + ident, ident, {ident});
      ExpectOK(ident + "::" + ident + "::" + ident, ident, {ident, ident});
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 01 02:13:40 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/events.k8s.io.v1.Event.pb

    Daniel Smith <******@****.***> 1651776874 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 778 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testerrors/argposition_test.go

    	t            *testing.T
    }
    
    func (v *Visitor) Visit(node ast.Node) ast.Visitor {
    	if ident, ok := node.(*ast.Ident); ok {
    		if expectedPositions, ok := v.identPosInfo[ident.Name]; ok {
    			gotMatch := false
    			var errorMessage strings.Builder
    			for caseIndex, expectedPos := range expectedPositions {
    				actualPosition := v.fset.PositionFor(ident.Pos(), true)
    				errorOccured := false
    				if expectedPos.Line != actualPosition.Line {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:31 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/testdata/ipnets-with-kube-virt-interfaces.golden

    deveshkandpal1224 <******@****.***> 1717646003 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/events.k8s.io.v1beta1.Event.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 783 bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/events.k8s.io.v1.Event.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 778 bytes
    - Viewed (0)
  8. src/go/scanner/example_test.go

    		if tok == token.EOF {
    			break
    		}
    		fmt.Printf("%s\t%s\t%q\n", fset.Position(pos), tok, lit)
    	}
    
    	// output:
    	// 1:1	IDENT	"cos"
    	// 1:4	(	""
    	// 1:5	IDENT	"x"
    	// 1:6	)	""
    	// 1:8	+	""
    	// 1:10	IMAG	"1i"
    	// 1:12	*	""
    	// 1:13	IDENT	"sin"
    	// 1:16	(	""
    	// 1:17	IDENT	"x"
    	// 1:18	)	""
    	// 1:20	COMMENT	"// Euler"
    	// 1:28	;	"\n"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 19:47:49 UTC 2022
    - 1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/util.go

    //
    // TODO: This is closely tied to id.Obj which is deprecated.
    func funcLitInScope(id *ast.Ident) *ast.FuncLit {
    	// Compare to (*ast.Object).Pos().
    	if id.Obj == nil {
    		return nil
    	}
    	var rhs ast.Expr
    	switch d := id.Obj.Decl.(type) {
    	case *ast.AssignStmt:
    		for i, x := range d.Lhs {
    			if ident, isIdent := x.(*ast.Ident); isIdent && ident.Name == id.Name && i < len(d.Rhs) {
    				rhs = d.Rhs[i]
    			}
    		}
    	case *ast.ValueSpec:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. src/go/ast/resolve.go

    			// incorrectly to universe objects)
    			pkgScope.Outer = nil
    		}
    		i := 0
    		for _, ident := range file.Unresolved {
    			if !resolve(fileScope, ident) {
    				p.errorf(ident.Pos(), "undeclared name: %s", ident.Name)
    				file.Unresolved[i] = ident
    				i++
    			}
    
    		}
    		file.Unresolved = file.Unresolved[0:i]
    		pkgScope.Outer = universe // reset universe scope
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top