Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for readImg (0.13 sec)

  1. staging/README.md

    SIG that owns the repos in
    [`sigs.yaml`](https://github.com/kubernetes/community/blob/master/sigs.yaml).
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 11:23:09 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. CHANGELOG/README.md

    Kubernetes Release Robot <******@****.***> 1718206304 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. doc/README.md

    Dmitri Shuralyov <******@****.***> 1717615285 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/AbstractUndeclaredBuildInputsIntegrationTest.groovy

            where:
            testCase                                        | fileAccess
            "reading text with default encoding"            | (TestFile it) -> { UndeclaredFileAccess.fileText(testFilePath(it)) }
            "reading text with customized encoding"         | (TestFile it) -> { UndeclaredFileAccess.fileTextWithEncoding(testFilePath(it)) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/FilesInTransformIntegrationTest.groovy

    import org.gradle.util.internal.TextUtil
    
    class FilesInTransformIntegrationTest extends AbstractProcessIntegrationTest {
        def setup() {
            inputFile.text = "INPUT FILE CONTENT"
        }
    
        def "reading a file in transform action with #task does not create a build input"() {
            given:
            getTransformFixture().tap {
                withTransformPlugin(testDirectory.createDir("buildSrc"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/sync/rwmutex.go

    //
    // For example, atomic.AddInt32 in RLock should not appear to provide
    // acquire-release semantics, which would incorrectly synchronize racing
    // readers, thus potentially missing races.
    
    // RLock locks rw for reading.
    //
    // It should not be used for recursive read locking; a blocked Lock
    // call excludes new readers from acquiring the lock. See the
    // documentation on the [RWMutex] type.
    func (rw *RWMutex) RLock() {
    	if race.Enabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

    import java.util.function.Supplier
    
    class UndeclaredBuildInputsIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
        def testDir = testDirectoryProvider.testDirectory
    
        def "reports build logic reading a system property set #mechanism.description via the Java API"() {
            buildFile << """
                // not declared
                System.getProperty("CI")
            """
    
            when:
            mechanism.setup(this)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  8. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/HasInternalProtocol.java

     *
     * This should only be used on a type that is always assumed to also implement the internal protocol by Gradle internals.
     *
     * This exists to help anyone reading the source code realise that there is an internal component to the type.
     */
    @Retention(RetentionPolicy.SOURCE)
    @Target({ElementType.TYPE})
    public @interface HasInternalProtocol {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinPlatformComponent.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.platform
    
    /**
     * A **platform component** as defined by the Platform Interface (see the README).
     *
     * Mandatory platform components must be implemented by a platform to fully support the Analysis API in the desired environment. A few
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSkipCacheIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    class ConfigurationCacheSkipCacheIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "skip reading cached state on #commandLine"() {
    
            def configurationCache = newConfigurationCacheFixture()
    
            given:
            buildFile << """
                abstract class MyTask extends DefaultTask {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top