Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 600 for num1 (0.08 sec)

  1. buildscripts/minio-upgrade.sh

    }
    
    verify_checksum_after_heal() {
    	local sum1
    	sum1=$(curl -s "$2" | sha256sum)
    	mc admin heal --json -r "$1" >/dev/null # test after healing
    	local sum1_heal
    	sum1_heal=$(curl -s "$2" | sha256sum)
    
    	if [ "${sum1_heal}" != "${sum1}" ]; then
    		echo "mismatch expected ${sum1_heal}, got ${sum1}"
    		exit 1
    	fi
    }
    
    verify_checksum_mc() {
    	local expected
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/memorymanager/policy.go

    	// and is consulted to achieve NUMA aware resource alignment among this
    	// and other resource controllers.
    	GetTopologyHints(s state.State, pod *v1.Pod, container *v1.Container) map[string][]topologymanager.TopologyHint
    	// GetPodTopologyHints implements the topologymanager.HintProvider Interface
    	// and is consulted to achieve NUMA aware resource alignment among this
    	// and other resource controllers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 05 17:52:25 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. test/fixedbugs/issue6750.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import "fmt"
    
    func printmany(nums ...int) {
    	for i, n := range nums {
    		fmt.Printf("%d: %d\n", i, n)
    	}
    	fmt.Printf("\n")
    }
    
    func main() {
    	printmany(1, 2, 3)
    	printmany([]int{1, 2, 3}...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 23:54:59 UTC 2020
    - 528 bytes
    - Viewed (0)
  4. pkg/kubelet/cm/topologymanager/numa_info_test.go

    		name        string
    		bm          []int
    		distance    NUMADistances
    		expectedAvg float64
    	}{
    		{
    			name: "1 NUMA node",
    			bm: []int{
    				0,
    			},
    			distance: NUMADistances{
    				0: {
    					10,
    				},
    			},
    			expectedAvg: 10,
    		},
    		{
    			name: "2 NUMA node, 1 set in bitmask",
    			bm: []int{
    				0,
    			},
    			distance: NUMADistances{
    				0: {
    					10,
    					11,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:14 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/searchlist/ListForm.java

            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            if (num == null) {
                num = fessConfig.getPagingSearchPageSizeAsInteger();
            }
            if (num > fessConfig.getPagingSearchPageMaxSizeAsInteger().intValue() || num <= 0) {
                num = fessConfig.getPagingSearchPageMaxSizeAsInteger();
            }
            return num;
        }
    
        @Override
        public String[] getLanguages() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. src/fmt/format.go

    		sawNonzeroDigit := false
    		// Starting from i = 1 to skip sign at num[0].
    		for i := 1; i < len(num); i++ {
    			switch num[i] {
    			case '.':
    				hasDecimalPoint = true
    			case 'p', 'P':
    				tail = append(tail, num[i:]...)
    				num = num[:i]
    			case 'e', 'E':
    				if verb != 'x' && verb != 'X' {
    					tail = append(tail, num[i:]...)
    					num = num[:i]
    					break
    				}
    				fallthrough
    			default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/subresources_test.go

    	// 1. create a crd with max value of .spec.num = 10 and .status.num = 10
    	// 2. create a cr with .spec.num = 10 and .status.num = 10 (valid)
    	// 3. update the spec of the cr with .spec.num = 15 (spec is invalid), expect no error
    	// 4. update the spec of the cr with .spec.num = 15 (spec is invalid), expect error
    
    	// max value of spec.num = 10 and status.num = 10
    	schema := &apiextensionsv1.JSONSchemaProps{
    		Type: "object",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:35:34 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/misc/Base64Util.java

            final byte[] outData = new byte[num * 3 + lastBytes];
            for (int i = 0; i < num; i++) {
                decode(inData, i * 4, outData, i * 3);
            }
            switch (lastBytes) {
            case 1:
                decode1byte(inData, num * 4, outData, num * 3);
                break;
            case 2:
                decode2byte(inData, num * 4, outData, num * 3);
                break;
            default:
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/definingUsingConfigurations-custom/groovy/src/main/webapp/hello.jsp

    <html>
    <head><title>Randomizer</title></head>
    <body>
    <%
        double num = Math.random();
        if (num > 0.5) {
    %>
    <h2>It's your lucky day!</h2><p>(<%= num %>)</p>
    <%
    } else {
    %>
    <h2>Sorry...bad day</h2><p>(<%= num %>)</p>
    <%
        }
    %>
    <a href="<%= request.getRequestURI() %>"><h3>Try Again</h3></a>
    </body>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 312 bytes
    - Viewed (0)
  10. cluster/gce/config-common.sh

    #
    # Vars assumed:
    #   NUM_NODES
    #   NUM_WINDOWS_NODES
    function get-num-nodes {
      echo "$((NUM_NODES + NUM_WINDOWS_NODES))"
    }
    
    # Vars assumed:
    #   NUM_NODES
    #   NUM_WINDOWS_NODES
    function get-master-size {
      local suggested_master_size=2
      if [[ "$(get-num-nodes)" -gt "10" ]]; then
        suggested_master_size=4
      fi
      if [[ "$(get-num-nodes)" -gt "50" ]]; then
        suggested_master_size=8
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top