Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 128 for halse (0.17 sec)

  1. .idea/codeStyles/Project.xml

          <option name="JD_ALIGN_PARAM_COMMENTS" value="false" />
          <option name="JD_ALIGN_EXCEPTION_COMMENTS" value="false" />
          <option name="JD_P_AT_EMPTY_LINES" value="false" />
          <option name="JD_KEEP_EMPTY_PARAMETER" value="false" />
          <option name="JD_KEEP_EMPTY_EXCEPTION" value="false" />
          <option name="JD_KEEP_EMPTY_RETURN" value="false" />
        </JavaCodeStyleSettings>
        <JetCodeStyleSettings>
    XML
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Jul 31 14:47:08 GMT 2023
    - 3.4K bytes
    - Viewed (1)
  2. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

    class TypeSignatureVisitor(private val asmLevel: Int, val variance: Variance = Variance.INVARIANT) : SignatureVisitor(asmLevel) {
    
        var isArray = false
    
        lateinit var binaryName: String
    
        val typeArguments = ArrayList<TypeSignatureVisitor>(1)
    
        private
        var expectTypeArgument = false
    
        override fun visitBaseType(descriptor: Char) =
            visitBinaryName(binaryNameOfBaseType(descriptor))
    
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Tue Feb 06 19:56:10 GMT 2024
    - 20.8K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

        validations:
          required: false
      - type: textarea
        id: environment
        attributes:
          label: Your Environment (optional)
          description: |
            Include as many relevant details about the environment you experienced the bug in
        validations:
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Feb 16 07:49:32 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  4. .editorconfig

    insert_final_newline = true
    
    # Markdown files sometimes need trailing whitespaces.
    [*.md]
    trim_trailing_whitespace = false
    
    [*.{yml,yaml}]
    indent_size = 2
    
    [gradle/verification-metadata.xml]
    indent_size = 3
    
    [subprojects/launcher/src/main/resources/release-features.txt]
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Oct 02 11:48:19 GMT 2023
    - 643 bytes
    - Viewed (0)
  5. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

                }
            }
        }
    }
    
    
    private
    fun Project.bucket(name: String, description: String) = configurations.create(name) {
        isVisible = false
        isCanBeResolved = false
        isCanBeConsumed = false
        this.description = description
    }
    
    
    private
    fun Project.resolver(name: String, libraryElements: String, extends: Configuration? = null) = configurations.create(name) {
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Mon Feb 12 13:19:06 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  6. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/util/KotlinSourceParser.kt

                Disposer.dispose(disposable)
            }
        }
    
        private
        val messageCollector: MessageCollector
            get() = PrintingMessageCollector(System.out, MessageRenderer.PLAIN_RELATIVE_PATHS, false)
    
        fun <T : Any> mapParsedKotlinFiles(vararg sourceRoots: File, block: (KtFile) -> T): List<T> =
            withParsedKotlinSource(sourceRoots.toList()) { ktFiles ->
                ktFiles.map(block)
            }
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 4K bytes
    - Viewed (0)
  7. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

    }
    
    tasks.withType<Test>().configureEach {
        shouldRunAfter(codeQuality)
    }
    tasks.check {
        dependsOn(codeQuality)
    }
    
    val rules by configurations.creating {
        isVisible = false
        isCanBeConsumed = false
    
        attributes {
            attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements.RESOURCES))
        }
    }
    
    val groovyVersion = GroovySystem.getVersion()
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Jan 30 10:26:21 GMT 2024
    - 6K bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/50_maintainer_chore.yml

          description: |
            How has this issue affected you? What are you trying to accomplish?
            Providing context helps us come up with a solution that is most useful in the real world
        validations:
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Sep 12 11:52:53 GMT 2023
    - 856 bytes
    - Viewed (0)
  9. build-logic/documentation/src/test/resources/org/gradle/test/JavaClass.java

         * The setter for a property.
         * @param value
         */
        public void setSomeProp(JavaInterface value) {
        }
    
        /**
         * A boolean property.
         */
        boolean isFlag() {
            return false;
        }
    
        /**
         * An array property.
         */
        public JavaInterface[][][] getArrayProp() {
            return null;
        }
    Java
    - Registered: Wed Apr 10 11:36:10 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.1K bytes
    - Viewed (0)
  10. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocRendererTest.groovy

            PropertyDoc readOnlyProperty = propertyDoc('readOnlyProperty', readable: true, writeable: false)
            PropertyDoc writeOnlyProperty = propertyDoc('writeOnlyProperty', readable: false, writeable: true)
            _ * classDoc.classProperties >> [readWriteProperty, readOnlyProperty, writeOnlyProperty]
            _ * classDoc.classMethods >> []
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 40.8K bytes
    - Viewed (0)
Back to top