Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 174 for plus (2.56 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/PropertyTest.kt

    import org.gradle.internal.declarativedsl.schemaBuilder.DefaultPropertyExtractor
    import org.gradle.internal.declarativedsl.schemaBuilder.PropertyExtractor
    import org.gradle.internal.declarativedsl.schemaBuilder.plus
    import org.gradle.internal.declarativedsl.schemaBuilder.schemaFromTypes
    import org.gradle.internal.declarativedsl.schemaBuilder.toDataTypeRefOrError
    import kotlin.reflect.KClass
    import kotlin.reflect.KType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

            <!--</module>-->
    
            <!-- Coding -->
            <module name="CovariantEquals"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:16 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            def files = collection.files
    
            then:
            1 * callable.call() >> null
            0 * fileResolver._
            files.empty
        }
    
        def "can append contents to convention-based collection using plus operator"() {
            given:
            def file1 = new File("1")
            def file2 = new File("2")
            def src = containing(file2)
    
            when:
            collection.convention("src1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/PerCollectionSizeTestSuiteBuilder.java

     * @param <G> The type of the generator to be passed to testers in the generated test suite. An
     *     instance of G should somehow provide an instance of the class under test, plus any other
     *     information required to parameterize the test.
     * @see FeatureSpecificTestSuiteBuilder
     * @author George van den Driessche
     */
    @GwtIncompatible
    public abstract class PerCollectionSizeTestSuiteBuilder<
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modindex/write.go

    // license that can be found in the LICENSE file.
    
    package modindex
    
    import (
    	"cmd/go/internal/base"
    	"encoding/binary"
    	"go/token"
    	"sort"
    )
    
    const indexVersion = "go index v2" // 11 bytes (plus \n), to align uint32s in index
    
    // encodeModuleBytes produces the encoded representation of the module index.
    // encodeModuleBytes may modify the packages slice.
    func encodeModuleBytes(packages []*rawPackage) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. architecture/standards/0004-use-a-platform-architecture.md

    This is a general purpose platform that builds on the core automation platform to add support for the automation of software development.
    This includes work such as compiling, testing and documenting software, plus sharing that software via publishing and dependency management.
    This platform is agnostic to what kind of software is being developed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/EvaluationFailureMessageGenerator.kt

                "ambiguous functions: " +
                    errorReason.functions.joinToString(",") { resolution ->
                        resolution.schemaFunction.simpleName + "(" + resolution.binding.binding.keys.joinToString { it.name.plus(": ") + it.type } + ")"
                    }
    
            is ErrorReason.AmbiguousImport -> "ambiguous import '${errorReason.fqName}'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/codecs/BindingsBackedCodec.kt

    ) {
        companion object {
            fun of(builder: BindingsBuilder.() -> Unit) = BindingsBuilder(emptyList()).apply(builder).build()
        }
    
        /**
         * Builds a new set of bindings based on the current bindings plus any bindings created via the given builder.
         */
        fun append(builder: BindingsBuilder.() -> Unit) = BindingsBuilder(bindings).apply(builder).build()
    
        fun build() = BindingsBackedCodec(bindings)
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblemsSummary.kt

                    }
                }
                if (uniqueProblemCount > maxConsoleProblems) {
                    appendLine("plus ${uniqueProblemCount - maxConsoleProblems} more problems. Please see the report for details.")
                }
                htmlReportFile?.let {
                    appendLine()
                    append(buildSummaryReportLink(it))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/expand_calls.go

    	}
    	return fmt.Printf(format, a...)
    }
    
    func (x *expandState) invalidateRecursively(a *Value) {
    	var s string
    	if x.debug > 0 {
    		plus := " "
    		if a.Pos.IsStmt() == src.PosIsStmt {
    			plus = " +"
    		}
    		s = a.String() + plus + a.Pos.LineNumber() + " " + a.LongString()
    		if x.debug > 1 {
    			x.Printf("...marking %v unused\n", s)
    		}
    	}
    	lost := a.invalidateRecursively()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
Back to top