Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Scharf (0.56 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractUserClassFilePermissions.java

        }
    
        protected static boolean isRead(int unixNumeric) {
            return (unixNumeric & 4) >> 2 == 1;
        }
    
        protected static boolean isRead(String unixSymbolic) {
            char symbol = unixSymbolic.charAt(0);
            if (symbol == 'r') {
                return true;
            } else if (symbol == '-') {
                return false;
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheConventionMappingIntegrationTest.groovy

            where:
            type      | value     | output
            String    | "'value'" | "value"
            Boolean   | "true"    | "true"
            boolean   | "true"    | "true"
            Character | "'a'"     | "a"
            char      | "'a'"     | "a"
            Byte      | "12"      | "12"
    //        byte| "12"      | "12" // TODO: currently not working
            Short     | "12"      | "12"
            short     | "12"      | "12"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

        val name = truncateName(subprojects.joinToString(","))
    
        private fun truncateName(str: String) =
            // Can't exceed Linux file name limit 255 char on TeamCity
            if (str.length > 200) {
                str.substring(0, 200) + "..."
            } else {
                str
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 05:14:09 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

        public ReleaseNotesTransformer(Reader original) {
            super(original);
            this.in = new Reader() {
                Reader delegate = null;
    
                @Override
                public int read(char[] cbuf, int off, int len) throws IOException {
                    if (delegate == null) {
                        delegate = transform(original);
                    }
                    return delegate.read(cbuf, off, len);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSupportedTypesIntegrationTest.groovy

            boolean.name                         | "true"                                    | "true"
            Character.name                       | "'a'"                                     | "a"
            char.name                            | "'a'"                                     | "a"
            Byte.name                            | "12"                                      | "12"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. gradle/wrapper/gradle-wrapper.jar

    Logger implements Appendable { public final boolean quiet; public void Logger(boolean); public final void log(String); public final Appendable append(CharSequence); public final Appendable append(CharSequence, int, int); public final Appendable append(char); } org/gradle/wrapper/PathAssembler.class package org.gradle.wrapper; public final synchronized class PathAssembler { public void PathAssembler(java.io.File, java.io.File); } org/gradle/wrapper/SystemPropertiesHand.class package org.gradle.wrapper;...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 08:44:14 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEncryptionIntegrationTest.groovy

            KeyStore ks = KeyStore.getInstance(KeyStoreKeySource.KEYSTORE_TYPE)
            keyStoreFile.withInputStream { ks.load(it, new char[]{'c', 'c'}) }
            ks.deleteEntry("gradle-secret")
            keyStoreFile.withOutputStream { ks.store(it, new char[]{'c', 'c'}) }
    
            when:
            runWithEncryption()
    
            then:
            configurationCache.assertStateStored()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

            }
        }
    
        private
        fun boundOf(wildcard: Char) =
            when (wildcard) {
                '+' -> Variance.COVARIANT
                '-' -> Variance.CONTRAVARIANT
                else -> Variance.INVARIANT
            }
    }
    
    
    private
    fun binaryNameOfBaseType(descriptor: Char) =
        Type.getType(descriptor.toString()).className
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 19:56:10 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/ObjectInputStreamAdapter.kt

        override fun mark(readlimit: Int) = inputStream.mark(readlimit)
    
        override fun reset() = inputStream.reset()
    
        override fun read(): Int = inputStream.read()
    
        override fun readChar(): Char = readContext.readInt().toChar()
    
        override fun readUnsignedByte(): Int = readByte().let {
            require(it >= 0)
            it.toInt()
        }
    
        override fun readByte(): Byte = readContext.readByte()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/JsonModelWriter.kt

            documentationRegistry.documentationLinkFor(section)
    
        private
        fun write(csq: CharSequence) = writer.append(csq)
    
        private
        fun write(c: Char) = writer.append(c)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top