Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for _default_ (0.19 sec)

  1. 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)
  2. src/cmd/compile/internal/ssagen/ssa.go

    			fn = ir.Syms.Racewriterange
    		default:
    			panic("unreachable")
    		}
    		needWidth = true
    	} else if base.Flag.Race {
    		// for non-composite objects we can write just the start
    		// address, as any write must write the first byte.
    		switch kind {
    		case instrumentRead:
    			fn = ir.Syms.Raceread
    		case instrumentWrite:
    			fn = ir.Syms.Racewrite
    		default:
    			panic("unreachable")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.21.md

    ### Default Container Annotation
    
    Pod with multiple containers can use `kubectl.kubernetes.io/default-container` annotation to have a container preselected for kubectl commands. More can be read in [KEP-2227](https://github.com/kubernetes/enhancements/blob/master/keps/sig-cli/2227-kubectl-default-container/README.md).
    
    ### Immutable Secrets and ConfigMaps
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    github.com/gf-third/yaml,v1.0.1,h1:pqD4ix+65DqGphU1MDnToPZfGYk0tuuwRzuTSl3g0d0=,6354a95d7faa222d2e653485bc9dd555aad61a75eb5a5f970de531391ed77a2f
    github.com/ghetzel/go-defaults,v1.2.0,h1:U1T64bxhBc6nVZ68QXch1hoHq43h6isqgbvG7kxY9Uc=,f339e441d08af3af184a21f518227db7c705851be82f3fcea611e762ebb633a1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/unicode/norm/tables13.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
    - 378.6K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/text/unicode/norm/tables15.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: Thu Oct 19 23:33:33 UTC 2023
    - 385.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/unicode/norm/tables15.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
    - 385.8K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/idna/tables10.0.0.go

    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    func (t *idnaTrie) lookupValue(n uint32, b byte) uint16 {
    	switch {
    	case n < 125:
    		return uint16(idnaValues[n<<6+uint32(b)])
    	default:
    		n -= 125
    		return uint16(idnaSparse.lookup(n, b))
    	}
    }
    
    // idnaValues: 127 blocks, 8128 entries, 16256 bytes
    // The third block is the zero block.
    var idnaValues = [8128]uint16{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 267.2K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/idna/tables9.0.0.go

    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    func (t *idnaTrie) lookupValue(n uint32, b byte) uint16 {
    	switch {
    	case n < 124:
    		return uint16(idnaValues[n<<6+uint32(b)])
    	default:
    		n -= 124
    		return uint16(idnaSparse.lookup(n, b))
    	}
    }
    
    // idnaValues: 126 blocks, 8064 entries, 16128 bytes
    // The third block is the zero block.
    var idnaValues = [8064]uint16{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 263.4K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/idna/tables12.0.0.go

    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    func (t *idnaTrie) lookupValue(n uint32, b byte) uint16 {
    	switch {
    	case n < 125:
    		return uint16(idnaValues[n<<6+uint32(b)])
    	default:
    		n -= 125
    		return uint16(idnaSparse.lookup(n, b))
    	}
    }
    
    // idnaValues: 127 blocks, 8128 entries, 16256 bytes
    // The third block is the zero block.
    var idnaValues = [8128]uint16{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 273.5K bytes
    - Viewed (0)
Back to top