Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 115 for name12 (0.13 sec)

  1. pkg/kubelet/configmap/configmap_manager_test.go

    						Name: name,
    					},
    				},
    			}
    			container.EnvFrom = append(container.EnvFrom, envFrom)
    		}
    
    		for _, name := range configMaps.envVarNames {
    			envSource := &v1.EnvVarSource{
    				ConfigMapKeyRef: &v1.ConfigMapKeySelector{
    					LocalObjectReference: v1.LocalObjectReference{
    						Name: name,
    					},
    				},
    			}
    			container.Env = append(container.Env, v1.EnvVar{ValueFrom: envSource})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 10 10:20:09 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionParameterClosure.ir.txt

        FUN name:consume visibility:public modality:FINAL <> (n:kotlin.Int) returnType:kotlin.Unit
          VALUE_PARAMETER name:n index:0 type:kotlin.Int
          BLOCK_BODY
        FUN name:test visibility:public modality:FINAL <> (x:kotlin.Int) returnType:kotlin.Unit
          VALUE_PARAMETER name:x index:0 type:kotlin.Int
          BLOCK_BODY
            FUN LOCAL_FUNCTION name:call visibility:local modality:FINAL <> () returnType:kotlin.Unit
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. src/go/types/instantiate_test.go

    	for _, test := range tests {
    		pkg := mustTypecheck(test.src, nil, nil)
    
    		t.Run(pkg.Name(), func(t *testing.T) {
    			ctxt := NewContext()
    
    			T1 := pkg.Scope().Lookup(test.name1).Type()
    			res1, err := Instantiate(ctxt, T1, test.targs1, false)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			T2 := pkg.Scope().Lookup(test.name2).Type()
    			res2, err := Instantiate(ctxt, T2, test.targs2, false)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. security/tools/jwt/sa-jwt.py

                            help="sub claim. If not provided, it is set to the same as iss claim.")
        parser.add_argument("-claims", "--claims",
                            help="Other claims in format name1:value1,name2:value2 etc. Only string values are supported.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionMultipleCapturing.ir.txt

            $this: VALUE_PARAMETER name:<this> type:kotlin.Any
          FUN name:test visibility:public modality:FINAL <> ($this:<root>.Foo, $receiver:kotlin.String) returnType:kotlin.Unit
            $this: VALUE_PARAMETER name:<this> type:<root>.Foo
            $receiver: VALUE_PARAMETER name:<this> type:kotlin.String
            BLOCK_BODY
              VAR name:x type:kotlin.Int [var]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. security/tools/jwt/samples/gen-jwt.py

                            help="sub claim. If not provided, it is set to the same as iss claim.")
        parser.add_argument("-claims", "--claims",
                            help="Other claims in format name1:value1,name2:value2 etc. Only string values are supported.")
        parser.add_argument("-jwks", "--jwks",
                            help="Path to the output file for JWKS.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 16:38:57 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. src/syscall/getdirentries_test.go

    			data = data[dirent.Reclen:]
    			name := make([]byte, dirent.Namlen)
    			for i := 0; i < int(dirent.Namlen); i++ {
    				name[i] = byte(dirent.Name[i])
    			}
    			names2 = append(names2, string(name))
    		}
    	}
    
    	names = append(names, ".", "..") // Getdirentries returns these also
    	slices.Sort(names)
    	slices.Sort(names2)
    	if strings.Join(names, ":") != strings.Join(names2, ":") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. pkg/kube/krt/index_test.go

    			Name:      "name2",
    			Namespace: "namespace",
    		},
    		Status: corev1.PodStatus{PodIP: "1.2.3.5"},
    	}
    	pc.CreateOrUpdateStatus(pod2)
    	tt.WaitUnordered("add/namespace/name2")
    	assert.Equal(t, Collection.Get(), ptr.Of("namespace/name,namespace/name2"))
    
    	pc.Delete(pod.Name, pod.Namespace)
    	pc.Delete(pod2.Name, pod2.Namespace)
    	tt.WaitUnordered("delete/namespace/name", "delete/namespace/name2")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/scope_test.cc

      EXPECT_EQ(names2[2], "linear_2/c1");
      EXPECT_EQ(names2[3], "linear_2/mul_1");
      EXPECT_EQ(names2[4], "linear_2");
    
      const auto names3 = LinearOp(root.WithOpName("c"));
    
      EXPECT_EQ(names3[0], "c/mul");
      EXPECT_EQ(names3[1], "c/bias_add");
      EXPECT_EQ(names3[2], "c/c1");
      EXPECT_EQ(names3[3], "c/mul_1");
      EXPECT_EQ(names3[4], "c");
    }
    
    TEST(ScopeTest, SingleUseScope) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 08:17:37 UTC 2019
    - 5.5K bytes
    - Viewed (0)
  10. test/named1.go

    // errorcheck
    
    // Copyright 2009 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.
    
    // Test that basic operations on named types are valid
    // and preserve the type.
    // Does not compile.
    
    package main
    
    type Bool bool
    
    type Map map[int]int
    
    func (Map) M() {}
    
    type Slice []byte
    
    var slice Slice
    
    func asBool(Bool)     {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 04 21:22:23 UTC 2020
    - 984 bytes
    - Viewed (0)
Back to top