Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 398 for a$b (0.04 sec)

  1. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/conditionalJumps/return3.txt

    KaDataFlowExitPointSnapshot:
      defaultExpressionInfo = DefaultExpressionInfo:
        expression = if (a + b > 0) return 0
            else if (a - b < 0) consume(a - b)
            else consume(0)
        type = kotlin.Unit
      hasEscapingJumps = true
      hasJumps = true
      hasMultipleJumpKinds = false
      hasMultipleJumpTargets = false
      jumpExpressions = [
        return 0
      ]
      returnValueType = kotlin.Int
      valuedReturnExpressions = [
        return 0
      ]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 462 bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleIsolationIntegrationTest.groovy

        }
    
        def "lifecycle actions in Kotlin DSL allow using a function defined in a class"() {
            createDirs("a", "b")
            settingsKotlinFile << """
                rootProject.name = "root"
                include("a", "b")
    
                object Helper {
                    fun printInfo(p: Project) {
                        println("project name = " + p.name)
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsJavaPluginIntegrationTest.groovy

            runBuildAction(new FetchCustomModelForEachProjectInParallel())
    
            then:
            fixture.assertStateStored {
                projectsConfigured(":buildSrc", ":", ":a", ":b")
                buildModelCreated()
                modelsCreated(":a", ":b")
            }
        }
    
        def "java projects with a valid cross-references can be configured in a parallel"() {
            given:
            withSomeToolingModelBuilderPluginInBuildSrc()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. test/codegen/arithmetic.go

    	return c
    }
    
    func SubSubNegSimplify(a, b int) int {
    	// amd64:"NEGQ"
    	// ppc64x:"NEG"
    	r := (a - b) - a
    	return r
    }
    
    func SubAddSimplify(a, b int) int {
    	// amd64:-"SUBQ",-"ADDQ"
    	// ppc64x:-"SUB",-"ADD"
    	r := a + (b - a)
    	return r
    }
    
    func SubAddSimplify2(a, b, c int) (int, int, int, int, int, int) {
    	// amd64:-"ADDQ"
    	r := (a + b) - (a + c)
    	// amd64:-"ADDQ"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

            }
    
            where:
            requestedTasks | failingTask | expectedExecutedTasks
            ['a']          | 'c'         | [':c']
            ['a', 'b']     | 'a'         | [any(':d', exact(':c', ':a')), ':b']
            ['a', 'b']     | 'c'         | [any(':c', ':d'), ':b'] // :c and :d might run in parallel with the configuration cache
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/ProjectConfigurationIntegrationTest.groovy

                    p.afterEvaluate {
                        println "[3] afterEvaluate $p.name"
                    }
                }
            '''
            createDirs("a", "b")
            settingsFile << """
                rootProject.name = 'root'
                include 'a', 'b'
            """
    
            expect:
            def result = fails()
            result.assertHasDescription("A problem occurred evaluating root project 'root'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/ParallelActionExecutionCrossVersionSpec.groovy

            models.projects.path == [':', ':a', ':b']
        }
    
        @TargetGradleVersion(">=6.8")
        def "nested actions that query a project model do not run in parallel when target Gradle version supports it and #args is used"() {
            given:
            setupBuildWithDependencyResolution()
    
            expect:
            server.expectConcurrent(1, 'root', 'a', 'b')
            def models = withConnection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/config/v1alpha1/zz_generated.conversion.go

    		return Convert_v1alpha1_GroupResource_To_v1_GroupResource(a.(*v1alpha1.GroupResource), b.(*v1.GroupResource), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.GroupResource)(nil), (*v1alpha1.GroupResource)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. test/codegen/bits.go

    	if a&0x1 != 0 {
    		return 1
    	}
    	return 0
    }
    
    func biton64(a, b uint64) (n uint64) {
    	// amd64:"BTSQ"
    	n += b | (1 << (a & 63))
    
    	// amd64:"BTSQ\t[$]63"
    	n += a | (1 << 63)
    
    	// amd64:"BTSQ\t[$]60"
    	n += a | (1 << 60)
    
    	// amd64:"ORQ\t[$]1"
    	n += a | (1 << 0)
    
    	return n
    }
    
    func bitoff64(a, b uint64) (n uint64) {
    	// amd64:"BTRQ"
    	n += b &^ (1 << (a & 63))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. src/internal/bytealg/compare_generic.go

    			return +1
    		}
    	}
    samebytes:
    	if len(a) < len(b) {
    		return -1
    	}
    	if len(a) > len(b) {
    		return +1
    	}
    	return 0
    }
    
    func CompareString(a, b string) int {
    	return runtime_cmpstring(a, b)
    }
    
    // runtime.cmpstring calls are emitted by the compiler.
    //
    // runtime.cmpstring should be an internal detail,
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top