Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 124 for parseRule (0.23 sec)

  1. src/internal/trace/gc_test.go

    					break
    				}
    			}
    		}
    	}
    	t.Run("V2", func(t *testing.T) {
    		testPath := "testdata/tests/go122-gc-stress.test"
    		r, _, err := testtrace.ParseFile(testPath)
    		if err != nil {
    			t.Fatalf("malformed test %s: bad trace file: %v", testPath, err)
    		}
    		var events []trace.Event
    		tr, err := trace.NewReader(r)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. src/cmd/cover/func.go

    	return nil
    }
    
    // findFuncs parses the file and returns a slice of FuncExtent descriptors.
    func findFuncs(name string) ([]*FuncExtent, error) {
    	fset := token.NewFileSet()
    	parsedFile, err := parser.ParseFile(fset, name, nil, 0)
    	if err != nil {
    		return nil, err
    	}
    	visitor := &FuncVisitor{
    		fset:    fset,
    		name:    name,
    		astFile: parsedFile,
    	}
    	ast.Walk(visitor, visitor.astFile)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/stdlib_test.go

    						goVersion = arg[len(prefix):]
    					}
    				}
    			}
    		}
    
    		// parse and type-check file
    		if testing.Verbose() {
    			fmt.Println("\t", filename)
    		}
    		file, err := syntax.ParseFile(filename, nil, nil, 0)
    		if err == nil {
    			conf := Config{
    				GoVersion: goVersion,
    				Importer:  stdLibImporter,
    			}
    			_, err = conf.Check(filename, []*syntax.File{file}, nil)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. cmd/sftp-server.go

    	}
    
    	private, err := ssh.ParsePrivateKey(privateBytes)
    	if err != nil {
    		logger.Fatal(fmt.Errorf("invalid arguments passed, private key file is not parseable: %v", err), "unable to start SFTP server")
    	}
    
    	if userCaKeyFile != "" {
    		keyBytes, err := os.ReadFile(userCaKeyFile)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. src/go/parser/error_test.go

    	t.Helper()
    	src, err := readSource(filename, input)
    	if err != nil {
    		t.Error(err)
    		return
    	}
    
    	fset := token.NewFileSet()
    	_, err = ParseFile(fset, filename, src, mode)
    	found, ok := err.(scanner.ErrorList)
    	if err != nil && !ok {
    		t.Error(err)
    		return
    	}
    	found.RemoveMultiples()
    
    	expected := map[token.Pos]string{}
    	if expectErrors {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 19:47:49 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  6. src/runtime/traceback_system_test.go

    	// Cause the crash report to be written to stdout.
    	panic("oops")
    }
    
    // TestTracebackSystem tests that the syntax of crash reports produced
    // by GOTRACEBACK=system (see traceback2) contains a complete,
    // parseable list of program counters for the running goroutine that
    // can be parsed and fed to runtime.CallersFrames to obtain accurate
    // information about the logical call stack, even in the presence of
    // inlining.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. src/go/doc/doc_test.go

    	t.Run("AllDecls", func(t *testing.T) { test(t, AllDecls) })
    	t.Run("AllMethods", func(t *testing.T) { test(t, AllMethods) })
    }
    
    func TestFuncs(t *testing.T) {
    	fset := token.NewFileSet()
    	file, err := parser.ParseFile(fset, "funcs.go", strings.NewReader(funcsTestFile), parser.ParseComments)
    	if err != nil {
    		t.Fatal(err)
    	}
    	doc, err := NewFromFiles(fset, []*ast.File{file}, "importPath", Mode(0))
    	if err != nil {
    		t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:52 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsBuilder.java

                        settingsSource.getLocation(),
                        loc != null ? loc.getLineNumber() : -1,
                        loc != null ? loc.getColumnNumber() : -1,
                        e,
                        "Non-parseable settings " + settingsSource.getLocation() + ": " + e.getMessage(),
                        BuilderProblem.Severity.FATAL));
                return Settings.newInstance();
            } catch (IOException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. src/cmd/internal/dwarf/putvarabbrevgen_test.go

    		return string(out)
    	}
    
    	if spvagenfile != slurp(pvagenfile) {
    		t.Error(pvagenfile + " is out of date")
    	}
    
    }
    
    func pvagenerate(t *testing.T) string {
    	var fset token.FileSet
    	f, err := parser.ParseFile(&fset, "./dwarf.go", nil, parser.ParseComments)
    	if err != nil {
    		t.Fatal(err)
    	}
    	cm := ast.NewCommentMap(&fset, f, f.Comments)
    	abbrevs := make(map[string]int)
    	funcs := map[string]ast.Stmt{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/primitives/UnsignedIntsTest.java

        // Valid radix values are Character.MIN_RADIX to Character.MAX_RADIX,
        // inclusive.
        //
        // Note: According to the spec, a NumberFormatException is thrown for a number that is not
        // parseable, but the spec doesn't seem to say which exception is thrown for an invalid radix.
        // In contrast to the JVM, Kotlin native throws an Illegal argument exception in this case
        // (which seems to make more sense).
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top