Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 561 for a$b (0.03 sec)

  1. 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)
  2. pkg/slices/slices_test.go

    			s2:   []int{1, 2, 3},
    			eq: func(a, b int) bool {
    				return a == b
    			},
    			want: true,
    		},
    		{
    			name: "Unequal slices",
    			s1:   []int{1, 2, 3},
    			s2:   []int{4, 5, 6},
    			eq: func(a, b int) bool {
    				return a == b
    			},
    			want: false,
    		},
    		{
    			name: "Empty slices",
    			s1:   []int{},
    			s2:   []int{},
    			eq: func(a, b int) bool {
    				return a == b
    			},
    			want: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/conditionalJumps/break5.txt

    KaDataFlowExitPointSnapshot:
      defaultExpressionInfo = DefaultExpressionInfo:
        expression = when {
                    a + b > 0 -> break
                    a - b > 0 -> break
                    else -> consume(0)
                }
        type = kotlin.Unit
      hasEscapingJumps = true
      hasJumps = true
      hasMultipleJumpKinds = false
      hasMultipleJumpTargets = false
      jumpExpressions = [
        break,
        break
      ]
      returnValueType = null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 483 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/listtype/validation_test.go

    		{name: "no object", schema: &schema.Structural{}},
    		{name: "list without schema",
    			obj: map[string]interface{}{
    				"array": []interface{}{"a", "b", "a"},
    			},
    		},
    		{name: "list without items",
    			obj: map[string]interface{}{
    				"array": []interface{}{"a", "b", "a"},
    			},
    			schema: &schema.Structural{
    				Generic: schema.Generic{
    					Type: "object",
    				},
    				Properties: map[string]schema.Structural{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top