Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for preloading (0.44 sec)

  1. .idea/dictionaries/Nikolay_Krasko.xml

          <w>intrinsics</w>
          <w>kdoc</w>
          <w>lateinit</w>
          <w>memoize</w>
          <w>memoized</w>
          <w>multiline</w>
          <w>navigatable</w>
          <w>preload</w>
          <w>preloader</w>
          <w>preloading</w>
          <w>preprocess</w>
          <w>proximities</w>
          <w>redeclarations</w>
          <w>reparsed</w>
          <w>smap</w>
          <w>subclassed</w>
          <w>subgraph</w>
          <w>substep</w>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue May 23 16:52:40 UTC 2023
    - 756 bytes
    - Viewed (0)
  2. src/syscall/dll_windows.go

    }
    
    // LoadDLL loads the named DLL file into memory.
    //
    // If name is not an absolute path and is not a known system DLL used by
    // Go, Windows will search for the named DLL in many locations, causing
    // potential DLL preloading attacks.
    //
    // Use [LazyDLL] in golang.org/x/sys/windows for a secure way to
    // load system DLLs.
    func LoadDLL(name string) (*DLL, error) {
    	namep, err := UTF16PtrFromString(name)
    	if err != nil {
    		return nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. callbacks/preload.go

    			return err
    		}
    	}
    
    	fieldValues := make([]interface{}, len(relForeignFields))
    
    	// clean up old values before preloading
    	switch reflectValue.Kind() {
    	case reflect.Struct:
    		switch rel.Type {
    		case schema.HasMany, schema.Many2Many:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/dll_windows.go

    type DLL struct {
    	Name   string
    	Handle Handle
    }
    
    // LoadDLL loads DLL file into memory.
    //
    // Warning: using LoadDLL without an absolute path name is subject to
    // DLL preloading attacks. To safely load a system DLL, use LazyDLL
    // with System set to true, or use LoadLibraryEx directly.
    func LoadDLL(name string) (dll *DLL, err error) {
    	namep, err := UTF16PtrFromString(name)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 05 12:36:42 UTC 2020
    - 12K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    			if changedBuildList {
    				// The build list has changed, so the set of root packages may have also
    				// changed. Start over to pick up the changes. (Preloading roots is much
    				// cheaper than loading the full import graph, so we would rather pay
    				// for an extra iteration of preloading than potentially end up
    				// discarding the result of a full iteration of loading.)
    				continue
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    // workers that would saturate the bus though, so runtime.GOMAXPROCS
    // seems like a reasonable default.
    var preloadWorkerCount = runtime.GOMAXPROCS(0)
    
    // preload holds state for managing concurrent preloading of package data.
    //
    // A preload should be created with newPreload before loading a large
    // package graph. flush must be called when package loading is complete
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. prow/config/calico.yaml

                      hint is set on a policy, Felix will act as if the policy matches
                      a local endpoint even if it does not. This is useful for \"preloading\"
                      any large static policies that are known to be used on every node.
                      If the policy is _not_ used on a particular node then the work done
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  8. pkg/kubeapiserver/authorizer/reload.go

    	"k8s.io/kubernetes/plugin/pkg/auth/authorizer/node"
    	"k8s.io/kubernetes/plugin/pkg/auth/authorizer/rbac"
    )
    
    type reloadableAuthorizerResolver struct {
    	// initialConfig holds the ReloadFile used to initiate background reloading,
    	// and information used to construct webhooks that isn't exposed in the authorization
    	// configuration file (dial function, backoff settings, etc)
    	initialConfig Config
    
    	apiServerID string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller_test.go

    					HealthChecks: []healthz.HealthChecker{
    						&mockHealthChecker{
    							pluginName: "valid-plugin",
    							err:        nil,
    						},
    					},
    					// hash of initial "testdata/ec_config.yaml" config file before reloading
    					EncryptionFileContentHash: "k8s:enc:unstable:1:6bc9f4aa2e5587afbb96074e1809550cbc4de3cc3a35717dac8ff2800a147fd3",
    				}, nil
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    			if !apiequality.Semantic.DeepEqual(oldPL.Spec, newPL.Spec) {
    				klog.V(7).Infof("Triggered API priority and fairness config reloading in %s due to spec update of PLC %s", cfgCtlr.name, newPL.Name)
    				cfgCtlr.configQueue.Add(0)
    			} else {
    				klog.V(7).Infof("No trigger API priority and fairness config reloading in %s due to spec non-change of PLC %s", cfgCtlr.name, newPL.Name)
    			}
    		},
    		DeleteFunc: func(obj interface{}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
Back to top