Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for writeOperation (0.29 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)
Back to top