Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for bigN (0.06 sec)

  1. src/runtime/mgcmark.go

    	size := s.elemsize
    	if s.state.get() == mSpanManual && size == 0 {
    		// We're printing something from a stack frame. We
    		// don't know how big it is, so just show up to an
    		// including off.
    		size = off + goarch.PtrSize
    	}
    	for i := uintptr(0); i < size; i += goarch.PtrSize {
    		// For big objects, just print the beginning (because
    		// that usually hints at the object's type) and the
    		// fields around off.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    									data := sdat[s.Value-sect.Addr:]
    									strlen := bo.Uint64(data[:8])
    									if strlen > (1<<(uint(p.IntSize*8)-1) - 1) { // greater than MaxInt?
    										fatalf("string literal too big")
    									}
    									strlens[n] = int(strlen)
    								}
    							}
    						}
    						break
    					}
    				}
    			}
    
    			buildStrings()
    		}
    		return d, ints, floats, strs
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    	forEachGRace(func(gp1 *g) {
    		gp1.goroutineProfiled.Store(goroutineProfileAbsent)
    	})
    
    	if raceenabled {
    		raceacquire(unsafe.Pointer(&labelSync))
    	}
    
    	if n != int(endOffset) {
    		// It's a big surprise that the number of goroutines changed while we
    		// were collecting the profile. But probably better to return a
    		// truncated profile than to crash the whole process.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    // caller should either call spanOfHeap or check the span bounds
    // explicitly.
    //
    // Must be nosplit because it has callers that are nosplit.
    //
    //go:nosplit
    func spanOf(p uintptr) *mspan {
    	// This function looks big, but we use a lot of constant
    	// folding around arenaL1Bits to get it under the inlining
    	// budget. Also, many of the checks here are safety checks
    	// that Go needs to do anyway, so the generated code is quite
    	// short.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/obj.go

    	// are always lower bounds (since the program gets monotonically longer,
    	// a fixed point will be reached).  No attempt to handle functions > 2GiB.
    	for {
    		big, rescan := false, false
    		maxPC := setPCs(cursym.Func().Text, 0)
    		if maxPC+maxTrampSize > (1 << 20) {
    			big = true
    		}
    
    		for p := cursym.Func().Text; p != nil; p = p.Link {
    			switch p.As {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    		return
    	}
    
    	list := state.lists[varID]
    	list = appendPtr(state.ctxt, list, start)
    	list = appendPtr(state.ctxt, list, end)
    	// Where to write the length of the location description once
    	// we know how big it is.
    	sizeIdx := len(list)
    	list = list[:len(list)+2]
    
    	if state.loggingLevel > 1 {
    		var partStrs []string
    		for i, slot := range state.varSlots[varID] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm_ppc64le.s

    // requirement, data is loaded using LXVD2X and
    // STXVD2X with VPERM to reorder bytes correctly.
    
    // I have identified some areas where I believe
    // changes would be needed to make this work for big
    // endian; however additional changes beyond what I
    // have noted are most likely needed to make it work.
    // - The string used with VPERM to swap the byte order
    //   for loads and stores.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. tensorflow/c/c_api_test.cc

      TestEncodeDecode(__LINE__, {});
      TestEncodeDecode(__LINE__, {"hello"});
      TestEncodeDecode(__LINE__,
                       {"the", "quick", "brown", "fox", "jumped", "over"});
    
      string big(1000, 'a');
      TestEncodeDecode(__LINE__, {"small", big, "small2"});
    }
    
    TEST(CAPI, SessionOptions) {
      TF_SessionOptions* opt = TF_NewSessionOptions();
      TF_DeleteSessionOptions(opt);
    }
    
    TEST(CAPI, DeprecatedSession) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            bean.setSmallB(false);
            assertThat(bean.isSmallB(), equalTo(false));
            assertThat(bean.getSmallB(), equalTo(false));
    
            conventionAware.getConventionMapping().map("bigB", new Callable<Object>() {
                public Object call() throws Exception {
                    return Boolean.TRUE;
                }
            });
    
            assertThat(bean.getBigB(), equalTo(Boolean.TRUE));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  10. src/testing/testing.go

    //
    // If a benchmark needs some expensive setup before running, the timer
    // may be reset:
    //
    //	func BenchmarkBigLen(b *testing.B) {
    //	    big := NewBig()
    //	    b.ResetTimer()
    //	    for range b.N {
    //	        big.Len()
    //	    }
    //	}
    //
    // If a benchmark needs to test performance in a parallel setting, it may use
    // the RunParallel helper function; such benchmarks are intended to be used with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top