Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 87 for sum2 (0.06 sec)

  1. go.sum

    Kubernetes Prow Robot <******@****.***> 1718228831 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  2. docs/debugging/reorder-disks/go.sum

    Harshavardhana <******@****.***> 1716837466 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 165 bytes
    - Viewed (0)
  3. pkg/volume/util/nested_volumes_test.go

    								{MountPath: "/ignore", Name: "vol2"},
    								{MountPath: "/mnt/sub1/sub2/sub3", Name: "vol3"},
    								{MountPath: "/mnt/sub1/sub2/sub4", Name: "vol4"},
    								{MountPath: "/mnt/sub1/sub2/sub4/skip", Name: "vol5"},
    								{MountPath: "/mnt/sub1/sub2/sub4/skip2", Name: "vol5a"},
    								{MountPath: "/mnt/sub1/sub2/sub6", Name: "vol6"},
    								{MountPath: "/mnt7", Name: "vol7"},
    							},
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. go.sum

    Ryuji Kokubu <******@****.***> 1718164019 +0900
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 491 bytes
    - Viewed (0)
  5. src/cmd/go.sum

    Michael Anthony Knyszek <******@****.***> 1717451199 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/go.sum

    Michael Anthony Knyszek <******@****.***> 1717451199 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 740 bytes
    - Viewed (0)
  7. go.sum

    Cesar N <******@****.***> 1718319233 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/go.sum

    Kubernetes Prow Robot <******@****.***> 1718228831 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  9. src/hash/fnv/fnv.go

    func (s *sum32) Sum32() uint32  { return uint32(*s) }
    func (s *sum32a) Sum32() uint32 { return uint32(*s) }
    func (s *sum64) Sum64() uint64  { return uint64(*s) }
    func (s *sum64a) Sum64() uint64 { return uint64(*s) }
    
    func (s *sum32) Write(data []byte) (int, error) {
    	hash := *s
    	for _, c := range data {
    		hash *= prime32
    		hash ^= sum32(c)
    	}
    	*s = hash
    	return len(data), nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. 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)
Back to top