Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 116 for stateful (0.14 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleExtractorTest.groovy

            def fromSecondExtraction = extractor.extract(AbstractRules)
    
            then:
            fromFirstExtraction.is(fromSecondExtraction)
        }
    
        def "new instance is created for extracted stateful abstract rules"() {
            when:
            def fromFirstExtraction = extractor.extract(AbstractPropertyRules)
            def fromSecondExtraction = extractor.extract(AbstractPropertyRules)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/util/util_test.go

    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    			sessionConfig := MaybeBuildStatefulSessionFilterConfig(tt.service)
    			if !reflect.DeepEqual(tt.expectedconfig, sessionConfig) {
    				t.Errorf("unexpected stateful session filter config, expected: %v, got :%v", tt.expectedconfig, sessionConfig)
    			}
    		})
    	}
    }
    
    func TestMergeSubsetTrafficPolicy(t *testing.T) {
    	cases := []struct {
    		name     string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

    // returned.
    Operation* GetIslandInnerOpOrSelf(mlir::Operation* op) {
      auto island = llvm::dyn_cast<mlir::tf_executor::IslandOp>(op);
      if (island) return &island.GetBody().front();
      return op;
    }
    
    // Stateful helper class to export a function into a Graph.
    class Exporter {
     public:
      // Converts the given Module to a Graph. The given module should only contain
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

    // returned.
    Operation* GetIslandInnerOpOrSelf(mlir::Operation* op) {
      auto island = llvm::dyn_cast<mlir::tf_executor::IslandOp>(op);
      if (island) return &island.GetBody().front();
      return op;
    }
    
    // Stateful helper class to export a function into a Graph.
    class Exporter {
     public:
      // Converts the given Module to a Graph. The given module should only contain
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_control.go

    	podControl        *StatefulPodControl
    	statusUpdater     StatefulSetStatusUpdaterInterface
    	controllerHistory history.Interface
    }
    
    // UpdateStatefulSet executes the core logic loop for a stateful set, applying the predictable and
    // consistent monotonic update strategy by default - scale up proceeds in ordinal order, no new pod
    // is created while any pod is unhealthy, and pods are terminated in descending order. The burst
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      }
    
      std::string GetName(OpOrVal op_or_val) override {
        DCHECK(false) << "Unimplemented";
        return "";
      }
    
      const FunctionLibraryDefinition& flib_;
    };
    
    // Stateful helper class to import a TensorFlow model into an MLIR Module.
    //
    // This is the base class that contains common utilities shared between the
    // GraphDef importer and SavedModel importer.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

      // This preserves the order of the ops that was in the original parent
      // funtion. This is critical for preserving correctness in the presence of
      // resource variables and stateful functions.
      std::vector<Operation*> topological_order;
      for (Operation& op : parent_func.getOps())
        if (ops.contains(&op)) topological_order.push_back(&op);
    
      // Create the partitioned call
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    // This is used to represent the type of "ref tensors" or tensors that are
    // used as variables to track state.
    def TFL_StatefulTensor : TypeAlias<AnyTensor, "stateful tensor">;
    
    //===----------------------------------------------------------------------===//
    // Rank/Shape helpers.
    //===----------------------------------------------------------------------===//
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // mapping.
      void InitializeNamesFromAttribute(FuncOp fn, bool* has_input_attr);
    
      // Determines if the specified operation op's operand at operand_index
      // is marked as a stateful operand.
      bool IsStatefulOperand(mlir::Operation* op, int operand_index);
    
      // Returns a unique name for `val`.
      std::string UniqueName(mlir::Value val);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/validation/validation.go

    	var allErrors field.ErrorList
    	var compiler plugincel.Compiler // composition compiler is stateful, create one lazily per policy
    	getCompiler := func() plugincel.Compiler {
    		if compiler == nil {
    			needsComposition := len(spec.Variables) > 0
    			compiler = createCompiler(needsComposition, opts.strictCostEnforcement)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
Back to top