Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 120 for Iosize (0.18 sec)

  1. src/cmd/link/internal/ld/dwarf.go

    		addDwsectCUSize(".debug_info", d.getPkgFromCUSym(s), uint64(cusize))
    	}
    	if isDwarf64(d.linkctxt) {
    		cusize -= 12                          // exclude the length field.
    		su.SetUint(d.arch, 4, uint64(cusize)) // 4 because of 0XFFFFFFFF
    	} else {
    		cusize -= 4 // exclude the length field.
    		su.SetUint32(d.arch, 0, uint32(cusize))
    	}
    	return append(syms, cu...)
    }
    
    func (d *dwctxt) writegdbscript() dwarfSecInfo {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go

    	}
    	status, err := t.client.Status(ctx, t.endpoints[rand.Int()%len(t.endpoints)])
    	if err != nil {
    		return metrics.StorageMetrics{}, err
    	}
    	return metrics.StorageMetrics{
    		Size: status.DbSize,
    	}, nil
    }
    
    var newETCD3Client = func(c storagebackend.TransportConfig) (*clientv3.Client, error) {
    	tlsInfo := transport.TLSInfo{
    		CertFile:      c.CertFile,
    		KeyFile:       c.KeyFile,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:56:39 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. src/math/cosh_s390x.s

    DATA coshe5<>+0(SB)/8, $0.833349307718286047e-02
    GLOBL coshe5<>+0(SB), RODATA, $8
    DATA coshe6<>+0(SB)/8, $0.138926439368309441e-02
    GLOBL coshe6<>+0(SB), RODATA, $8
    
    // Cosh returns the hyperbolic cosine of x.
    //
    // Special cases are:
    //      Cosh(±0) = 1
    //      Cosh(±Inf) = +Inf
    //      Cosh(NaN) = NaN
    // The algorithm used is minimax polynomial approximation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 5.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loadelf/ldelf.go

    			rType := objabi.ElfRelocOffset + objabi.RelocType(relocType)
    			rSize, addendSize, err := relSize(arch, pn, uint32(relocType))
    			if err != nil {
    				return nil, 0, err
    			}
    			if rela != 0 {
    				rAdd = int64(add)
    			} else {
    				// load addend from image
    				if rSize == 4 {
    					rAdd = int64(e.Uint32(sect.base[rOff:]))
    				} else if rSize == 8 {
    					rAdd = int64(e.Uint64(sect.base[rOff:]))
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

      // 'relation' is kCopy.
      void Init(const Element* array, size_t a_size, RelationToSource relation) {
        if (relation == kReference) {
          array_ = array;
        } else {
          Element* const copy = new Element[a_size];
          CopyArray(array, a_size, copy);
          array_ = copy;
        }
        size_ = a_size;
        relation_to_source_ = relation;
      }
    
      const Element* array_;
      size_t size_;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  6. src/image/jpeg/fdct.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package jpeg
    
    // This file implements a Forward Discrete Cosine Transformation.
    
    /*
    It is based on the code in jfdctint.c from the Independent JPEG Group,
    found at http://www.ijg.org/files/jpegsrc.v8c.tar.gz.
    
    The "LEGAL ISSUES" section of the README in that archive says:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 23:18:37 UTC 2019
    - 6K bytes
    - Viewed (0)
  7. internal/bucket/lifecycle/filter_test.go

    		{
    			filter:  fiLtAndGt,
    			objSize: 100*humanize.MiByte + 1,
    			want:    false,
    		},
    	}
    	for i, test := range tests {
    		t.Run(fmt.Sprintf("Test %d", i+1), func(t *testing.T) {
    			if got := test.filter.BySize(test.objSize); got != test.want {
    				t.Fatalf("Expected %v but got %v", test.want, got)
    			}
    		})
    	}
    }
    
    func TestTestTags(t *testing.T) {
    	noTags := Filter{
    		set: true,
    		And: And{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 27 00:01:20 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. api/go1.14.txt

    pkg syscall (freebsd-arm64), const CS7 ideal-int
    pkg syscall (freebsd-arm64), const CS8 = 768
    pkg syscall (freebsd-arm64), const CS8 ideal-int
    pkg syscall (freebsd-arm64), const CSIZE = 768
    pkg syscall (freebsd-arm64), const CSIZE ideal-int
    pkg syscall (freebsd-arm64), const CSTART = 17
    pkg syscall (freebsd-arm64), const CSTART ideal-int
    pkg syscall (freebsd-arm64), const CSTATUS = 20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  9. api/go1.16.txt

    pkg syscall (darwin-arm64), const CS7 ideal-int
    pkg syscall (darwin-arm64), const CS8 = 768
    pkg syscall (darwin-arm64), const CS8 ideal-int
    pkg syscall (darwin-arm64), const CSIZE = 768
    pkg syscall (darwin-arm64), const CSIZE ideal-int
    pkg syscall (darwin-arm64), const CSTART = 17
    pkg syscall (darwin-arm64), const CSTART ideal-int
    pkg syscall (darwin-arm64), const CSTATUS = 20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  10. src/runtime/metrics_test.go

    		case "/gc/heap/allocs-by-size:bytes":
    			hist := samples[i].Value.Float64Histogram()
    			// Skip size class 0 in BySize, because it's always empty and not represented
    			// in the histogram.
    			for i, sc := range mstats.BySize[1:] {
    				if b, s := hist.Buckets[i+1], float64(sc.Size+1); b != s {
    					t.Errorf("bucket does not match size class: got %f, want %f", b, s)
    					// The rest of the checks aren't expected to work anyway.
    					continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top