Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 250 for worm (0.05 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    //    register (R27).
    //  - All 32-bit Ops will zero the upper 32 bits of the destination register.
    
    // Suffixes encode the bit width of various instructions.
    // D (double word) = 64 bit
    // W (word)        = 32 bit
    // H (half word)   = 16 bit
    // HU              = 16 bit unsigned
    // B (byte)        = 8 bit
    // BU              = 8 bit unsigned
    // S (single)      = 32 bit float
    // D (double)      = 64 bit float
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    	short      bool
    	cgoEnabled bool
    	json       bool
    
    	tests        []distTest // use addTest to extend
    	testNames    map[string]bool
    	timeoutScale int
    
    	worklist []*work
    }
    
    // work tracks command execution for a test.
    type work struct {
    	dt    *distTest     // unique test name, etc.
    	cmd   *exec.Cmd     // must write stdout/stderr to out
    	flush func()        // if non-nil, called after cmd.Run
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    // UTF16PtrToString takes a pointer to a UTF-16 sequence and returns the corresponding UTF-8 encoded string.
    // If the pointer is nil, it returns the empty string. It assumes that the UTF-16 sequence is terminated
    // at a zero word; if the zero word is not present, the program may crash.
    func UTF16PtrToString(p *uint16) string {
    	if p == nil {
    		return ""
    	}
    	if *p == 0 {
    		return ""
    	}
    
    	// Find NUL terminator.
    	n := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/elf.go

    /*
     * ELF definitions that are independent of architecture or word size.
     */
    
    /*
     * Note header.  The ".note" section contains an array of notes.  Each
     * begins with this header, aligned to a word boundary.  Immediately
     * following the note header is n_namesz bytes of name, padded to the
     * next word boundary.  Then comes n_descsz bytes of descriptor, again
     * padded to a word boundary.  The values of n_namesz and n_descsz do
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. pkg/apis/storage/validation/validation_test.go

    			Parameters: map[string]string{
    				"foo-parameter": "free-form-string",
    			},
    		},
    		{
    			// some parameters
    			ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    			DriverName: "kubernetes.io/foo",
    			Parameters: map[string]string{
    				"kubernetes.io/foo-parameter": "free/form/string",
    				"foo-parameter":               "free-form-string",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  6. src/net/http/client_test.go

    	defer afterTest(t)
    	tr := &recordingTransport{}
    	client := &Client{Transport: tr}
    
    	urlStr := "http://dummy.faketld/"
    	form := make(url.Values)
    	form.Set("foo", "bar")
    	form.Add("foo", "bar2")
    	form.Set("bar", "baz")
    	client.PostForm(urlStr, form) // Note: doesn't hit network
    
    	if tr.req.Method != "POST" {
    		t.Errorf("got method %q, want %q", tr.req.Method, "POST")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. src/net/url/url_test.go

    		t.Run(test.query, func(t *testing.T) {
    			form, err := ParseQuery(test.query)
    			if test.ok != (err == nil) {
    				want := "<error>"
    				if test.ok {
    					want = "<nil>"
    				}
    				t.Errorf("Unexpected error: %v, want %v", err, want)
    			}
    			if len(form) != len(test.out) {
    				t.Errorf("len(form) = %d, want %d", len(form), len(test.out))
    			}
    			for k, evs := range test.out {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // particular, the owner_ field (a pthread_t) is not explicitly initialized.
    // This allows initialization to work whether pthread_t is a scalar or struct.
    // The flag -Wmissing-field-initializers must not be specified for this to work.
    # define GTEST_DEFINE_STATIC_MUTEX_(mutex) \
        ::testing::internal::MutexBase mutex = { PTHREAD_MUTEX_INITIALIZER, false }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // particular, the owner_ field (a pthread_t) is not explicitly initialized.
    // This allows initialization to work whether pthread_t is a scalar or struct.
    // The flag -Wmissing-field-initializers must not be specified for this to work.
    # define GTEST_DEFINE_STATIC_MUTEX_(mutex) \
        ::testing::internal::MutexBase mutex = { PTHREAD_MUTEX_INITIALIZER, false }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  10. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.ms-wmdrm.lic-resp",
    				"application/vnd.ms-wmdrm.meter-chlg-req",
    				"application/vnd.ms-wmdrm.meter-resp",
    				"application/vnd.ms-word.document.macroenabled.12",
    				"application/vnd.ms-word.template.macroenabled.12",
    				"application/vnd.ms-works",
    				"application/vnd.ms-wpl",
    				"application/vnd.ms-xpsdocument",
    				"application/vnd.mseq",
    				"application/vnd.msign",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
Back to top