Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for read_pet (0.12 sec)

  1. src/os/read_test.go

    	}
    
    	foundFile := false
    	foundSubDir := false
    	for _, dir := range list {
    		switch {
    		case !dir.IsDir() && dir.Name() == "read_test.go":
    			foundFile = true
    		case dir.IsDir() && dir.Name() == "exec":
    			foundSubDir = true
    		}
    	}
    	if !foundFile {
    		t.Fatalf("ReadDir %s: read_test.go file not found", dirname)
    	}
    	if !foundSubDir {
    		t.Fatalf("ReadDir %s: exec directory not found", dirname)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 02:36:46 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/encoding/xml/read_test.go

    cui fliter <******@****.***> 1711121504 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  3. scripts/docs.py

        en_index = en_docs_path / "docs" / "index.md"
        content = en_index.read_text("utf-8")
        match_pre = re.search(r"</style>\n\n", content)
        match_start = re.search(r"<!-- sponsors -->", content)
        match_end = re.search(r"<!-- /sponsors -->", content)
        sponsors_data_path = en_docs_path / "data" / "sponsors.yml"
        sponsors = mkdocs.utils.yaml_load(sponsors_data_path.read_text(encoding="utf-8"))
        if not (match_start and match_end):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:26:14 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. .github/actions/people/app/main.py

        people_path = Path("./docs/en/data/people.yml")
        github_sponsors_path = Path("./docs/en/data/github_sponsors.yml")
        people_old_content = people_path.read_text(encoding="utf-8")
        github_sponsors_old_content = github_sponsors_path.read_text(encoding="utf-8")
        new_people_content = yaml.dump(
            people, sort_keys=False, width=200, allow_unicode=True
        )
        new_github_sponsors_content = yaml.dump(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 17:38:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. cmd/xl-storage-format-v2.go

    	case 1:
    		switch minor {
    		case 0:
    			err = readMore(size)
    			return buf, err
    		case 1, 2, 3:
    			sz, tmp, err := msgp.ReadBytesHeader(tmp)
    			if err != nil {
    				return nil, fmt.Errorf("readXLMetaNoData(read_meta): unknown metadata version %w", err)
    			}
    			want := int64(sz) + int64(len(buf)-len(tmp))
    
    			// v1.1 does not have CRC.
    			if minor < 2 {
    				if err := readMore(want); err != nil {
    					return nil, err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top