Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 324 for seem (0.21 sec)

  1. src/math/rand/v2/chacha8_test.go

    	}
    
    	p.Seed(chacha8seed)
    	h.Reset()
    
    	buf = make([]byte, chacha8outlen)
    	if _, err := io.ReadFull(iotest.OneByteReader(p), buf); err != nil {
    		t.Errorf("one byte reads: %v", err)
    	}
    	h.Write(buf)
    	if got := h.Sum(nil); !bytes.Equal(got, chacha8hash) {
    		t.Errorf("transcript incorrect (one byte reads): got %x, want %x", got, chacha8hash)
    	}
    
    	p.Seed(chacha8seed)
    	h.Reset()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 55K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	if len(versions) < 1 {
    		allErrs = append(allErrs, field.Required(fldPath, ""))
    	} else {
    		seen := map[string]bool{}
    		hasAcceptedVersion := false
    		for i, v := range versions {
    			if seen[v] {
    				allErrs = append(allErrs, field.Invalid(fldPath.Index(i), v, "duplicate version"))
    				continue
    			}
    			seen[v] = true
    			for _, errString := range utilvalidation.IsDNS1035Label(v) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  3. src/fmt/fmt_test.go

    	// reflect.Value handled specially in Go 1.5, making it possible to
    	// see inside non-exported fields (which cannot be accessed with Interface()).
    	// Issue 8965.
    	{"%v", reflect.ValueOf(A{}).Field(0).String(), "<int Value>"}, // Equivalent to the old way.
    	{"%v", reflect.ValueOf(A{}).Field(0), "0"},                    // Sees inside the field.
    
    	// verbs apply to the extracted value too.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    GTEST_DECLARE_string_(output);
    
    // This flags control whether Google Test prints the elapsed time for each
    // test.
    GTEST_DECLARE_bool_(print_time);
    
    // This flag specifies the random number seed.
    GTEST_DECLARE_int32_(random_seed);
    
    // This flag sets how many times the tests are repeated. The default value
    // is 1. If the value is -1 the tests are repeating forever.
    GTEST_DECLARE_int32_(repeat);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    GTEST_DECLARE_string_(output);
    
    // This flags control whether Google Test prints the elapsed time for each
    // test.
    GTEST_DECLARE_bool_(print_time);
    
    // This flag specifies the random number seed.
    GTEST_DECLARE_int32_(random_seed);
    
    // This flag sets how many times the tests are repeated. The default value
    // is 1. If the value is -1 the tests are repeating forever.
    GTEST_DECLARE_int32_(repeat);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  6. cmd/xl-storage.go

    	// Verify it is a regular file, otherwise subsequent Seek is
    	// undefined.
    	if !st.Mode().IsRegular() {
    		file.Close()
    		return nil, errIsNotRegular
    	}
    
    	if st.Size() < offset+length {
    		// Expected size cannot be satisfied for
    		// requested offset and length
    		file.Close()
    		return nil, errFileCorrupt
    	}
    
    	if offset > 0 {
    		if _, err = file.Seek(offset, io.SeekStart); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. src/syscall/zerrors_solaris_amd64.go

    	23:  "file table overflow",
    	24:  "too many open files",
    	25:  "inappropriate ioctl for device",
    	26:  "text file busy",
    	27:  "file too large",
    	28:  "no space left on device",
    	29:  "illegal seek",
    	30:  "read-only file system",
    	31:  "too many links",
    	32:  "broken pipe",
    	33:  "argument out of domain",
    	34:  "result too large",
    	35:  "no message of desired type",
    	36:  "identifier removed",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  8. src/strings/strings_test.go

    	name string
    	f    func(*Reader)
    }{
    	{"Read", func(r *Reader) { r.Read([]byte{0}) }},
    	{"ReadByte", func(r *Reader) { r.ReadByte() }},
    	{"UnreadRune", func(r *Reader) { r.UnreadRune() }},
    	{"Seek", func(r *Reader) { r.Seek(0, io.SeekCurrent) }},
    	{"WriteTo", func(r *Reader) { r.WriteTo(&bytes.Buffer{}) }},
    }
    
    func TestUnreadRuneError(t *testing.T) {
    	for _, tt := range UnreadRuneErrorTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	storedFooWithUpdates := storedFoo.DeepCopyObject()
    	objectMeta = t.getObjectMetaOrFail(storedFooWithUpdates)
    	objectMeta.SetAnnotations(map[string]string{"A": "2"})
    
    	// Make sure a custom transform is called, and sees the expected updatedObject and oldObject
    	// This tests the mechanism used to pass the old and new object to admission
    	calledUpdatedObject := 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  10. src/syscall/zerrors_linux_386.go

    	23:  "too many open files in system",
    	24:  "too many open files",
    	25:  "inappropriate ioctl for device",
    	26:  "text file busy",
    	27:  "file too large",
    	28:  "no space left on device",
    	29:  "illegal seek",
    	30:  "read-only file system",
    	31:  "too many links",
    	32:  "broken pipe",
    	33:  "numerical argument out of domain",
    	34:  "numerical result out of range",
    	35:  "resource deadlock avoided",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
Back to top