Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for ToOpts (0.1 sec)

  1. cmd/admin-handlers-users.go

    			Type: madmin.SRIAMItemSvcAcc,
    			SvcAccChange: &madmin.SRSvcAccChange{
    				Update: &madmin.SRSvcAccUpdate{
    					AccessKey:     accessKey,
    					SecretKey:     opts.secretKey,
    					Status:        opts.status,
    					Name:          opts.name,
    					Description:   opts.description,
    					SessionPolicy: updateReq.NewPolicy,
    					Expiration:    updateReq.NewExpiration,
    				},
    			},
    			UpdatedAt: updatedAt,
    		}))
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  2. cmd/iam-store.go

    			return updatedAt, auth.ErrInvalidSecretKeyLength
    		}
    		cr.SecretKey = opts.secretKey
    	}
    
    	if opts.name != "" {
    		cr.Name = opts.name
    	}
    
    	if opts.description != "" {
    		cr.Description = opts.description
    	}
    
    	if opts.expiration != nil {
    		expirationInUTC := opts.expiration.UTC()
    		if err := validateSvcExpirationInUTC(expirationInUTC); err != nil {
    			return updatedAt, err
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceregistry_test.go

    		t.Run(tt.name, func(t *testing.T) {
    			opts := xds.FakeOptions{}
    			if tt.pod != nil {
    				opts.KubernetesObjects = append(opts.KubernetesObjects, tt.pod)
    			}
    			if tt.node != nil {
    				opts.KubernetesObjects = append(opts.KubernetesObjects, tt.node)
    			}
    			if tt.obj.Name != "" {
    				opts.Configs = append(opts.Configs, tt.obj)
    			}
    			s := xds.NewFakeDiscoveryServer(t, opts)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. pkg/registry/core/pod/strategy_test.go

    				Status: api.PodStatus{},
    			},
    			opts: &api.PodLogOptions{
    				InsecureSkipTLSVerifyBackend: true,
    			},
    			expectedErr:       nil,
    			expectedTransport: fakeInsecureRoundTripper,
    		},
    		{
    			name: "missing container",
    			in: &api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: fakePodName},
    				Spec:       api.PodSpec{},
    				Status:     api.PodStatus{},
    			},
    			opts:              &api.PodLogOptions{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    		},
    		add_sheet : function(opts) {
    			var tmp = false, is_new = true;
    			if(opts.str) {
    				if(opts.title) { tmp = $("style[id='" + opts.title + "-stylesheet']")[0]; }
    				if(tmp) { is_new = false; }
    				else {
    					tmp = document.createElement("style");
    					tmp.setAttribute('type',"text/css");
    					if(opts.title) { tmp.setAttribute("id", opts.title + "-stylesheet"); }
    				}
    				if(tmp.styleSheet) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.h

    TF_CAPI_EXPORT extern void TF_DeleteImportGraphDefOptions(
        TF_ImportGraphDefOptions* opts);
    
    // Set the prefix to be prepended to the names of nodes in `graph_def` that will
    // be imported into `graph`. `prefix` is copied and has no lifetime
    // requirements.
    TF_CAPI_EXPORT extern void TF_ImportGraphDefOptionsSetPrefix(
        TF_ImportGraphDefOptions* opts, const char* prefix);
    
    // Set the execution device for nodes in `graph_def`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    		if cfg.BuildMod == "mod" && cfg.CmdName != "mod graph" && cfg.CmdName != "mod why" {
    			// go line is missing from go.mod; add one there and add to derived requirements.
    			v := gover.Local()
    			if opts != nil && opts.TidyGoVersion != "" {
    				v = opts.TidyGoVersion
    			}
    			addGoStmt(MainModules.ModFile(mainModule), mainModule, v)
    			rs = overrideRoots(ctx, rs, []module.Version{{Path: "go", Version: v}})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/manager_test.go

    	testManager.endpoints[resourceName1] = endpointInfo{e: e1, opts: nil}
    	testManager.genericDeviceUpdateCallback(resourceName1, resource1Devs)
    
    	resource2Devs := []pluginapi.Device{
    		{ID: "R2Device1", Health: pluginapi.Healthy},
    	}
    	resourceName2 := "other.domain2.org/resource2"
    	e2 := &endpointImpl{}
    	testManager.endpoints[resourceName2] = endpointInfo{e: e2, opts: nil}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    		e.Storage.Codec = opts.StorageConfig.Codec
    		var err error
    		e.Storage.Storage, e.DestroyFunc, err = opts.Decorator(
    			opts.StorageConfig,
    			prefix,
    			keyFunc,
    			e.NewFunc,
    			e.NewListFunc,
    			attrFunc,
    			options.TriggerFunc,
    			options.Indexers,
    		)
    		if err != nil {
    			return err
    		}
    		e.StorageVersioner = opts.StorageConfig.EncodeVersioner
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    // loads the packages in the import graph rooted at that set.
    func LoadPackages(ctx context.Context, opts PackageOpts, patterns ...string) (matches []*search.Match, loadedPackages []string) {
    	if opts.Tags == nil {
    		opts.Tags = imports.Tags()
    	}
    
    	patterns = search.CleanPatterns(patterns)
    	matches = make([]*search.Match, 0, len(patterns))
    	allPatternIsRoot := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top