Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Metral (0.21 sec)

  1. tensorflow/c/eager/c_api_test.cc

          TFE_DeleteOp(add_op_dummy);
        }
      }
      TFE_TensorHandle* retval = nullptr;
      TFE_Execute(add_op, &retval, &num_retvals, status);
      EXPECT_EQ(1, num_retvals);
      EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      if (!forward_input) {
        TFE_DeleteTensorHandle(n);
      }
      TFE_DeleteOp(add_op);
    
      TF_Tensor* t = TFE_TensorHandleResolve(retval, status);
      if (async) {
        if (forward_input) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    The next step is to do the same by downloading what is actually on Maven Central:
    
    ----
    $ curl https://my-company-mirror.com/repo/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar  --output central-j2objc-annotations-1.1.jar
    $ curl https://my-company-mirror.com/repo/com/google/j2objc/j2objc-annotations/1/1/j2objc-annotations-1.1.jar.asc  --output central-j2objc-annotations-1.1.jar.asc
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. src/math/big/float_test.go

    		_, ok := x.SetString(want)
    		if !ok {
    			t.Errorf("invalid fraction %s", want)
    			continue
    		}
    		n := max(x.Num().BitLen(), x.Denom().BitLen())
    
    		var f1, f2 Float
    		f2.SetPrec(1000)
    		f1.SetRat(&x)
    		f2.SetRat(&x)
    
    		// check precision when set automatically
    		if n < 64 {
    			n = 64
    		}
    		if prec := f1.Prec(); prec != uint(n) {
    			t.Errorf("got prec = %d; want %d", prec, n)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  4. istioctl/pkg/describe/describe.go

    	}
    	return strings.Join(matches, ", ")
    }
    
    func renderMatch(match *v1alpha3.HTTPMatchRequest) string {
    	retval := "Match: "
    	// TODO Are users interested in seeing Scheme, Method, Authority?
    	if match.Uri != nil {
    		retval += renderStringMatch(match.Uri)
    
    		if match.IgnoreUriCase {
    			retval += " uncased"
    		}
    	}
    
    	if len(match.Headers) > 0 {
    		headerConds := []string{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

           llvm::enumerate(callee.front().getTerminator()->getOperands())) {
        auto retval = entry.value();
        if (!mlir::isa<TF::ResourceType>(getElementTypeOrSelf(retval.getType()))) {
          result->old_to_new_output_indices.push_back(non_resource_results++);
          continue;
        }
        auto aliasing_arg = mlir::dyn_cast<BlockArgument>(retval);
        if (!aliasing_arg) {
          return callee.emitOpError("unsupported function call: ")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/runtime/mheap.go

    	curArena struct {
    		base, end uintptr
    	}
    
    	// central free lists for small size classes.
    	// the padding makes sure that the mcentrals are
    	// spaced CacheLinePadSize bytes apart, so that each mcentral.lock
    	// gets its own cache line.
    	// central is indexed by spanClass.
    	central [numSpanClasses]struct {
    		mcentral mcentral
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    // combined into a two-page span.
    //
    // It's critical to ensure that no operations proceed on unswept spans (that would corrupt
    // mark bits in GC bitmap). During GC all mcaches are flushed into the central cache,
    // so they are empty. When a goroutine grabs a new span into mcache, it sweeps it.
    // When a goroutine explicitly frees an object or sets a finalizer, it ensures that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. src/testing/testing.go

    // Name will append a suffix to guarantee the returned name is unique.
    func (c *common) Name() string {
    	return c.name
    }
    
    func (c *common) setRan() {
    	if c.parent != nil {
    		c.parent.setRan()
    	}
    	c.mu.Lock()
    	defer c.mu.Unlock()
    	c.ran = true
    }
    
    // Fail marks the function as having failed but continues execution.
    func (c *common) Fail() {
    	if c.parent != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

          "FnWithResourceOp", {"var:resource", "val:float"}, {"retval:float"}, {},
          {{{"assign_op"},
            "AssignVariableOp",
            {"var", "val"},
            {{"dtype", DT_FLOAT}}},
           {{"retval"}, "Identity", {"val"}, {{"T", DT_FLOAT}}, {"assign_op"}}});
    
      FunctionDefLibrary flib;
      *flib.add_function() = compilable;
      FunctionLibraryDefinition flib_def(OpRegistry::Global(), flib);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  10. gradle/verification-metadata.xml

                <pgp value="B801E2F8EF035068EC1139CC29579F18FA8FD93B"/>
                <ignored-keys>
                   <ignored-key id="29579F18FA8FD93B" reason="Artifact has been overwritten on Maven Central"/>
                </ignored-keys>
                <sha256 value="2994a7eb78f2710bd3d3bfb639b2c94e219cedac0d4d084d516e78c16dddecf6" origin="Verified by Bo"/>
             </artifact>
          </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
Back to top