Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 190 for too (0.27 sec)

  1. src/runtime/mprof.go

    		if prevScore > thisScore {
    			prof.cyclesLost += cycles
    			return
    		} else {
    			prof.cyclesLost += prev
    		}
    	}
    	// Saving the *mutex as a uintptr is safe because:
    	//  - lockrank_on.go does this too, which gives it regular exercise
    	//  - the lock would only move if it's stack allocated, which means it
    	//      cannot experience multi-M contention
    	prof.pending = uintptr(unsafe.Pointer(l))
    	prof.cycles = cycles
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/prove.go

    	var indVars map[*Block]indVar
    	for _, v := range findIndVar(f) {
    		ind := v.ind
    		if len(ind.Args) != 2 {
    			// the rewrite code assumes there is only ever two parents to loops
    			panic("unexpected induction with too many parents")
    		}
    
    		nxt := v.nxt
    		if !(ind.Uses == 2 && // 2 used by comparison and next
    			nxt.Uses == 1) { // 1 used by induction
    			// ind or nxt is used inside the loop, add it for the facts table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		return "", fmt.Errorf("PPA1 offset seems too big 0x%x\n", offsetPpa1)
    	}
    
    	ppa1 := uintptr(unsafe.Pointer(preamp)) + uintptr(offsetPpa1)
    	res := ptrtest(ppa1)
    	if res != 0 {
    		return "", fmt.Errorf("PPA1 address not valid")
    	}
    
    	size := *(*uint16)(unsafe.Pointer(ppa1 + nameLenOffset))
    	if size > 128 {
    		return "", fmt.Errorf("Function name seems too long, length=%d\n", size)
    	}
    
    	var name [128]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/expr.go

    						check.error(kv, MixedStructLit, "mixture of field:value and value elements in struct literal")
    						continue
    					}
    					check.expr(nil, x, e)
    					if i >= len(fields) {
    						check.errorf(x, InvalidStructLit, "too many values in struct literal of type %s", base)
    						break // cannot continue
    					}
    					// i < len(fields)
    					fld := fields[i]
    					if !fld.Exported() && fld.pkg != check.pkg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  5. pkg/controller/replicaset/replica_set_test.go

    			t.Errorf("Unexpected action %+v", a)
    			break
    		}
    	}
    	if gets != 1 || updates != 2 {
    		t.Errorf("Expected 1 get and 2 updates, got %d gets %d updates", gets, updates)
    	}
    }
    
    // TODO: This test is too hairy for a unittest. It should be moved to an E2E suite.
    func doTestControllerBurstReplicas(t *testing.T, burstReplicas, numReplicas int) {
    	logger, ctx := ktesting.NewTestContext(t)
    	labelMap := map[string]string{"foo": "bar"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    			// install slot in lookup table
    			idx, _ := sc.lookup(sl)
    			// add to f.NamedValues if not already present
    			addToNV(v, sc.canonSlot(idx))
    		} else if v.Op.IsCall() {
    			// if we hit a call, we've gone too far.
    			break
    		}
    	}
    
    	// Now make a pass through the ABI in-params, looking for params
    	// or pieces of params that we didn't encounter in the loop above.
    	for _, inp := range pri.InParams() {
    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/cmd/internal/obj/mips/asm0.go

    	bp := c.cursym.P
    	var i int32
    	var out [4]uint32
    	for p := c.cursym.Func().Text.Link; p != nil; p = p.Link {
    		c.pc = p.Pc
    		o = c.oplook(p)
    		if int(o.size) > 4*len(out) {
    			log.Fatalf("out array in span0 is too small, need at least %d for %v", o.size/4, p)
    		}
    		c.asmout(p, o, out[:])
    		for i = 0; i < int32(o.size/4); i++ {
    			c.ctxt.Arch.ByteOrder.PutUint32(bp, out[i])
    			bp = bp[4:]
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // gcc and clang define __GXX_EXPERIMENTAL_CXX0X__ when
    // -std={c,gnu}++{0x,11} is passed.  The C++11 standard specifies a
    // value for __cplusplus, and recent versions of clang, gcc, and
    // probably other compilers set that too in C++11 mode.
    # if __GXX_EXPERIMENTAL_CXX0X__ || __cplusplus >= 201103L
    // Compiling in at least C++11 mode.
    #  define GTEST_LANG_CXX11 1
    # else
    #  define GTEST_LANG_CXX11 0
    # endif
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    	// for the first frame.
    	u.initAt(^uintptr(0), ^uintptr(0), ^uintptr(0), gp, flags)
    }
    
    func (u *unwinder) initAt(pc0, sp0, lr0 uintptr, gp *g, flags unwindFlags) {
    	// Don't call this "g"; it's too easy get "g" and "gp" confused.
    	if ourg := getg(); ourg == gp && ourg == ourg.m.curg {
    		// The starting sp has been passed in as a uintptr, and the caller may
    		// have other uintptr-typed stack references as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // gcc and clang define __GXX_EXPERIMENTAL_CXX0X__ when
    // -std={c,gnu}++{0x,11} is passed.  The C++11 standard specifies a
    // value for __cplusplus, and recent versions of clang, gcc, and
    // probably other compilers set that too in C++11 mode.
    # if __GXX_EXPERIMENTAL_CXX0X__ || __cplusplus >= 201103L
    // Compiling in at least C++11 mode.
    #  define GTEST_LANG_CXX11 1
    # else
    #  define GTEST_LANG_CXX11 0
    # endif
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top