Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 91 for Tresults (0.15 sec)

  1. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

              // Test timed get before we've completed any delayed futures.
              try {
                List<String> result = future.get(0, MILLISECONDS);
                assertTrue("Got " + result, asList("a", null).containsAll(result));
              } catch (CancellationException e) {
                assertTrue(merger == Merger.allMerger);
                inputs.assertHasImmediateCancel(iFuture, jFuture, e);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  2. pkg/apis/resource/v1alpha2/zz_generated.conversion.go

    	}
    	out.NodeName = in.NodeName
    	if in.Results != nil {
    		in, out := &in.Results, &out.Results
    		*out = make([]resource.DriverAllocationResult, len(*in))
    		for i := range *in {
    			if err := Convert_v1alpha2_DriverAllocationResult_To_resource_DriverAllocationResult(&(*in)[i], &(*out)[i], s); err != nil {
    				return err
    			}
    		}
    	} else {
    		out.Results = nil
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    def RemoveUnusedWhileResultsPass : Pass<"tf-remove-unused-while-results", "mlir::func::FuncOp"> {
      let summary = "Removes unused results from tf.WhileRegion ops";
       let description = [{
          Removes unused results from `tf.WhileRegion` ops along with the defining
          ops in the body, if it is safe to do so.
          Currently, the pass detects results with following properties:
          - the result is unused outside of the `tf.WhileRegion` op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      func.return %0 : tensor<2xf32>
    }
    
    // -----
    
    // tf.Region yield number of results should match op number of results
    func.func @testIfRegionThenResultCount(%arg0: tensor<i1>, %arg1: tensor<2xf32>) -> tensor<2xf32> {
      // expected-error @+1 {{'tf.IfRegion' op  region control flow edge from Region #0 to parent results: source has 2 operands, but target successor needs 1}}
      %0 = "tf.IfRegion"(%arg0) ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/testdata/cmpConst_test.go

    	"runtime"
    	"testing"
    )
    
    // results show the expected result for the elements left of, equal to and right of the index.
    type result struct{ l, e, r bool }
    
    var (
    	eq = result{l: false, e: true, r: false}
    	ne = result{l: true, e: false, r: true}
    	lt = result{l: true, e: false, r: false}
    	le = result{l: true, e: true, r: false}
    	gt = result{l: false, e: false, r: true}
    	ge = result{l: false, e: true, r: true}
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 103.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	defer destroyFunc()
    	obj := &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo", UID: "random-uid"},
    	}
    	result, err := s.finalizeDelete(genericapirequest.NewContext(), obj, false, &metav1.DeleteOptions{})
    	if err != nil {
    		t.Fatalf("unexpected err: %s", err)
    	}
    	returnedObj := result.(*metav1.Status)
    
    	expectedObj := &metav1.Status{
    		Status: metav1.StatusSuccess,
    		Details: &metav1.StatusDetails{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        result.addAttribute("f", val);
    
        if (!result.attributes.get("_disable_call_shape_inference")) {
          result.addAttribute("_disable_call_shape_inference",
                              builder_.getBoolAttr(false));
        }
      }
    
      auto composite_control_flow_op = [&](const std::string& name) {
        result.name = mlir::OperationName(get_full_op_name(name), context_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. src/reflect/value.go

    	// and then copies the results back into scratch.
    	call(methodFrameType, methodFn, methodFrame, uint32(methodFrameType.Size()), uint32(methodABI.retOffset), uint32(methodFrameSize), &methodRegs)
    
    	// Copy return values.
    	//
    	// This is somewhat simpler because both ABIs have an identical
    	// return value ABI (the types are identical). As a result, register
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFile.java

            }
    
            return "smb1://";
        }
    
    /**
     * Returns the full uncanonicalized URL of this SMB resource. An
     * <code>SmbFile</code> constructed with the result of this method will
     * result in an <code>SmbFile</code> that is equal to the original.
     *
     * @return  The uncanonicalized full URL of this SMB resource.
     */
    
        public String getPath() {
            return url.toString();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    // (see 'go help build') to force rebuilding of packages that
    // depend on the updated C libraries.
    //
    // The go command also caches successful package test results.
    // See 'go help test' for details. Running 'go clean -testcache' removes
    // all cached test results (but not cached build results).
    //
    // The go command also caches values used in fuzzing with 'go test -fuzz',
    // specifically, values that expanded code coverage when passed to a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top