Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 94 for sum2 (0.05 sec)

  1. src/runtime/syscall_windows_test.go

    // calling convention by default, since this is redundant with the existing
    // tests.
    var cbFuncsRegABI = []cbFunc{
    	{sum2},
    	{sum3},
    	{sum4},
    	{sum5},
    	{sum6},
    	{sum7},
    	{sum8},
    	{sum9},
    	{sum10},
    	{sum9uint8},
    	{sum9uint16},
    	{sum9int8},
    	{sum5mix},
    	{sum5andPair},
    	{sum9andGC},
    }
    
    func getCallbackTestFuncs() []cbFunc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/go.sum

    Ben Luddy <******@****.***> 1715279458 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/go.sum

    Ben Luddy <******@****.***> 1715279458 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/go.sum

    Ben Luddy <******@****.***> 1715279458 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    open class MyCustomTask : DefaultTask() {
        @TaskAction
        fun calculateSum() {
            // Custom logic to calculate the sum of two numbers
            val num1 = 5
            val num2 = 7
            val sum = num1 + num2
    
            // Print the result
            println("Sum: $sum")
        }
    }
    ----
    =====
    [.multi-language-sample]
    =====
    .MyCustomTask.groovy
    [source, groovy]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. src/hash/crc32/crc32_test.go

    				t.Errorf("could not unmarshal: %v", err)
    				continue
    			}
    
    			io.WriteString(h, g.in[len(g.in)/2:])
    			io.WriteString(h2, g.in[len(g.in)/2:])
    
    			if h.Sum32() != h2.Sum32() {
    				t.Errorf("IEEE(%s) = 0x%x != marshaled 0x%x", g.in, h.Sum32(), h2.Sum32())
    			}
    		}
    	})
    	t.Run("Castagnoli", func(t *testing.T) {
    		table := MakeTable(Castagnoli)
    		for _, g := range golden {
    			h := New(table)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/basic_test.go

    	num := unstructuredObj["num"].(map[string]interface{})
    	num1 := num["num1"].(int64)
    	num2 := num["num2"].(int64)
    	if num1 != 9223372036854775807 || num2 != 1000000 {
    		t.Errorf("Expected %v, got %v, %v", `9223372036854775807, 1000000`, num1, num2)
    	}
    }
    
    func TestPatch(t *testing.T) {
    	tearDown, apiExtensionClient, dynamicClient, err := fixtures.StartDefaultServerWithClients(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 11:35:33 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. go.work.sum

    Stephen Kitt <******@****.***> 1716824549 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:12 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

            }
    
            project("sub2") {
                evaluationDependsOn ':sub1'
    
                task customTask  {
                    dependsOn project(":sub1").tasks.withType(ClimbTask)
                }
            }
            """
    
            when:
            succeeds('sub2:customTask')
    
            then:
            result.assertTasksExecutedInOrder(':sub1:climbTask', ':sub2:customTask')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishIssuesIntegTest.groovy

            given:
            using m2
            def repo = file("maven").createDir()
            settingsFile << """
            include 'sub1'
            include 'sub2'
            """
    
            [file("sub1/build.gradle"), file("sub2/build.gradle")].each { File f ->
                f << """
                apply plugin: "java"
                apply plugin: "maven-publish"
    
                publishing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top