Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 407 for unwrapped (0.12 sec)

  1. tensorflow/c/kernels_experimental.h

    // in the plugin for Variant data types. The API takes in the context and a
    // callback provided by pluggable vendor to do a Binary Add operation on the
    // tensors unwrapped from the Variant tensors. The caller takes ownership of the
    // `a`, `b` and `out` tensors and is responsible for freeing them with
    // TF_DeleteTensor.
    TF_CAPI_EXPORT extern void TF_AddNVariant(
        TF_OpKernelContext* ctx,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 07 14:44:39 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/UncheckedException.java

         *
         * Note: always throws the failure in some form. The return value is to keep the compiler happy.
         *
         * @param e to be unwrapped
         * @return an instance of RuntimeException based on the target exception of the parameter.
         */
        public static RuntimeException unwrapAndRethrow(InvocationTargetException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/net/resolverdialfunc_test.go

    			}
    		}
    		return a, nil
    	}
    }
    
    type resolverDialHandler struct {
    	// StartDial, if non-nil, is called when Go first calls Resolver.Dial.
    	// Any error returned aborts the dial and is returned unwrapped.
    	StartDial func(network, address string) error
    
    	Question func(dnsmessage.Header, dnsmessage.Question)
    
    	// err may be ErrNotExist or ErrRefused; others map to SERVFAIL (RCode2).
    	// A nil error means success.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libtf/value.h

          type_ = NONE;
        }
      }
      ~TaggedValue() { destroy(); }
    
      /// @brief Get the underlying value based on type.
      ///
      /// @tparam T The desired return type.
      /// @return The unwrapped value. If this `TaggedValue` type does not currently
      ///         contain a value of type `T`, the program terminates via a call to
      ///         `assert`.
      template <typename T>
      T& get() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. src/runtime/sema.go

    	// be read outside the lock, but is only written to with lock held.
    	//
    	// Both wait & notify can wrap around, and such cases will be correctly
    	// handled as long as their "unwrapped" difference is bounded by 2^31.
    	// For this not to be the case, we'd need to have 2^31+ goroutines
    	// blocked on the same condvar, which is currently not possible.
    	notify uint32
    
    	// List of parked waiters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/filters/timeout_test.go

    		t.Errorf("got res.StatusCode %d; expected %d due to panic", res.StatusCode, http.StatusInternalServerError)
    	}
    	select {
    	case err := <-gotPanic:
    		if err != http.ErrAbortHandler {
    			t.Errorf("expected unwrapped http.ErrAbortHandler, got %#v", err)
    		}
    	case <-time.After(30 * time.Second):
    		t.Fatalf("expected to see a handler panic, but didn't")
    	}
    }
    
    func TestTimeoutHeaders(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/codehost/git_test.go

    				Version: "97f6aa59c81c623494825b43d39e445566e429a4",
    				Time:    time.Date(2018, 4, 17, 20, 0, 19, 0, time.UTC),
    			},
    		},
    		{
    			repo: gitrepo1,
    			rev:  "v1.2.4-annotated", // annotated tag uses unwrapped commit hash
    			info: &RevInfo{
    				Name:    "ede458df7cd0fdca520df19a33158086a8a68e81",
    				Short:   "ede458df7cd0",
    				Version: "v1.2.4-annotated",
    				Time:    time.Date(2018, 4, 17, 19, 43, 22, 0, time.UTC),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/git.go

    				refs[f[1]] = f[0]
    			}
    		}
    		for ref, hash := range refs {
    			if k, found := strings.CutSuffix(ref, "^{}"); found { // record unwrapped annotated tag as value of tag
    				refs[k] = hash
    				delete(refs, ref)
    			}
    		}
    		r.refs = refs
    	})
    	return r.refs, r.refsErr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. src/encoding/asn1/asn1.go

    	}
    
    	if !params.explicit && params.private && params.tag != nil {
    		expectedClass = ClassPrivate
    		expectedTag = *params.tag
    		matchAnyClassAndTag = false
    	}
    
    	// We have unwrapped any explicit tagging at this point.
    	if !matchAnyClassAndTag && (t.class != expectedClass || t.tag != expectedTag) ||
    		(!matchAny && t.isCompound != compoundType) {
    		// Tags don't match. Again, it could be an optional element.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  10. src/text/template/exec.go

    		argType := typ.In(0)
    		var v reflect.Value
    		for _, arg := range args {
    			v = s.evalArg(dot, argType, arg).Interface().(reflect.Value)
    			if truth(v) == (name == "or") {
    				// This value was already unwrapped
    				// by the .Interface().(reflect.Value).
    				return v
    			}
    		}
    		if final != missingVal {
    			// The last argument to and/or is coming from
    			// the pipeline. We didn't short circuit on an earlier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
Back to top