Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 968 for Mutated (0.24 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    // as []ExpressionWarning that is ready to be set in policy.Status
    // The result is nil if type checking returns no warning.
    // The policy object is NOT mutated. The caller should update Status accordingly
    func (c *TypeChecker) Check(policy *v1.ValidatingAdmissionPolicy) []v1.ExpressionWarning {
    	ctx := c.CreateContext(policy)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. pkg/controller/history/controller_history.go

    // ControllerRevisions. An instance of Interface can be retrieved from NewHistory. Implementations must treat all
    // pointer parameters as "in" parameter, and they must not be mutated.
    type Interface interface {
    	// ListControllerRevisions lists all ControllerRevisions matching selector and owned by parent or no other
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 13:33:52 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/wait/backoff.go

    	// steps parameter is set to zero.
    	Cap time.Duration
    }
    
    // Step returns an amount of time to sleep determined by the original
    // Duration and Jitter. The backoff is mutated to update its Steps and
    // Duration. A nil Backoff always has a zero-duration step.
    func (b *Backoff) Step() time.Duration {
    	if b == nil {
    		return 0
    	}
    	var nextDuration time.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/schema.fbs

      // A list of booleans indicating the input tensors which are being mutated by
      // this operator.(e.g. used by RNN and LSTM).
      // For example, if the "inputs" array refers to 5 tensors and the second and
      // fifth are mutable variables, then this list will contain
      // [false, true, false, false, true].
      //
      // If the list is empty, no variable is mutated in this operator.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

         * so that these tasks are executed if this file collection is used as an input to some task.
         *
         * This method can also be used to create an empty collection, which can later be mutated to add elements.
         *
         * @param paths The paths to the files. May be empty.
         * @return The file collection.
         */
        @Suppress("unused")
        fun files(vararg paths: Any): ConfigurableFileCollection =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepository.java

                        // Starting here we're going to process the component metadata rules
                        // Therefore metadata can be mutated, and will _not_ be stored in the module metadata cache
                        // but will be in the _in memory_ cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  7. pkg/api/pod/util_test.go

    					}
    
    					DropDisabledPodFields(newPod, newPod)
    					require.Equal(t, &test.pod, newPod, "unchanged pod should never be mutated")
    
    					DropDisabledPodFields(newPod, nil)
    
    					if enabled && fieldsEnabled {
    						assert.Equal(t, &test.pod, newPod, "pod should not be mutated when both feature gates are enabled")
    						return
    					}
    
    					expectAnnotations := test.hasAnnotations && enabled
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/model/StateTransitionController.java

    @ThreadSafe
    public class StateTransitionController<T extends StateTransitionController.State> {
        private final DisplayName displayName;
        private final Synchronizer synchronizer;
        // This structure is immutable, and this field is mutated only by the thread that owns the lock
        private volatile CurrentState<T> state;
    
        public StateTransitionController(DisplayName displayName, T initialState, Synchronizer synchronizer) {
            this.displayName = displayName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 03 03:31:44 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  9. tensorflow/c/ops.h

    TF_CAPI_EXPORT extern int64_t TF_ShapeInferenceContextNumInputs(
        TF_ShapeInferenceContext* ctx);
    
    // Returns a newly allocated shape handle. The shapes represented by these
    // handles may be queried or mutated with the corresponding
    // TF_ShapeInferenceContext...  functions.
    TF_CAPI_EXPORT extern TF_ShapeHandle* TF_NewShapeHandle();
    
    // Places the ith input of the given shape inference context into the given
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/InitScriptApi.kt

         * so that these tasks are executed if this file collection is used as an input to some task.
         *
         * This method can also be used to create an empty collection, which can later be mutated to add elements.
         *
         * @param paths The paths to the files. May be empty.
         * @return The file collection.
         */
        @Suppress("unused")
        fun files(vararg paths: Any): ConfigurableFileCollection =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top