Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for extractID (0.24 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "SETGE", argLength: 1, reg: readflags, asm: "SETGE"}, // extract signed >= condition from arg0
    		{name: "SETB", argLength: 1, reg: readflags, asm: "SETCS"},  // extract unsigned < condition from arg0
    		{name: "SETBE", argLength: 1, reg: readflags, asm: "SETLS"}, // extract unsigned <= condition from arg0
    		{name: "SETA", argLength: 1, reg: readflags, asm: "SETHI"},  // extract unsigned > condition from arg0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  2. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * cancelled.
         *
         * <p>If the combiningCallable throws an {@code ExecutionException}, the cause of the thrown
         * {@code ExecutionException} will be extracted and used as the failure of the derived step.
         */
        public <V extends @Nullable Object> ClosingFuture<V> call(
            final CombiningCallable<V> combiningCallable, Executor executor) {
          Callable<V> callable =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * cancelled.
         *
         * <p>If the combiningCallable throws an {@code ExecutionException}, the cause of the thrown
         * {@code ExecutionException} will be extracted and used as the failure of the derived step.
         */
        public <V extends @Nullable Object> ClosingFuture<V> call(
            final CombiningCallable<V> combiningCallable, Executor executor) {
          Callable<V> callable =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  4. fastapi/routing.py

            read_with_orm_mode = getattr(_get_model_config(res), "read_with_orm_mode", None)
            if read_with_orm_mode:
                # Let from_orm extract the data from this model instead of converting
                # it now to a dict.
                # Otherwise, there's no way to extract lazy data that requires attribute
                # access instead of dict iteration, e.g. lazy relationships.
                return res
            return _model_dump(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/asmz.go

    	op_EFPC    uint32 = 0xB38C // FORMAT_RRE        EXTRACT FPC
    	op_EPAIR   uint32 = 0xB99A // FORMAT_RRE        EXTRACT PRIMARY ASN AND INSTANCE
    	op_EPAR    uint32 = 0xB226 // FORMAT_RRE        EXTRACT PRIMARY ASN
    	op_EPSW    uint32 = 0xB98D // FORMAT_RRE        EXTRACT PSW
    	op_EREG    uint32 = 0xB249 // FORMAT_RRE        EXTRACT STACKED REGISTERS (32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  6. cmd/object-handlers.go

    		objInfo.ETag = origETag
    		enqueueTransitionImmediate(objInfo, lcEventSrc_s3PutObject)
    		os.Sweep()
    	}
    }
    
    // PutObjectExtractHandler - PUT Object extract is an extended API
    // based off from AWS Snowball feature to auto extract compressed
    // stream will be extracted in the same directory it is stored in
    // and the folder structures will be built out accordingly.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  7. fastapi/applications.py

            description: Annotated[
                Optional[str],
                Doc(
                    """
                    A description for the *path operation*.
    
                    If not provided, it will be extracted automatically from the docstring
                    of the *path operation function*.
    
                    It can contain Markdown.
    
                    It will be added to the generated OpenAPI (e.g. visible at `/docs`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def ExtractTPUCopyWithDynamicShapeOpPass : Pass<"tf-extract-tpu-copy-with-dynamic-shape-op", "mlir::func::FuncOp"> {
      let summary = "Extract the TPUCopyWithDynamicShapeOp out of the host launch and place it on device launch";
    
      let description = [{
        This pass looks for TPUCopyWithDynamicShapeOp which wraps in a
        `tf_device.launch` with host device attribute. It extracts the ops and wrap
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. pkg/api/pod/util_test.go

    	}
    	if extraNames := extractedNames.Difference(expectedSecretPaths); len(extraNames) > 0 {
    		t.Logf("Extra secret names:\n%s", strings.Join(sets.List[string](extraNames), "\n"))
    		t.Error("Extra secret names extracted. Verify VisitPodSecretNames() is correctly extracting secret names")
    	}
    
    	// emptyPod is a stub containing empty object names
    	emptyPod := &api.Pod{
    		Spec: api.PodSpec{
    			Containers: []api.Container{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      NameAttrList then_branch, else_branch;
      TF_RETURN_IF_ERROR(GetNodeAttr(n->attrs(), "then_branch", &then_branch));
      TF_RETURN_IF_ERROR(GetNodeAttr(n->attrs(), "else_branch", &else_branch));
    
      // Extract outside compilation for then_branch and else_branch.
      bool then_branch_has_outside_compilation = false;
      bool else_branch_has_outside_compilation = false;
      string then_branch_host_func_name =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
Back to top