Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,139 for makeID (0.54 sec)

  1. pkg/controller/garbagecollector/garbagecollector_test.go

    func TestConflictingData(t *testing.T) {
    	pod1ns1 := makeID("v1", "Pod", "ns1", "podname1", "poduid1")
    	pod2ns1 := makeID("v1", "Pod", "ns1", "podname2", "poduid2")
    	pod2ns2 := makeID("v1", "Pod", "ns2", "podname2", "poduid2")
    	node1 := makeID("v1", "Node", "", "nodename", "nodeuid1")
    
    	role1v1beta1 := makeID("rbac.authorization.k8s.io/v1beta1", "Role", "ns1", "role1", "roleuid1")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/assume_cache_test.go

    		shouldSucceed bool
    	}{
    		"success-same-version": {
    			oldPV:         makePV("pv1", "").withVersion("5").PersistentVolume,
    			newPV:         makePV("pv1", "").withVersion("5").PersistentVolume,
    			shouldSucceed: true,
    		},
    		"success-storageclass-same-version": {
    			oldPV:         makePV("pv1", "class1").withVersion("5").PersistentVolume,
    			newPV:         makePV("pv1", "class1").withVersion("5").PersistentVolume,
    			shouldSucceed: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. src/make.rc

    # (make.bash, make.bat, make.rc)....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. src/make.bash

    bootgo=1.20.6
    
    set -e
    
    if [[ ! -f run.bash ]]; then
    	echo 'make.bash must be run from $GOROOT/src' 1>&2
    	exit 1
    fi
    
    if [[ "$GOBUILDTIMELOGFILE" != "" ]]; then
    	echo $(LC_TIME=C date) start make.bash >"$GOBUILDTIMELOGFILE"
    fi
    
    # Test for Windows.
    case "$(uname)" in
    *MINGW* | *WIN32* | *CYGWIN*)
    	echo 'ERROR: Do not use make.bash to build on Windows.'
    	echo 'Use make.bat instead.'
    	echo
    	exit 1
    	;;
    esac
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. src/make.bat

    goto fail
    L155:del .\cmd\dist\dist.exe
    L156:goto :eof
    L157:
    L158::: DO NOT ADD ANY NEW CODE HERE.
    L159::: The bootstrap+del above are the final step of make.bat.
    L160::: If something must be added, add it to cmd/dist's cmdbootstrap,
    L161::: to avoid needing three copies in three different shell languages
    L162::: (make.bash, make.bat, make.rc).
    L163:
    L164::copydist
    L165:mkdir "%GOTOOLDIR%" 2>NUL
    L166:copy cmd\dist\dist.exe "%GOTOOLDIR%\"
    L167:goto :eof
    L168:
    L169::nogoenv
    L170:set GO111MODULE=off
    ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/expand_calls.go

    		debug:           f.pass.debug,
    		regSize:         f.Config.RegSize,
    		sp:              sp,
    		typs:            &f.Config.Types,
    		wideSelects:     make(map[*Value]*Value),
    		commonArgs:      make(map[selKey]*Value),
    		commonSelectors: make(map[selKey]*Value),
    		memForCall:      make(map[ID]*Value),
    	}
    
    	// For 32-bit, need to deal with decomposition of 64-bit integers, which depends on endianness.
    	if f.Config.BigEndian {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  7. releasenotes/notes/make-httpbin-work-ocp.yaml

    Jonh Wendell <******@****.***> 1700507291 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 19:08:11 UTC 2023
    - 156 bytes
    - Viewed (0)
  8. src/go/types/termlist_test.go

    // license that can be found in the LICENSE file.
    
    package types
    
    import (
    	"strings"
    	"testing"
    )
    
    // maketl makes a term list from a string of the term list.
    func maketl(s string) termlist {
    	s = strings.ReplaceAll(s, " ", "")
    	names := strings.Split(s, "|")
    	r := make(termlist, len(names))
    	for i, n := range names {
    		r[i] = testTerm(n)
    	}
    	return r
    }
    
    func TestTermlistAll(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. test/fixedbugs/issue13799.go

    	}
    }
    
    func test2(iter int) {
    
    	const maxI = 500
    	m := make(map[int][]int) // ERROR "make\(map\[int\]\[\]int\) does not escape$"
    
    	// var fn func()
    	for i := 0; i < maxI; i++ {
    		var fn func() // this makes it work, because fn stays off heap
    		j := 0
    		fn = func() { // ERROR "func literal does not escape$"
    			m[i] = append(m[i], 0)
    			if j < 25 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. pkg/apis/flowcontrol/internalbootstrap/defaults_test.go

    			scheme.Default(defaulted)
    			if apiequality.Semantic.DeepEqual(original, defaulted) {
    				t.Logf("Defaulting makes no change to FlowSchema: %q", original.Name)
    				return
    			}
    			t.Errorf("Expected defaulting to not change FlowSchema: %q, diff: %s", original.Name, cmp.Diff(original, defaulted))
    		})
    	}
    
    	bootstrapPriorityLevels := make([]*flowcontrol.PriorityLevelConfiguration, 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top