Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for stateful (0.78 sec)

  1. pkg/controller/statefulset/stateful_set_utils_test.go

    					claim.Name = "target-claim"
    					pod := v1.Pod{}
    					pod.Name = fmt.Sprintf("pod-%d", tc.ordinal)
    					pod.GetObjectMeta().SetUID("pod-123")
    					set := apps.StatefulSet{}
    					set.Name = "stateful-set"
    					set.GetObjectMeta().SetUID("ss-456")
    					set.Spec.PersistentVolumeClaimRetentionPolicy = &apps.StatefulSetPersistentVolumeClaimRetentionPolicy{
    						WhenScaled:  tc.scaleDownPolicy,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    // with yield op and an empty block.
    mlir::TF::IfRegionOp CloneEmptyIfWithPredicate(mlir::TF::IfRegionOp if_region,
                                                   OpBuilder& builder) {
      // Mark op as stateful due to side-effecting communication ops added later.
      auto host_side_if = builder.create<mlir::TF::IfRegionOp>(
          if_region.getLoc(), llvm::SmallVector<Type, 4>{}, if_region.getCond(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/types.go

    	// may be out of date by some window of time.
    	// +optional
    	Status StatefulSetStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    }
    
    // PodManagementPolicyType defines the policy for creating pods under a stateful set.
    // +enum
    type PodManagementPolicyType string
    
    const (
    	// OrderedReadyPodManagement will create pods in strictly increasing order on
    	// scale up and strictly decreasing order on scale down, progressing only when
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route.go

    		// This means we have more than one stateful config for the same route because of weighed destinations.
    		// We should just pick the first and give a warning.
    		if perSvcStatefulConfig != nil && statefulConfig != nil {
    			log.Warnf("More than one stateful config for the same route %s. Picking the first one.", routeName)
    			break
    		}
    		statefulConfig = perSvcStatefulConfig
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/httproute_test.go

    							r.TypedPerFilterConfig["envoy.filters.http.stateful_session"] != nil {
    							t.Fatalf("stateful session config is not expected but found for %s, %s", vh.Name, r.Name)
    						}
    					} else {
    						if r.TypedPerFilterConfig == nil && r.TypedPerFilterConfig["envoy.filters.http.stateful_session"] == nil {
    							t.Fatalf("expected stateful session config but not found for %s, %s", vh.Name, r.Name)
    						}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      return op.getOperation();
    }
    
    // TODO(b/172664358): Creates a new op instead of reusing constant op.
    // Creates a constant op with "tfl.is_variable" attribute to represent stateful
    // variable. The function static variable `stateful_variable_idx` is used as a
    // unique value for each constant to avoid CSEed. `tensor` is the data structure
    // of flatbuffer. `shaped_type` is the ShapedType for the const op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier.go

    				tx.Add(&knftables.Set{
    					Name: epInfo.affinitySetName,
    					Type: ipvX_addr,
    					Flags: []knftables.SetFlag{
    						// The nft docs say "dynamic" is only
    						// needed for sets containing stateful
    						// objects (eg counters), but (at least on
    						// RHEL8) if we create the set without
    						// "dynamic", it later gets mutated to
    						// have it, and then the next attempt to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.31.md

    - Emition of RecreatingFailedPod and RecreatingTerminatedPod events has been removed from stateful set lifecycle. ([#123809](https://github.com/kubernetes/kubernetes/pull/123809), [@atiratree](https://github.com/atiratree)) [SIG Apps and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass.cc

                op_info && op_info->resource_kind() != XlaResourceKind::kVariable;
            if (!is_tensor_array_or_stack_op) {
              VLOG(2) << "Isolating " << node->name()
                      << ": must-be-constant stateful op";
              continue;
            }
          }
        }
    
        // This is a heuristic to avoid creating dependency between while loop
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top