Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 399 for a$b (0.03 sec)

  1. src/runtime/env_posix.go

    			return s[len(key)+1:]
    		}
    	}
    	return ""
    }
    
    // envKeyEqual reports whether a == b, with ASCII-only case insensitivity
    // on Windows. The two strings must have the same length.
    func envKeyEqual(a, b string) bool {
    	if GOOS == "windows" { // case insensitive
    		for i := 0; i < len(a); i++ {
    			ca, cb := a[i], b[i]
    			if ca == cb || lowerASCII(ca) == lowerASCII(cb) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            httpServer.start()
            taskTypeWithOutputFileProperty()
    
            remoteRepo.module("group", "lib1", "6500").publish().allowAll()
    
            createDirs("a", "b")
            settingsFile << """
                rootProject.name = 'root'
                include 'a', 'b'"""
    
            buildFile << """
                subprojects {
                    group = 'test'
                    configurations { create("default") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/BuildPhaseOperationEventCrossVersionTest.groovy

                    .run()
            }
    
            then:
            def progressEvents = events.getAll()
            progressEvents.size() == 6
    
            // We have 4 projects (root, a, b, c)
            assertStartEventHas(progressEvents[0], "CONFIGURE_ROOT_BUILD", 4)
            assertSuccessfulFinishEventHas(progressEvents[1], "CONFIGURE_ROOT_BUILD")
    
            assertStartEventHas(progressEvents[2], "RUN_MAIN_TASKS", 0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 10:41:50 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiCoupledProjectsIntegrationTest.groovy

            and:
            fixture.assertStateStoredWithProblems {
                projectConfigured(":buildSrc")
                projectsConfigured(":")
                buildModelCreated()
                modelsCreated(":a", ":b", ":c")
                problem("Build file 'build.gradle': line 3: Project ':' cannot access 'Project.plugins' functionality on another project ':a'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. src/internal/bytealg/equal_loong64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "go_asm.h"
    #include "textflag.h"
    
    #define	REGCTXT	R29
    
    // memequal(a, b unsafe.Pointer, size uintptr) bool
    TEXT runtime·memequal<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-25
    	BEQ	R4, R5, eq
    	ADDV	R4, R6, R7
    	PCALIGN	$16
    loop:
    	BNE	R4, R7, test
    	MOVV	$1, R4
    	RET
    test:
    	MOVBU	(R4), R9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 875 bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r410/GradleBuildModelCrossVersionSpec.groovy

                settingsFile << """
                    rootProject.name = 'root'
                    includeBuild 'buildB'
                """
            }
            def buildBDir = multiProjectBuildInSubFolder("buildB", ["a", "b", "c"]) {
                settingsFile << """
                    includeBuild '../buildC'
                """
            }
            def buildCDir = singleProjectBuildInSubfolder("buildC")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskExecutionIntegrationTest.groovy

        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects")
        def "does not create rule based tasks in projects without required tasks"() {
            when:
            createDirs("a", "b", "c")
            settingsFile << "include 'a', 'b', 'c'"
            buildFile << """
                allprojects {
                    model {
                        tasks {
                            create("t1") {
                                group = "mygroup"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r56/ToolingApiEclipseModelTestSourcesCrossVersionSpec.groovy

        }
    
        def "can use compile classpath for API and implementation separation"() {
            given:
            createDirs("a", "b", "c", "d")
            settingsFile << "include('a', 'b', 'c', 'd')"
            buildFile << """
                subprojects {
                    apply plugin: 'java-library'
                    apply plugin: 'eclipse'
    
                    configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskErrorExecutionIntegrationTest.groovy

            failure.assertHasCause("broken action")
        }
    
        def "reports task injected by other project fails with runtime exception"() {
            createDirs("a", "b")
            file("settings.gradle") << "include 'a', 'b'"
            TestFile buildFile = file("b/build.gradle")
            buildFile << """
                project(':a') {
                    task a {
                        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubstitutorProvider.kt

         *
         * On the following code:
         * ```
         * class A : B<String>
         * class B<T> : C<T, Int>
         * class C<X, Y>
         * ```
         *
         * * `createInheritanceTypeSubstitutor(A, B)` returns `KtSubstitutor {T -> String}`
         * * `createInheritanceTypeSubstitutor(B, C)` returns `KtSubstitutor {X -> T, Y -> Int}`
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top