Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for Stateless (0.23 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/map.go

    	Supported language.Coverage
    
    	// We keep the following lists separate, instead of having a single per-
    	// language struct, to give the compiler a chance to remove unused code.
    
    	// Some uppercase mappers are stateless, so we can precompute the
    	// Transformers and save a bit on runtime allocations.
    	upperFunc = []struct {
    		upper mapFunc
    		span  spanFunc
    	}{
    		{nil, nil},                  // und
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/pv_controller_base.go

    	if err != nil {
    		return newClaim, err
    	}
    	_, err = ctrl.storeClaimUpdate(logger, newClaim)
    	if err != nil {
    		return newClaim, err
    	}
    	return newClaim, nil
    }
    
    // Stateless functions
    
    func getClaimStatusForLogging(claim *v1.PersistentVolumeClaim) string {
    	bound := metav1.HasAnnotation(claim.ObjectMeta, storagehelpers.AnnBindCompleted)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_3x.md

        pools.
    
     *  **OkHttpClient is now stateless.** In the 2.x API `OkHttpClient` had getters
        and setters. Internally each request was forced to make its own complete
        snapshot of the `OkHttpClient` instance to defend against racy configuration
        changes. In 3.x, `OkHttpClient` is now stateless and has a builder. Note
        that this class is not strictly immutable as it has stateful members like
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  4. pkg/features/kube_features.go

    	// owner: @rata, @giuseppe
    	// kep: https://kep.k8s.io/127
    	// alpha: v1.25
    	// beta: v1.30
    	//
    	// Enables user namespace support for stateless pods.
    	UserNamespacesSupport featuregate.Feature = "UserNamespacesSupport"
    
    	// owner: @mattcarry, @sunnylovestiramisu
    	// kep: https://kep.k8s.io/3751
    	// alpha: v1.29
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/validation/validation.go

    	}
    	// no further checks, for an easier upgrade/rollback
    	return nil
    }
    
    // statelessCELCompiler does not support variable composition (and thus is stateless). It should be used when
    // variable composition is not allowed, for example, when validating MatchConditions.
    // strictStatelessCELCompiler is a cel Compiler that enforces strict cost enforcement.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        }
      }
    
      auto composite_control_flow_op = [&](const std::string& name) {
        result.name = mlir::OperationName(get_full_op_name(name), context_);
        bool stateless = absl::StartsWith(node_type_name, "Stateless");
        mlir::BoolAttr val = builder_.getBoolAttr(stateless);
        result.attributes.push_back(builder_.getNamedAttr("is_stateless", val));
      };
    
    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/ir/tf_ops_a_m.cc

      bool cond = cond_attr.getSplatValue<BoolAttr>().getValue();
      Region& region = cond ? op.getThenBranch() : op.getElseBranch();
    
      // If the IfRegion is stateless but the region being inlined itself is not
      // stateless, then inlining the region could cause a loss of information.
      // However, its probably better to fold the IfRegion instead of having the
      // dead branch stay.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          if (mlir::isa<TupleType>(type)) return failure();
        }
    
        // Creates a TF::WhileRegionOp to replace the mhlo::WhileOp. HLO WhileOp
        // currently doesn't support stateless and shape invariant, so these
        // parameters are set to the default values.
        auto new_while = rewriter.create<TF::WhileRegionOp>(
            while_op.getLoc(), while_op->getResultTypes(), while_op->getOperands(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  9. RELEASE.md

    *   `tf.cond` emits a StatelessIf op if the branch functions are stateless and
        do not touch any resources.
    *   `tf.cond`, `tf.while` and `if` and `while` in AutoGraph now accept a
        nonscalar predicate if has a single element. This does not affect non-V2
        control flow.
    *   `tf.while_loop` emits a StatelessWhile op if the cond and body functions are
        stateless and do not touch any resources.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.27.md

    - By enabling the `UserNamespacesStatelessPodsSupport` feature gate in kubelet, you can now run a stateless pod in a separate user namespace ([#116377](https://github.com/kubernetes/kubernetes/pull/116377), [@giuseppe](https://github.com/giuseppe)) [SIG Apps, Node and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top