Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 5,573 for info2 (0.05 sec)

  1. src/main/java/jcifs/dcerpc/msrpc/netdfs.idl

    		[string] wchar_t *dfs_name;
    	} DfsInfo300;
    
    	typedef struct {
    		uint32_t count;
    		[size_is(count)] DfsInfo300 *s;
    	} DfsEnumArray300;
    
    	typedef union {
    		[case(1)] DfsEnumArray1 *info1;
    		[case(3)] DfsEnumArray3 *info3;
    		[case(200)] DfsEnumArray200 *info200;
    		[case(300)] DfsEnumArray300 *info300;
    	} DfsEnumInfo;
    
    	typedef struct {
    		uint32_t level,
    		[switch_is(level)] DfsEnumInfo e;
    	} DfsEnumStruct;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  2. pkg/log/scope_test.go

    		},
    		{
    			func() { klog.ErrorS(errors.New("my error"), "info") },
    			"error\tklog\tmy error: info",
    		},
    		{
    			func() { klog.Info("a", "b") },
    			"info\tklog\tab",
    		},
    		{
    			func() { klog.InfoS("msg", "key", 1) },
    			"info\tklog\tmsg\tkey=1",
    		},
    		{
    			func() { klog.ErrorS(errors.New("my error"), "info", "key", 1) },
    			"error\tklog\tmy error: info\tkey=1",
    		},
    	}
    	for _, tt := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 17:36:09 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storageversion/manager.go

    // only needs to update one StorageVersion for the equivalent Groups.
    func dedupResourceInfos(infos []ResourceInfo) []ResourceInfo {
    	var ret []ResourceInfo
    	seen := make(map[schema.GroupResource]struct{})
    	for _, info := range infos {
    		gr := info.GroupResource
    		if _, ok := seen[gr]; ok {
    			continue
    		}
    		gvrs := info.EquivalentResourceMapper.EquivalentResourcesFor(gr.WithVersion(""), "")
    		for _, gvr := range gvrs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:47:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/builder_flags_fake.go

    func NewSimpleFakeResourceFinder(infos ...*resource.Info) ResourceFinder {
    	return &fakeResourceFinder{
    		Infos: infos,
    	}
    }
    
    type fakeResourceFinder struct {
    	Infos []*resource.Info
    }
    
    // Do implements the interface
    func (f *fakeResourceFinder) Do() resource.Visitor {
    	return &fakeResourceResult{
    		Infos: f.Infos,
    	}
    }
    
    type fakeResourceResult struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 13 10:28:09 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/resource/result.go

    	return r
    }
    
    // Infos returns an array of all of the resource infos retrieved via traversal.
    // Will attempt to traverse the entire set of visitors only once, and will return
    // a cached list on subsequent calls.
    func (r *Result) Infos() ([]*Info, error) {
    	if r.err != nil {
    		return nil, r.err
    	}
    	if r.info != nil {
    		return r.info, nil
    	}
    
    	infos := []*Info{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  6. pkg/registry/authorization/selfsubjectrulesreview/rest.go

    }
    
    func getResourceRules(infos []authorizer.ResourceRuleInfo) []authorizationapi.ResourceRule {
    	rules := make([]authorizationapi.ResourceRule, len(infos))
    	for i, info := range infos {
    		rules[i] = authorizationapi.ResourceRule{
    			Verbs:         info.GetVerbs(),
    			APIGroups:     info.GetAPIGroups(),
    			Resources:     info.GetResources(),
    			ResourceNames: info.GetResourceNames(),
    		}
    	}
    	return rules
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    	if err != nil || len(test.Infos) != 2 {
    		t.Fatalf("unexpected response: %v %#v", err, test.Infos)
    	}
    	info := test.Infos[0]
    	if info.Name != "test" || info.Namespace != "foo" || info.Object == nil {
    		t.Errorf("unexpected info: %#v", info)
    	}
    
    	info = test.Infos[1]
    	if info.Name != "test1" || info.Namespace != "foo" || info.Object == nil {
    		t.Errorf("unexpected info: %#v", info)
    	}
    
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  8. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java

                infos.put(key, info);
            } else if (info.isOutdated(timestamp)) {
                info.version = version;
                info.repository = repository;
                info.timestamp = timestamp;
            }
        }
    
        private void merge(Map<String, VersionInfo> infos, String srcKey, String dstKey) {
            VersionInfo srcInfo = infos.get(srcKey);
            VersionInfo dstInfo = infos.get(dstKey);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionResolver.java

                infos.put(key, info);
            } else if (info.isOutdated(timestamp)) {
                info.version = version;
                info.repository = repository;
                info.timestamp = timestamp;
            }
        }
    
        private void merge(Map<String, VersionInfo> infos, String srcKey, String dstKey) {
            VersionInfo srcInfo = infos.get(srcKey);
            VersionInfo dstInfo = infos.get(dstKey);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation.go

    func WithImpersonation(handler http.Handler, a authorizer.Authorizer, s runtime.NegotiatedSerializer) http.Handler {
    	return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		impersonationRequests, err := buildImpersonationRequests(req.Header)
    		if err != nil {
    			klog.V(4).Infof("%v", err)
    			responsewriters.InternalError(w, req, err)
    			return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 10:10:35 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top