Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 358 for Mutated (0.61 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

            }
        }
    
        @Timeout(30)
        def "downstream dependencies of a failed task do not block destroyer to run"() {
            buildFile << """
                def mutatedFile = file("build/mutated.txt")
                def destroyer = tasks.register("destroyer") {
                    destroyables.register(mutatedFile)
                    doLast {
                        assert mutatedFile.delete()
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

       *
       * <p>For example, verify that calls to remove() actually removed the correct elements.
       *
       * @param elements the expected elements passed to the constructor, as mutated by {@code
       *     remove()}, {@code set()}, and {@code add()} calls
       */
      protected void verify(List<E> elements) {}
    
      /** Executes the test. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. src/net/http/client.go

    //   - when forwarding the "Cookie" header with a non-nil cookie Jar.
    //     Since each redirect may mutate the state of the cookie jar,
    //     a redirect may possibly alter a cookie set in the initial request.
    //     When forwarding the "Cookie" header, any mutated cookies will be omitted,
    //     with the expectation that the Jar will insert those mutated cookies
    //     with the updated values (assuming the origin matches).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
Back to top