Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 106 for mkstruct (0.1 sec)

  1. src/go/doc/reader.go

    // reader.lookupType.
    type namedType struct {
    	doc  string       // doc comment for type
    	name string       // type name
    	decl *ast.GenDecl // nil if declaration hasn't been seen yet
    
    	isEmbedded bool        // true if this type is embedded
    	isStruct   bool        // true if this type is a struct
    	embedded   embeddedSet // true if the embedded type is a pointer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    | N/A
    
    | Dart and Henson
    | link:https://github.com/f2prateek/dart/releases/tag/3.1.0[3.1.0]
    | N/A
    
    | link:https://github.com/mapstruct/mapstruct[MapStruct]
    | link:https://github.com/mapstruct/mapstruct/releases/tag/1.4.0.Beta1[1.4.0.Beta1]
    | N/A
    
    | link:https://github.com/square/AssistedInject[Assisted Inject]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  3. pilot/pkg/xds/statusgen.go

    					Id: con.proxy.ID,
    					Metadata: model.NodeMetadata{
    						ClusterID:    con.proxy.Metadata.ClusterID,
    						Namespace:    con.proxy.Metadata.Namespace,
    						IstioVersion: con.proxy.Metadata.IstioVersion,
    					}.ToStruct(),
    				},
    				GenericXdsConfigs: xdsConfigs,
    			}
    			res = append(res, &discovery.Resource{
    				Name:     clientConfig.Node.Id,
    				Resource: protoconv.MessageToAny(clientConfig),
    			})
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 23:30:28 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. pilot/pkg/xds/adstest.go

    	if req == nil {
    		req = &discovery.DiscoveryRequest{}
    	}
    	if req.TypeUrl == "" {
    		req.TypeUrl = a.Type
    	}
    	if req.Node == nil {
    		req.Node = &core.Node{
    			Id:       a.ID,
    			Metadata: a.metadata.ToStruct(),
    		}
    	}
    	return req
    }
    
    func (a *AdsTest) Request(t test.Failer, req *discovery.DiscoveryRequest) {
    	t.Helper()
    	req = a.fillInRequestDefaults(req)
    	if err := a.client.Send(req); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. pkg/kube/inject/inject.go

    	metadata := &params.pod.ObjectMeta
    	cluster := params.valuesConfig.asStruct.GetGlobal().GetMultiCluster().GetClusterName()
    	// TODO allow overriding the values.global network in injection with the system namespace label
    	network := params.valuesConfig.asStruct.GetGlobal().GetNetwork()
    	// params may be set from webhook URL, take priority over values yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. pilot/pkg/xds/deltaadstest.go

    		req = &discovery.DeltaDiscoveryRequest{}
    	}
    	if req.TypeUrl == "" {
    		req.TypeUrl = a.Type
    	}
    	if req.Node == nil {
    		req.Node = &core.Node{
    			Id:       a.ID,
    			Metadata: a.metadata.ToStruct(),
    		}
    	}
    	return req
    }
    
    func (a *DeltaAdsTest) Request(req *discovery.DeltaDiscoveryRequest) {
    	req = a.fillInRequestDefaults(req)
    	if err := a.client.Send(req); err != nil {
    		a.t.Fatal(err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. pkg/kube/inject/webhook.go

    		if err != nil {
    			return nil, err
    		}
    		ret[k] = p
    	}
    	return ret, nil
    }
    
    type ValuesConfig struct {
    	raw      string
    	asStruct *opconfig.Values
    	asMap    map[string]any
    }
    
    func (v ValuesConfig) Struct() *opconfig.Values {
    	return v.asStruct
    }
    
    func (v ValuesConfig) Map() map[string]any {
    	return v.asMap
    }
    
    func NewValuesConfig(v string) (ValuesConfig, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  8. common/config/.golangci.yml

        - typecheck
        - unconvert
        - unparam
        - unused
        - gci
        - gosec
      fast: false
    linters-settings:
      errcheck:
        # report about not checking of errors in type assertions: `a := b.(MyStruct)`;
        # default is false: such cases aren't reported by default.
        check-type-assertions: false
        # report about assignment of errors to blank identifier: `num, _ := strconv.Atoi(numStr)`;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/waitgroup/ratelimited_waitgroup_test.go

    	n2BeforeWaitWG := sync.WaitGroup{}
    	// so we know when all requests in n2 have called Done and
    	// are finished using the waitgroup
    	n2DoneWG := sync.WaitGroup{}
    
    	startCh, blockedCh := make(chan struct{}), make(chan struct{})
    	n1DoneWG.Add(n1)
    	for i := 0; i < n1; i++ {
    		go func() {
    			defer n1DoneWG.Done()
    			<-startCh
    
    			target.Add(1)
    			// let's finish using the waitgroup immediately
    			target.Done()
    		}()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 21 14:08:00 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  10. src/debug/dwarf/type_test.go

    	"t_my_enum":                             "enum my_enum {e1=1; e2=2; e3=-5; e4=1000000000000000}",
    	"t_my_list":                             "struct list {val short int@0; next *t_my_list@8}",
    	"t_my_tree":                             "struct tree {left *struct tree@0; right *struct tree@8; val long long unsigned int@16}",
    }
    
    // As Apple converts gcc to a clang-based front end
    // they keep breaking the DWARF output. This map lists the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 8.8K bytes
    - Viewed (0)
Back to top