Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for expandable (0.13 sec)

  1. pkg/volume/csi/expander_test.go

    	}
    	for _, tc := range tests {
    		t.Run(tc.name, func(t *testing.T) {
    			plug, tmpDir := newTestPlugin(t, nil)
    			defer os.RemoveAll(tmpDir)
    
    			spec := volume.NewSpecFromPersistentVolume(makeTestPV("test-pv", 10, "expandable", "test-vol"), false)
    			if tc.enableCSINodeExpandSecret {
    				spec.PersistentVolume.Spec.CSI.NodeExpandSecretRef = &api.SecretReference{
    					Name:      tc.secret.Name,
    					Namespace: tc.secret.Namespace,
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 03:58:36 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/plugins.go

    	return flexvolume.GetDynamicPluginProber(config.FlexVolumePluginDir, exec.New() /*exec.Interface*/)
    }
    
    // ProbeExpandableVolumePlugins returns volume plugins which are expandable
    func ProbeExpandableVolumePlugins(logger klog.Logger, config persistentvolumeconfig.VolumeConfiguration) ([]volume.VolumePlugin, error) {
    	var err error
    	allPlugins := []volume.VolumePlugin{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. pilot/pkg/status/resourcelock.go

    	"istio.io/api/meta/v1alpha1"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // Task to be performed.
    type Task func(entry cacheEntry)
    
    // WorkerQueue implements an expandable goroutine pool which executes at most one concurrent routine per target
    // resource.  Multiple calls to Push() will not schedule multiple executions per target resource, but will ensure that
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. src/crypto/tls/key_schedule.go

    func (c *cipherSuiteTLS13) nextTrafficSecret(trafficSecret []byte) []byte {
    	return c.expandLabel(trafficSecret, trafficUpdateLabel, nil, c.hash.Size())
    }
    
    // trafficKey generates traffic keys according to RFC 8446, Section 7.3.
    func (c *cipherSuiteTLS13) trafficKey(trafficSecret []byte) (key, iv []byte) {
    	key = c.expandLabel(trafficSecret, "key", nil, c.keyLen)
    	iv = c.expandLabel(trafficSecret, "iv", nil, aeadNonceLength)
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. cluster/gce/manifests/cluster-autoscaler.manifest

                        "--log-file-max-size=0",
                        "--write-status-configmap=true",
                        "--balance-similar-node-groups=true",
                        "--expendable-pods-priority-cutoff=-10",
                        {{params}}
                    ],
                    "env": [
                        {
                            "name": "LOG_OUTPUT",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:04:35 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. README.md

    * Batch Insert, FindInBatches, Find To Map
    * SQL Builder, Upsert, Locking, Optimizer/Index/Comment Hints, NamedArg, Search/Update/Create with SQL Expr
    * Composite Primary Key
    * Auto Migrations
    * Logger
    * Extendable, flexible plugin API: Database Resolver (Multiple Databases, Read/Write Splitting) / Prometheus…
    * Every feature comes with tests
    * Developer Friendly
    
    ## Getting Started
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Nov 07 02:20:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/sha3/sha3.go

    	// giving 00000110b (0x06) and 00011111b (0x1f).
    	// [1] http://csrc.nist.gov/publications/drafts/fips-202/fips_202_draft.pdf
    	//     "Draft FIPS 202: SHA-3 Standard: Permutation-Based Hash and
    	//      Extendable-Output Functions (May 2014)"
    	dsbyte byte
    
    	i, n    int // storage[i:n] is the buffer, i is only used while squeezing
    	storage [maxRate]byte
    
    	// Specific to SHA-3 and SHAKE.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top