Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 64 of 64 for content_es (0.17 sec)

  1. src/cmd/cgo/internal/test/issue1435.go

    //   pthread_mutex_unlock(&mu);
    //   for (i = 0; i < nts; i++) {
    //     pthread_join(t[i], NULL);
    //   }
    //   pthread_mutex_destroy(&mu);
    //   free(t);
    // }
    import "C"
    
    // compareStatus is used to confirm the contents of the thread
    // specific status files match expectations.
    func compareStatus(filter, expect string) error {
    	expected := filter + expect
    	pid := syscall.Getpid()
    	fs, err := os.ReadDir(fmt.Sprintf("/proc/%d/task", pid))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 21:31:41 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. src/debug/plan9obj/file.go

    	// If a client wants Read and Seek it must use
    	// Open() to avoid fighting over the seek offset
    	// with other clients.
    	io.ReaderAt
    	sr *io.SectionReader
    }
    
    // Data reads and returns the contents of the Plan 9 a.out section.
    func (s *Section) Data() ([]byte, error) {
    	return saferio.ReadDataAt(s.sr, uint64(s.Size), 0)
    }
    
    // Open returns a new ReadSeeker reading the Plan 9 a.out section.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/vcstest/hg/vgotest1.txt

    # 17
    at 2018-02-19T17:51:24-05:00
    	# README.md at this commit lacked a trailing newline, so 'git apply' can't
    	# seem to apply it correctly as a patch. Instead, we use 'unquote' to write
    	# the exact contents.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  4. src/io/pipe_test.go

    				t.Errorf("Read() = (%d, %v); want (%d, nil)", n, err, readSize)
    			}
    		}
    
    		// Since each Write is fully gated, if multiple Read calls were needed,
    		// the contents of Write should still appear together in the output.
    		got := string(buf)
    		want := strings.Repeat(input, count)
    		if got != want {
    			t.Errorf("got: %q; want: %q", got, want)
    		}
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top