Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for default_ (0.19 sec)

  1. doc/go_spec.html

    a single one that can proceed is chosen via a uniform pseudo-random selection.
    Otherwise, if there is a default case, that case is chosen.
    If there is no default case, the "select" statement blocks until
    at least one of the communications can proceed.
    </li>
    
    <li>
    Unless the selected case is the default case, the respective communication
    operation is executed.
    </li>
    
    <li>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. pkg/proxy/iptables/proxier_test.go

    				return true
    			case !strings.HasPrefix(string(table.Chains[i].Name), "KUBE-") && strings.HasPrefix(string(table.Chains[j].Name), "KUBE-"):
    				// non-KUBE-* goes after KUBE-*
    				return false
    			default:
    				// We have two KUBE-* chains or two non-KUBE-* chains; either
    				// way they sort alphabetically
    				return table.Chains[i].Name < table.Chains[j].Name
    			}
    		})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.25.md

    - Graduated ServerSideFieldValidation to `beta`. Schema validation is performed server-side and requests will receive warnings for any invalid/unknown fields by default. ([#110178](https://github.com/kubernetes/kubernetes/pull/110178),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // {sub} the subdiagonal alignment. "LEFT" means rows will be padded to the
        // left, "RIGHT" means rows will be padded ot the right.  The default is
        // "RIGHT_LEFT".
        StringRef align = op->getAttrOfType<StringAttr>("align").getValue();
        enum Alignment { kLeft, kRight };
    
        // default is RIGHT_LEFT
        Alignment superdiagonal_align = kRight;
        Alignment subdiagonal_align = kLeft;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/zz_generated.conversion.go

    	out.Type = core.LimitType(in.Type)
    	out.Max = *(*core.ResourceList)(unsafe.Pointer(&in.Max))
    	out.Min = *(*core.ResourceList)(unsafe.Pointer(&in.Min))
    	out.Default = *(*core.ResourceList)(unsafe.Pointer(&in.Default))
    	out.DefaultRequest = *(*core.ResourceList)(unsafe.Pointer(&in.DefaultRequest))
    	out.MaxLimitRequestRatio = *(*core.ResourceList)(unsafe.Pointer(&in.MaxLimitRequestRatio))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.26.md

    - [kubelet] Change default `cpuCFSQuotaPeriod` value with enabled `cpuCFSQuotaPeriod` flag from 100ms to 100µs to match the Linux CFS and k8s defaults. `cpuCFSQuotaPeriod` of 100ms now requires `customCPUCFSQuotaPeriod` flag to be set to work. ([#111520](https://github.com/kubernetes/kubernetes/pull/111520), [@paskal](https://github.com/paskal))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  7. pkg/registry/core/service/storage/storage_test.go

    			_, cidr, _ := netutils.ParseCIDRSloppy("10.0.0.0/16")
    			ipAllocs[fam] = makeIPAllocator(cidr)
    		case api.IPv6Protocol:
    			_, cidr, _ := netutils.ParseCIDRSloppy("2000::/108")
    			ipAllocs[fam] = makeIPAllocator(cidr)
    		default:
    			t.Fatalf("Unknown IPFamily: %v", fam)
    		}
    	}
    
    	portAlloc := makePortAllocator(*(machineryutilnet.ParsePortRangeOrDie("30000-32767")))
    
    	// Not all tests will specify pods and endpoints.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go

    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    func (t *nfcTrie) lookupValue(n uint32, b byte) uint16 {
    	switch {
    	case n < 46:
    		return uint16(nfcValues[n<<6+uint32(b)])
    	default:
    		n -= 46
    		return uint16(nfcSparse.lookup(n, b))
    	}
    }
    
    // nfcValues: 48 blocks, 3072 entries, 6144 bytes
    // The third block is the zero block.
    var nfcValues = [3072]uint16{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 376.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/unicode/norm/tables9.0.0.go

    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    func (t *nfcTrie) lookupValue(n uint32, b byte) uint16 {
    	switch {
    	case n < 44:
    		return uint16(nfcValues[n<<6+uint32(b)])
    	default:
    		n -= 44
    		return uint16(nfcSparse.lookup(n, b))
    	}
    }
    
    // nfcValues: 46 blocks, 2944 entries, 5888 bytes
    // The third block is the zero block.
    var nfcValues = [2944]uint16{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 372.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/unicode/norm/tables10.0.0.go

    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    func (t *nfcTrie) lookupValue(n uint32, b byte) uint16 {
    	switch {
    	case n < 45:
    		return uint16(nfcValues[n<<6+uint32(b)])
    	default:
    		n -= 45
    		return uint16(nfcSparse.lookup(n, b))
    	}
    }
    
    // nfcValues: 47 blocks, 3008 entries, 6016 bytes
    // The third block is the zero block.
    var nfcValues = [3008]uint16{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 374.3K bytes
    - Viewed (0)
Back to top