Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for any_list (0.14 sec)

  1. tensorflow/cc/saved_model/loader_util.cc

      const auto assets_it = collection_def_map.find(kSavedModelAssetsKey);
      if (assets_it == collection_def_map.end()) {
        return absl::OkStatus();
      }
      const auto& any_assets = assets_it->second.any_list().value();
      for (const auto& any_asset : any_assets) {
        AssetFileDef asset_file_def;
        TF_RETURN_IF_ERROR(
            ParseAny(any_asset, &asset_file_def, "tensorflow.AssetFileDef"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 10 10:25:28 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/testdata/half_plus_two_pbtxt/00000123/saved_model.pbtxt

        key: "legacy_init_op"
        value {
          node_list {
            value: "group_deps"
          }
        }
      }
      collection_def {
        key: "saved_model_assets"
        value {
          any_list {
            value {
              type_url: "type.googleapis.com/tensorflow.AssetFileDef"
              value: "\n\t\n\007Const:0\022\007foo.txt"
            }
          }
        }
      }
      collection_def {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 01:10:27 UTC 2017
    - 46.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/list_symlink_dotdotdot.txt

    cd sym
    go list ./...
    cmp stdout $WORK/gopath/src/want_list.txt
    -- tree/go.mod --
    module example.com/tree
    
    go 1.20
    -- tree/tree.go --
    package tree
    -- tree/branch/branch.go --
    package branch
    -- dir2/squirrel.go --
    package squirrel
    -- want_list.txt --
    example.com/tree
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 463 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ir/visit.go

    	do = func(x Node) bool {
    		return cond(x) || DoChildren(x, do)
    	}
    	return do(n)
    }
    
    // AnyList calls Any(x, cond) for each node x in the list, in order.
    // If any call returns true, AnyList stops and returns true.
    // Otherwise, AnyList returns false after calling Any(x, cond)
    // for every x in the list.
    func AnyList(list Nodes, cond func(Node) bool) bool {
    	for _, x := range list {
    		if Any(x, cond) {
    			return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 14:29:16 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/modifiers/impl/KtDeclarationModifiersRendererForSource.kt

    public object KaDeclarationModifiersRendererForSource {
        public val NO_IMPLICIT_MODIFIERS: KaDeclarationModifiersRenderer = KaDeclarationModifiersRenderer {
            modifierListRenderer = KaModifierListRenderer.AS_LIST
            modifiersSorter = KaModifiersSorter.CANONICAL
            modalityProvider = KaRendererModalityModifierProvider.WITHOUT_IMPLICIT_MODALITY
            visibilityProvider = KaRendererVisibilityModifierProvider.NO_IMPLICIT_VISIBILITY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/examples/pad/ops_defs.py

        attrs=['mode: {"REFLECT", "SYMMETRIC"}'],
        derived_attrs=['T: type', 'Tpaddings: {int32, int64} = DT_INT32'],
        outputs=['output: T'])
    def _composite_mirror_pad(input_, paddings, mode):
      shape = input_.shape.as_list()
      for i in range(len(shape)):
        rdims = tf.raw_ops.OneHot(
            indices=i, depth=len(shape), on_value=True, off_value=False, axis=-1)
        rarray = tf.raw_ops.Reverse(tensor=input_, dims=rdims)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 01 05:00:29 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

      I16 = 23
      I32 = 24
      I64 = 25
      F32 = 26
      INDEX = 27
      AG_UNDEFINED_VAL = 100
      AG_BUILTIN_FUNC = 101
      TF_RAW_OP = 102
      TF_REGION = 103
      TF_TENSOR_SHAPE_FUNC = 104  # shape.as_list
      TF_TENSOR_SHAPE_LIST = 105  # shape.as_list()
      PY_BUILTIN_FUNC = 200
      TFR_BUILTIN_FUNC = 201
    
      # As these are not real types, __getattribute__ helps them appear more like
      # actual types (i.e. class definitions).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.mockito.ArgumentMatchers.any;
    import static org.mockito.ArgumentMatchers.anyBoolean;
    import static org.mockito.ArgumentMatchers.anyList;
    import static org.mockito.Mockito.mock;
    import static org.mockito.Mockito.when;
    
    class DefaultGraphBuilderTest {
        /*
        The multi-module structure in this project is displayed as follows:
    
        module-parent
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 09:23:26 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/complit.go

    		appendWalkStmt(init, a)
    	}
    }
    
    func anylit(n ir.Node, var_ ir.Node, init *ir.Nodes) {
    	t := n.Type()
    	switch n.Op() {
    	default:
    		base.Fatalf("anylit: not lit, op=%v node=%v", n.Op(), n)
    
    	case ir.ONAME:
    		n := n.(*ir.Name)
    		appendWalkStmt(init, ir.NewAssignStmt(base.Pos, var_, n))
    
    	case ir.OMETHEXPR:
    		n := n.(*ir.SelectorExpr)
    		anylit(n.FuncName(), var_, init)
    
    	case ir.OPTRLIT:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/superTypes/KtSuperTypeListRenderer.kt

        public fun renderSuperTypes(
            analysisSession: KaSession,
            symbol: KaClassOrObjectSymbol,
            declarationRenderer: KaDeclarationRenderer,
            printer: PrettyPrinter,
        )
    
        public object AS_LIST : KaSuperTypeListRenderer {
            override fun renderSuperTypes(
                analysisSession: KaSession,
                symbol: KaClassOrObjectSymbol,
                declarationRenderer: KaDeclarationRenderer,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top