Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 79 for Xacc (0.03 sec)

  1. pkg/kubelet/stats/helper.go

    			result.Rootfs.InodesUsed = &rootInodes
    		}
    	}
    
    	for _, acc := range cstat.Accelerators {
    		result.Accelerators = append(result.Accelerators, statsapi.AcceleratorStats{
    			Make:        acc.Make,
    			Model:       acc.Model,
    			ID:          acc.ID,
    			MemoryTotal: acc.MemoryTotal,
    			MemoryUsed:  acc.MemoryUsed,
    			DutyCycle:   acc.DutyCycle,
    		})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  2. src/math/big/floatmarsh.go

    // rounding mode, accuracy) are marshaled.
    func (x *Float) GobEncode() ([]byte, error) {
    	if x == nil {
    		return nil, nil
    	}
    
    	// determine max. space (bytes) required for encoding
    	sz := 1 + 1 + 4 // version + mode|acc|form|neg (3+2+2+1bit) + prec
    	n := 0          // number of mantissa words
    	if x.form == finite {
    		// add space for mantissa and exponent
    		n = int((x.prec + (_W - 1)) / _W) // required mantissa length in words for given precision
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDslProjectBuildFileIntegrationSpec.groovy

                                System.out.println("primaryAccess = { " +
                                        acc.getName().get() + ", " + acc.getRead().get() + ", " + acc.getWrite().get() + "}"
                                );
                                secondaryAccess.get().forEach(it -> {
                                    System.out.println("secondaryAccess { " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. test/fixedbugs/issue34577.dir/b.go

    package b
    
    import "./a"
    
    type B struct {
    	s string
    }
    
    func (b B) Func(x a.A) a.A {
    	return a.W(x, k, b)
    }
    
    type ktype int
    
    const k ktype = 0
    
    func Func2() a.AI {
    	return a.ACC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 338 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/cc/const_op_size.cc

      const auto str_attr = cast<DenseStringElementsAttr>(const_value);
    
      // Sum the sizes of each string.
      return absl::c_accumulate(
          str_attr.getRawStringData(), 0,
          [](int64_t acc, const StringRef str_value) -> int64_t {
            return acc + str_value.size();
          });
    }
    
    // Arbitrarily calculate the size of const of type whose size is unkown or
    // varying. Each element of such a type is considered to have
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 14 04:37:13 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/prune.go

    		obj, acc, err := f(s.Default.Object)
    		if err != nil {
    			return false, fmt.Errorf("failed to prune default value: %v", err)
    		}
    		if err := structuralobjectmeta.Coerce(nil, obj, p.rootSchema, true, true); err != nil {
    			return false, fmt.Errorf("failed to prune default value: %v", err)
    		}
    		pruning.Prune(obj, p.rootSchema, true)
    		s.Default.Object, _, err = acc(obj)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 23 20:20:54 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/UserTypesCodecTest.kt

                equalTo(1024)
            )
        }
    
        sealed class Peano {
    
            companion object {
    
                fun fromInt(n: Int): Peano = (0 until n).fold(Z as Peano) { acc, _ -> S(acc) }
            }
    
            fun toInt(): Int = sequence().count() - 1
    
            object Z : Peano() {
                override fun toString() = "Z"
            }
    
            data class S(val n: Peano) : Peano() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. test/fixedbugs/issue34577.dir/a.go

    // license that can be found in the LICENSE file.
    
    package a
    
    type A struct {
    	x int
    }
    
    type AI interface {
    	bar()
    }
    
    type AC int
    
    func (ab AC) bar() {
    }
    
    const (
    	ACC = AC(101)
    )
    
    //go:noinline
    func W(a A, k, v interface{}) A {
    	return A{3}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 14 16:13:27 UTC 2019
    - 353 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

        }
    
        private def collectGradleProjects(Collection<GradleProject> projects, Collection<GradleProject> acc = []) {
            acc.addAll(projects)
            projects.each { collectGradleProjects(it.children, acc) }
            acc
        }
    
        private void executeTaskViaBuildInvocationsLaunchable(String taskName) {
            withConnection { connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. src/math/big/sqrt.go

    //
    // If z's precision is 0, it is changed to x's precision before the
    // operation. Rounding is performed according to z's precision and
    // rounding mode, but z's accuracy is not computed. Specifically, the
    // result of z.Acc() is undefined.
    //
    // The function panics if z < 0. The value of z is undefined in that
    // case.
    func (z *Float) Sqrt(x *Float) *Float {
    	if debugFloat {
    		x.validate()
    	}
    
    	if z.prec == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top