Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for Xacc (0.06 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/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)
  4. 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)
  5. 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)
  6. pkg/kubelet/cm/cpumanager/cpu_assignment_test.go

    		t.Run(tc.description, func(t *testing.T) {
    			acc := newCPUAccumulator(tc.topo, tc.availableCPUs, tc.numCPUs)
    			totalTaken := 0
    			for _, cpus := range tc.takeCPUs {
    				acc.take(cpus)
    				totalTaken += cpus.Size()
    			}
    			if tc.expectSatisfied != acc.isSatisfied() {
    				t.Errorf("expected acc.isSatisfied() to be %t", tc.expectSatisfied)
    			}
    			if tc.expectFailed != acc.isFailed() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 17:31:37 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/MessageBuilderHelper.java

        }
    
        static Collection<String> pathTo(EdgeState edge, boolean includeLast) {
            List<List<EdgeState>> acc = Lists.newArrayListWithExpectedSize(1);
            pathTo(edge, new ArrayList<>(), acc, new HashSet<>());
            List<String> result = Lists.newArrayListWithCapacity(acc.size());
            for (List<EdgeState> path : acc) {
                EdgeState target = Iterators.getLast(path.iterator());
                StringBuilder sb = new StringBuilder();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegritySpec.groovy

            duplicateClasses.isEmpty()
        }
    
        private static def collectJars(TestFile file, Collection<File> acc = []) {
            if (file.name.endsWith('.jar')) {
                acc.add(file)
            }
            if (file.isDirectory()) {
                file.listFiles().each { f -> collectJars(f, acc) }
            }
            acc
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/math/big/float.go

    }
    
    // Mode returns the rounding mode of x.
    func (x *Float) Mode() RoundingMode {
    	return x.mode
    }
    
    // Acc returns the accuracy of x produced by the most recent
    // operation, unless explicitly documented otherwise by that
    // operation.
    func (x *Float) Acc() Accuracy {
    	return x.acc
    }
    
    // Sign returns:
    //
    //	-1 if x <   0
    //	 0 if x is ±0
    //	+1 if x >   0
    func (x *Float) Sign() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/collect/PersistentListTest.groovy

                ["a", "b", "c", "d"]
            ]
        }
    
        private static PersistentList<String> listOf(List<String> elements) {
            return elements.reverse().inject(PersistentList.<String>of()) { acc, val -> acc + val }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top