Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 338 for Id (0.3 sec)

  1. pkg/kubelet/logs/container_log_manager_test.go

    	}
    	testContainers := []*critest.FakeContainer{
    		{
    			ContainerStatus: runtimeapi.ContainerStatus{
    				Id:      "container-not-need-rotate",
    				State:   runtimeapi.ContainerState_CONTAINER_RUNNING,
    				LogPath: filepath.Join(dir, testLogs[0]),
    			},
    		},
    		{
    			ContainerStatus: runtimeapi.ContainerStatus{
    				Id:      "container-need-rotate",
    				State:   runtimeapi.ContainerState_CONTAINER_RUNNING,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. schema/schema.go

    }
    
    // LookUpFieldByBindName looks for the closest field in the embedded struct.
    //
    //	type Struct struct {
    //		Embedded struct {
    //			ID string // is selected by LookUpFieldByBindName([]string{"Embedded", "ID"}, "ID")
    //		}
    //		ID string // is selected by LookUpFieldByBindName([]string{"ID"}, "ID")
    //	}
    func (schema Schema) LookUpFieldByBindName(bindNames []string, name string) *Field {
    	if len(bindNames) == 0 {
    		return nil
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/token_test.go

    	}
    }
    
    func TestTokenOutput(t *testing.T) {
    	testCases := []struct {
    		name         string
    		id           string
    		secret       string
    		description  string
    		usages       []string
    		extraGroups  []string
    		outputFormat string
    		expected     string
    	}{
    		{
    			name:         "JSON output",
    			id:           "abcdef",
    			secret:       "1234567890123456",
    			description:  "valid bootstrap tooken",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. src/runtime/tracestack.go

    	}
    	if nstk > 0 && gp.goid == 1 {
    		nstk-- // skip runtime.main
    	}
    	id := trace.stackTab[gen%2].put(pcBuf[:nstk])
    	return id
    }
    
    // traceStackTable maps stack traces (arrays of PC's) to unique uint32 ids.
    // It is lock-free for reading.
    type traceStackTable struct {
    	tab traceMap
    }
    
    // put returns a unique id for the stack trace pcs and caches it in the table,
    // if it sees the trace for the first time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. pilot/pkg/xds/sds.go

    	// Cache for XDS resources
    	cache         model.XdsCache
    	configCluster cluster.ID
    	meshConfig    *mesh.MeshConfig
    }
    
    var _ model.XdsResourceGenerator = &SecretGen{}
    
    func NewSecretGen(sc credscontroller.MulticlusterController, cache model.XdsCache, configCluster cluster.ID,
    	meshConfig *mesh.MeshConfig,
    ) *SecretGen {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/conversion.go

    	return srcLabels
    }
    
    func (s *Controller) convertEndpoint(service *model.Service, servicePort *networking.ServicePort,
    	wle *networking.WorkloadEntry, configKey *configKey, clusterID cluster.ID,
    ) *model.ServiceInstance {
    	var instancePort uint32
    	addr := wle.GetAddress()
    	// priority level: unixAddress > we.ports > se.port.targetPort > se.port.number
    	if strings.HasPrefix(addr, model.UnixAddressPrefix) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. pkg/kubelet/images/image_manager_test.go

    		assert.Equal(t, 1, len(images), "ListImages() count")
    
    		image := images[0]
    		assert.Equal(t, "missing_image:latest", image.ID, "Image ID")
    		assert.Equal(t, "", image.Spec.RuntimeHandler, "image.Spec.RuntimeHandler not empty", "ImageID", image.ID)
    
    		expectedAnnotations := []Annotation{
    			{
    				Name:  "kubernetes.io/runtimehandler",
    				Value: "handler_name",
    			}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/object.go

    // It doesn't take into account whether the object is in a local (function) scope
    // or not.
    func (obj *object) Exported() bool { return isExported(obj.name) }
    
    // Id is a wrapper for Id(obj.Pkg(), obj.Name()).
    func (obj *object) Id() string { return Id(obj.pkg, obj.name) }
    
    func (obj *object) String() string       { panic("abstract") }
    func (obj *object) order() uint32        { return obj.order_ }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/token.go

    	for _, tokenIDOrToken := range tokenIDsOrTokens {
    		// Assume this is a token id and try to parse it
    		tokenID := tokenIDOrToken
    		klog.V(1).Info("[token] parsing token")
    		if !bootstraputil.IsValidBootstrapTokenID(tokenIDOrToken) {
    			// Okay, the full token with both id and secret was probably passed. Parse it and extract the ID only
    			bts, err := bootstraptokenv1.NewBootstrapTokenString(tokenIDOrToken)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server.go

    	}
    	c.cipherSuite = hs.suite.id
    
    	if c.config.CipherSuites == nil && !needFIPS() && rsaKexCiphers[hs.suite.id] {
    		tlsrsakex.Value() // ensure godebug is initialized
    		tlsrsakex.IncNonDefault()
    	}
    	if c.config.CipherSuites == nil && !needFIPS() && tdesCiphers[hs.suite.id] {
    		tls3des.Value() // ensure godebug is initialized
    		tls3des.IncNonDefault()
    	}
    
    	for _, id := range hs.clientHello.cipherSuites {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top