Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for Xacc (0.04 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go

    	Err    uint32
    	Es     uint16
    	Ds     uint16
    	Rip    int64
    	Cs     int64
    	Rflags int64
    	Rsp    int64
    	Ss     int64
    }
    
    type FpReg struct {
    	Env   [4]uint64
    	Acc   [8][16]uint8
    	Xacc  [16][16]uint8
    	Spare [12]uint64
    }
    
    type FpExtendedPrecision struct{}
    
    type PtraceIoDesc struct {
    	Op   int32
    	Offs uintptr
    	Addr *byte
    	Len  uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. src/math/big/float_test.go

    		}
    		if got := x.Prec(); got != prec {
    			t.Errorf("%s.SetPrec(%d).Prec() == %d; want %d", test.x, test.prec, got, prec)
    		}
    		if got, acc := x.String(), x.Acc(); got != test.want || acc != test.acc {
    			t.Errorf("%s.SetPrec(%d) = %s (%s); want %s (%s)", test.x, test.prec, got, acc, test.want, test.acc)
    		}
    	}
    }
    
    func TestFloatMinPrec(t *testing.T) {
    	const max = 100
    	for _, test := range []struct {
    		x    string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/jquery-3.6.3.min.map

    OzZ,EACP6O,EAAO,CAAEmK,KAKRQ,GAAWd,EAASmB,aAAeJ,EAAM5K,MAK7CiL,EAAUN,EACTE,EACA,WACC,IACCA,IACC,MAAQ/S,GAEJzJ,EAAOmb,SAAS0B,eACpB7c,EAAOmb,SAAS0B,cAAepT,EAC9BmT,EAAQE,YAMQV,GAAbC,EAAQ,IAIPvQ,IAAY0N,IAChB+C,OAAOzZ,EACP6O,EAAO,CAAElI,IAGV+R,EAASuB,WAAYR,EAAM5K,MAS3B0K,EACJO,KAKK5c,EAAOmb,SAAS6B,eACpBJ,EAAQE,WAAa9c,EAAOmb,SAAS6B,gBAEtCjgB,EAAOkgB,WAAYL,KAKtB,OAAO5c,EAAOmb,SAAU,SAAUS,GAGjCP,EAAQ,GAAK,GAAI1C,IAChBgB,EACC,EACAiC,EACAvd,EAAY8d,GACXA,EACA7C,EACDsC,EAASc,aAKXrB,EAAQ,GAAK,GAAI1C,IAChBgB,E...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/surroundingobject.go

    //
    // and:
    //
    //	NewRootObjectFunc(), then acc(x) == x
    //	NewRootObjectFunc().Index(), then acc([x]) == x
    //	NewRootObjectFunc().Index().Child("foo"), then acc([{"foo": x}]) == x
    //	NewRootObjectFunc().Index().Child("foo").Child("bar"), then acc([{"foo": {"bar":x}}]) == x
    //	NewRootObjectFunc().Index().Child("foo").Child("bar").Index(), then acc([{"foo": {"bar":[x]}}]) == x
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  5. src/internal/trace/gc.go

    	}
    
    	if len(acc.wHeap) < acc.nWorst {
    		// We don't have N windows yet, so keep accumulating.
    		acc.bound = 1.0
    	} else {
    		// Anything above the least worst window has no effect.
    		acc.bound = math.Max(acc.bound, acc.wHeap[0].MutatorUtil)
    	}
    
    	if acc.mud != nil {
    		if acc.lastTime != math.MaxInt64 {
    			// Update distribution.
    			acc.mud.add(acc.lastMU, mu, float64(time-acc.lastTime))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    	//    Otherwise pull from sockets first.
    	acc.numaOrSocketsFirst.takeFullFirstLevel()
    	if acc.isSatisfied() {
    		return acc.result, nil
    	}
    	acc.numaOrSocketsFirst.takeFullSecondLevel()
    	if acc.isSatisfied() {
    		return acc.result, nil
    	}
    
    	// 2. Acquire whole cores, if available and the container requires at least
    	//    a core's-worth of CPUs.
    	acc.takeFullCores()
    	if acc.isSatisfied() {
    		return acc.result, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. src/math/big/floatexample_test.go

    	z.Add(&x, &y)
    	fmt.Printf("x = %.10g (%s, prec = %d, acc = %s)\n", &x, x.Text('p', 0), x.Prec(), x.Acc())
    	fmt.Printf("y = %.10g (%s, prec = %d, acc = %s)\n", &y, y.Text('p', 0), y.Prec(), y.Acc())
    	fmt.Printf("z = %.10g (%s, prec = %d, acc = %s)\n", &z, z.Text('p', 0), z.Prec(), z.Acc())
    	// Output:
    	// x = 1000 (0x.fap+10, prec = 64, acc = Exact)
    	// y = 2.718281828 (0x.adf85458248cd8p+2, prec = 53, acc = Exact)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. src/main/webapp/js/jquery-3.6.3.min.map

    OzZ,EACP6O,EAAO,CAAEmK,KAKRQ,GAAWd,EAASmB,aAAeJ,EAAM5K,MAK7CiL,EAAUN,EACTE,EACA,WACC,IACCA,IACC,MAAQ/S,GAEJzJ,EAAOmb,SAAS0B,eACpB7c,EAAOmb,SAAS0B,cAAepT,EAC9BmT,EAAQE,YAMQV,GAAbC,EAAQ,IAIPvQ,IAAY0N,IAChB+C,OAAOzZ,EACP6O,EAAO,CAAElI,IAGV+R,EAASuB,WAAYR,EAAM5K,MAS3B0K,EACJO,KAKK5c,EAAOmb,SAAS6B,eACpBJ,EAAQE,WAAa9c,EAAOmb,SAAS6B,gBAEtCjgB,EAAOkgB,WAAYL,KAKtB,OAAO5c,EAAOmb,SAAU,SAAUS,GAGjCP,EAAQ,GAAK,GAAI1C,IAChBgB,EACC,EACAiC,EACAvd,EAAY8d,GACXA,EACA7C,EACDsC,EAASc,aAKXrB,EAAQ,GAAK,GAAI1C,IAChBgB,E...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  9. test/fixedbugs/issue33355.go

    	}
    	subPool.Put(sub)
    }
    
    func subjectStartsWithGatewayReplyPrefix(subj []byte) bool {
    	return len(subj) > 8 && string(subj[:4]) == "foob"
    }
    
    func (c *client) gatewayInterest(acc, subj string) *SublistResult {
    	ei, _ := c.gw.outsim.Load(acc)
    	var r *SublistResult
    	e := ei.(*outsie)
    	r = e.sl.Match(subj)
    	return r
    }
    
    func (s *Sublist) Match(subject string) *SublistResult {
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 01 02:15:18 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/time_budget.go

    	t.Lock()
    	defer t.Unlock()
    	// budget accumulated since last access
    	now := t.clock.Now()
    	acc := now.Sub(t.last).Seconds() * t.refresh.Seconds()
    	if acc < 0 {
    		acc = 0
    	}
    	// update current budget and store the current time
    	if t.budget = t.budget + time.Duration(acc*1e9); t.budget > t.maxBudget {
    		t.budget = t.maxBudget
    	}
    	t.last = now
    	result := t.budget
    	t.budget = time.Duration(0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2.6K bytes
    - Viewed (0)
Back to top