Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Flow (0.16 sec)

  1. RELEASE.md

    *   EagerTensor now supports numpy buffer interface for tensors.
    *   Add toggles `tf.enable_control_flow_v2()` and `tf.disable_control_flow_v2()`
        for enabling/disabling v2 control flow.
    *   Enable v2 control flow as part of `tf.enable_v2_behavior()` and
        `TF2_BEHAVIOR=1`.
    *   AutoGraph translates Python control flow into TensorFlow expressions,
        allowing users to write regular Python inside `tf.function`-decorated
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  2. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

          }
        }.test();
      }
    
      @GwtIncompatible // slow (~5s)
      public void testConcatNoIteratorsYieldsEmpty() {
        new EmptyIteratorTester() {
          @Override
          protected Iterator<Integer> newTargetIterator() {
            return Iterators.concat();
          }
        }.test();
      }
    
      @GwtIncompatible // slow (~5s)
      public void testConcatOneEmptyIteratorYieldsEmpty() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Apr 30 18:43:01 GMT 2024
    - 56.5K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

        end
        Note over dep: After yield
        opt Handle other exception
            dep -->> dep: Handle exception, can't change response. E.g. close DB session.
        end
    ```
    
    The new execution flow can be found in the docs: [Execution of dependencies with `yield`](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-with-yield/#execution-of-dependencies-with-yield).
    
    ### Features
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Apr 28 00:28:00 GMT 2024
    - 385.5K bytes
    - Viewed (1)
  4. cni/README.md

    This component accomplishes that in the following ways:
    
    1. By installing a separate, very basic "CNI plugin" binary onto the node to forward low-level pod lifecycle events (CmdAdd/CmdDel/etc) from whatever node-level CNI subsystem is in use to this node agent for processing via socket.
    1. By running as a node-level daemonset that:
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 12.3K bytes
    - Viewed (0)
  5. cmd/xl-storage.go

    				dstBuf, err = xioutil.ReadFile(dstFilePath)
    				if err != nil && !osIsNotExist(err) {
    					return res, osErrToFileErr(err)
    				}
    			}
    		}
    	}
    
    	// Preserve all the legacy data, could be slow, but at max there can be 10,000 parts.
    	currentDataPath := pathJoin(dstVolumeDir, dstPath)
    
    	var xlMeta xlMetaV2
    	var legacyPreserved bool
    	var legacyEntries []string
    	if len(dstBuf) > 0 {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 84.7K bytes
    - Viewed (0)
Back to top