Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for writeOperation (0.18 sec)

  1. src/mdo/java/WrapperProperties.java

            return writeOperation(p -> p.setProperty(key, value));
        }
    
        @Override
        public synchronized Object put(Object key, Object value) {
            return writeOperation(p -> p.put(key, value));
        }
    
        @Override
        public synchronized Object remove(Object key) {
            return writeOperation(p -> p.remove(key));
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 16:30:18 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Running.kt

        }
        return runToCompletion {
            readOperation()
        }
    }
    
    
    /**
     * Runs the given [writeOperation] synchronously.
     */
    fun <T : WriteContext, U> T.runWriteOperation(writeOperation: suspend T.() -> U): U =
        runToCompletion {
            writeOperation()
        }
    
    
    /**
     * [Starts][startCoroutine] the suspending [block], asserts it runs
     * to completion and returns its result.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 20:48:51 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

            on { value } doReturn Try.successful(42)
        }
    
        private
        fun recordWritingOf(writeOperation: suspend WriteContext.() -> Unit): PlaybackReadContext =
            RecordingWriteContext().apply {
                runWriteOperation(writeOperation)
            }.toReadContext()
    
        /**
         * A [WriteContext] implementation that avoids serialization altogether
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/static/trace_viewer_full.html

    prevStats.read_operation_count;stats.read_operation_per_sec=readOperation/timeIntervalSeconds;}
    if(statName==='write_operation_count'){const writeOperation=stats.write_operation_count-
    prevStats.write_operation_count;stats.write_operation_per_sec=writeOperation/timeIntervalSeconds;}
    if(statName==='other_operation_count'){const otherOperation=stats.other_operation_count-
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top