Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for provider (0.08 sec)

  1. src/cmd/internal/obj/riscv/obj.go

    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  2. src/reflect/type.go

    // If i is a nil interface value, TypeOf returns nil.
    func TypeOf(i any) Type {
    	return toType(abi.TypeOf(i))
    }
    
    // rtypeOf directly extracts the *rtype of the provided value.
    func rtypeOf(i any) *abi.Type {
    	return abi.TypeOf(i)
    }
    
    // ptrMap is the cache for PointerTo.
    var ptrMap sync.Map // map[*rtype]*ptrType
    
    // PtrTo returns the pointer type with element t.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. src/debug/elf/file_test.go

    			if !slices.Equal(symbols, tt.symbols) {
    				t.Errorf("open %s: Symbols() = %v, want %v", tt.file, symbols, tt.symbols)
    			}
    		}
    	}
    }
    
    // elf.NewFile requires io.ReaderAt, which compress/gzip cannot
    // provide. Decompress the file to a bytes.Reader.
    func decompress(gz string) (io.ReaderAt, error) {
    	in, err := os.Open(gz)
    	if err != nil {
    		return nil, err
    	}
    	defer in.Close()
    	r, err := gzip.NewReader(in)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  4. src/time/time_test.go

    		t := UnixMicro(usec)
    		return t.UnixMicro() == usec
    	}
    	cfg := &quick.Config{MaxCount: 10000}
    	if err := quick.Check(f, cfg); err != nil {
    		t.Fatal(err)
    	}
    }
    
    // The time routines provide no way to get absolute time
    // (seconds since zero), but we need it to compute the right
    // answer for bizarre roundings like "to the nearest 3 ns".
    // Compute as t - year1 = (t - 1970) + (1970 - 2001) + (2001 - 1).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    		out, err := runcmd(append(cmd, args...)...)
    		if err != nil {
    			return err
    		}
    
    		return t.checkExpectedOutput(out)
    
    	case "run":
    		// Run Go file if no special go command flags are provided;
    		// otherwise build an executable and run it.
    		// Verify the output.
    		runInDir = ""
    		var out []byte
    		var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. src/go/build/build.go

    			badGoFile(name, &MultiplePackageError{
    				Dir:      p.Dir,
    				Packages: []string{p.Name, pkg},
    				Files:    []string{firstFile, name},
    			})
    		}
    		// Grab the first package comment as docs, provided it is not from a test file.
    		if info.parsed != nil && info.parsed.Doc != nil && p.Doc == "" && !isTest && !isXTest {
    			p.Doc = doc.Synopsis(info.parsed.Doc.Text())
    		}
    
    		if mode&ImportComment != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  7. src/runtime/map.go

    func (h *hmap) noldbuckets() uintptr {
    	oldB := h.B
    	if !h.sameSizeGrow() {
    		oldB--
    	}
    	return bucketShift(oldB)
    }
    
    // oldbucketmask provides a mask that can be applied to calculate n % noldbuckets().
    func (h *hmap) oldbucketmask() uintptr {
    	return h.noldbuckets() - 1
    }
    
    func growWork(t *maptype, h *hmap, bucket uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top