Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for s20 (0.03 sec)

  1. pkg/kubelet/util/manager/cache_based_manager_test.go

    			{envVarNames: []string{"s1"}},
    			{envVarNames: []string{"s2"}, envFromNames: []string{"s20"}},
    			{envVarNames: []string{"s3"}},
    		},
    	}
    	manager.RegisterPod(podWithSecrets("ns1", "name1", s2))
    	// Fetch only s3 and s20 secrets - this should trigger get operations.
    	store.Get("ns1", "s1")
    	store.Get("ns1", "s2")
    	store.Get("ns1", "s20")
    	store.Get("ns1", "s3")
    	actions = fakeClient.Actions()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/decls1.go

    	s8 = &a
    	s10 = &42 /* ERROR "cannot take address" */
    	s11 = &v
    	s12 = -(u + *t11) / *&v
    	s13 = a /* ERROR "shifted operand" */ << d
    	s14 = i << j
    	s18 = math.Pi * 10.0
    	s19 = s1 /* ERROR "cannot call" */ ()
     	s20 = f0 /* ERROR "no value" */ ()
    	s21 = f6(1, s1, i)
    	s22 = f6(1, s1, uu /* ERRORx `cannot use .* in argument` */ )
    
    	t1 int = i + j
    	t2 int = i /* ERROR "mismatched types" */ + x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. test/codegen/arithmetic.go

    	// amd64:`SUBQ\s[A-Z]+,\s16\([A-Z]+\)`
    	arr[2] -= b
    	// 386:`SUBL\s[A-Z]+,\s12\([A-Z]+\)`
    	// amd64:`SUBQ\s[A-Z]+,\s24\([A-Z]+\)`
    	arr[3] -= b
    	// 386:`DECL\s16\([A-Z]+\)`
    	arr[4]--
    	// 386:`ADDL\s[$]-20,\s20\([A-Z]+\)`
    	arr[5] -= 20
    	// 386:`SUBL\s\([A-Z]+\)\([A-Z]+\*4\),\s[A-Z]+`
    	ef -= arr[b]
    	// 386:`SUBL\s[A-Z]+,\s\([A-Z]+\)\([A-Z]+\*4\)`
    	arr[c] -= b
    	// 386:`ADDL\s[$]-15,\s\([A-Z]+\)\([A-Z]+\*4\)`
    	arr[d] -= 15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top