Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for initiatives (0.18 sec)

  1. src/go/types/expr.go

    	if typ != nil {
    		if sig, _ := under(typ).(*Signature); sig != nil {
    			return &target{sig, desc}
    		}
    	}
    	return nil
    }
    
    // rawExpr typechecks expression e and initializes x with the expression
    // value or type. If an error occurred, x.mode is set to invalid.
    // If a non-nil target T is given and e is a generic function,
    // T is used to infer the type arguments for e.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    	if typ != nil {
    		if sig, _ := under(typ).(*Signature); sig != nil {
    			return &target{sig, desc}
    		}
    	}
    	return nil
    }
    
    // rawExpr typechecks expression e and initializes x with the expression
    // value or type. If an error occurred, x.mode is set to invalid.
    // If a non-nil target T is given and e is a generic function,
    // T is used to infer the type arguments for e.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. cmd/test-utils_test.go

    func removeRoots(roots []string) {
    	for _, root := range roots {
    		os.RemoveAll(root)
    	}
    }
    
    // creates a bucket for the tests and returns the bucket name.
    // initializes the specified API endpoints for the tests.
    // initializes the root and returns its path.
    // return credentials.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  4. cmd/iam.go

    	if !sys.Initialized() {
    		return errServerNotInitialized
    	}
    
    	return sys.store.UserNotificationHandler(ctx, accessKey, svcUser)
    }
    
    // initStore initializes IAM stores
    func (sys *IAMSys) initStore(objAPI ObjectLayer, etcdClient *etcd.Client) {
    	if sys.LDAPConfig.Enabled() {
    		sys.SetUsersSysType(LDAPUsersSysType)
    	}
    
    	if etcdClient == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/runtime/framework.go

    		parallelizer:    parallelize.NewParallelizer(parallelize.DefaultParallelism),
    	}
    }
    
    var _ framework.Framework = &frameworkImpl{}
    
    // NewFramework initializes plugins given the configuration and the registry.
    func NewFramework(ctx context.Context, r Registry, profile *config.KubeSchedulerProfile, opts ...Option) (framework.Framework, error) {
    	options := defaultFrameworkOptions(ctx.Done())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue.go

    	// waiting to pop items can exit gracefully.
    	Close()
    	// Run starts the goroutines managing the queue.
    	Run(logger klog.Logger)
    }
    
    // NewSchedulingQueue initializes a priority queue as a new scheduling queue.
    func NewSchedulingQueue(
    	lessFn framework.LessFunc,
    	informerFactory informers.SharedInformerFactory,
    	opts ...Option) SchedulingQueue {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    }
    
    func (t *Transport) hasCustomTLSDialer() bool {
    	return t.DialTLS != nil || t.DialTLSContext != nil
    }
    
    var http2client = godebug.New("http2client")
    
    // onceSetNextProtoDefaults initializes TLSNextProto.
    // It must be called via t.nextProtoOnce.Do.
    func (t *Transport) onceSetNextProtoDefaults() {
    	t.tlsNextProtoWasNil = (t.TLSNextProto == nil)
    	if http2client.Value() == "0" {
    		http2client.IncNonDefault()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. src/runtime/map.go

    		h.buckets, nextOverflow = makeBucketArray(t, h.B, nil)
    		if nextOverflow != nil {
    			h.extra = new(mapextra)
    			h.extra.nextOverflow = nextOverflow
    		}
    	}
    
    	return h
    }
    
    // makeBucketArray initializes a backing array for map buckets.
    // 1<<b is the minimum number of buckets to allocate.
    // dirtyalloc should either be nil or a bucket array previously
    // allocated by makeBucketArray with the same t and b parameters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	if err != nil {
    		return
    	}
    	defer LocalFree(Handle(unsafe.Pointer(winHeapSD)))
    	return winHeapSD.copySelfRelativeSecurityDescriptor(), nil
    }
    
    // NewSecurityDescriptor creates and initializes a new absolute security descriptor.
    func NewSecurityDescriptor() (absoluteSD *SECURITY_DESCRIPTOR, err error) {
    	absoluteSD = &SECURITY_DESCRIPTOR{}
    	err = initializeSecurityDescriptor(absoluteSD, 1)
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/init.go

    }
    
    func BinDir() string {
    	Init()
    	if cfg.GOBIN != "" {
    		return cfg.GOBIN
    	}
    	if gopath == "" {
    		return ""
    	}
    	return filepath.Join(gopath, "bin")
    }
    
    // InitWorkfile initializes the workFilePath variable for commands that
    // operate in workspace mode. It should not be called by other commands,
    // for example 'go mod tidy', that don't operate in workspace mode.
    func InitWorkfile() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
Back to top