Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for binder (0.1 sec)

  1. pkg/scheduler/schedule_one_test.go

    	return nil, 0, nil
    }
    
    func (f *fakeExtender) Bind(binding *v1.Binding) error {
    	if f.isBinder {
    		if f.errBind {
    			return errors.New("bind error")
    		}
    		f.gotBind = true
    		return nil
    	}
    	return errors.New("not a binder")
    }
    
    func (f *fakeExtender) IsBinder() bool {
    	return f.isBinder
    }
    
    func (f *fakeExtender) IsInterested(pod *v1.Pod) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework_test.go

    		profile.Plugins.QueueSort.Enabled = append(profile.Plugins.QueueSort.Enabled, config.Plugin{Name: queueSortPlugin})
    	}
    	if len(profile.Plugins.Bind.Enabled) == 0 {
    		profile.Plugins.Bind.Enabled = append(profile.Plugins.Bind.Enabled, config.Plugin{Name: bindPlugin})
    	}
    	return NewFramework(ctx, r, &profile, opts...)
    }
    
    func TestInitFrameworkWithScorePlugins(t *testing.T) {
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  3. docs/en/docs/img/sponsors/imgwhale-banner.svg

    imgwhale-banner.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 25 19:49:44 UTC 2022
    - 105.4K bytes
    - Viewed (0)
  4. docs/en/docs/img/sponsors/docarray-top-banner.svg

    docarray-top-banner.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Aug 24 08:43:44 UTC 2022
    - 107.4K bytes
    - Viewed (0)
  5. docs/en/docs/img/sponsors/jina-top-banner.svg

    jina-top-banner.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Aug 16 11:07:22 UTC 2022
    - 159.1K bytes
    - Viewed (0)
  6. docs/en/docs/img/sponsors/cryptapi-banner.svg

    cryptapi-banner.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Dec 08 15:04:04 UTC 2021
    - 130.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    			// Install cross-compiled binaries to subdirectories of bin.
    			elem = full
    		}
    		if p.Internal.Build.BinDir == "" && cfg.ModulesEnabled {
    			p.Internal.Build.BinDir = modload.BinDir()
    		}
    		if p.Internal.Build.BinDir != "" {
    			// Install to GOBIN or bin of GOPATH entry.
    			p.Target = filepath.Join(p.Internal.Build.BinDir, elem)
    			if !p.Goroot && strings.Contains(elem, string(filepath.Separator)) && cfg.GOBIN != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "cinder": {
              "$ref": "#/definitions/io.k8s.api.core.v1.CinderVolumeSource",
              "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
            },
            "configMap": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  9. pkg/api/pod/util_test.go

    						SecretRef: &api.LocalObjectReference{
    							Name: "Spec.Volumes[*].VolumeSource.CephFS.SecretRef"}}}}, {
    				VolumeSource: api.VolumeSource{
    					Cinder: &api.CinderVolumeSource{
    						SecretRef: &api.LocalObjectReference{
    							Name: "Spec.Volumes[*].VolumeSource.Cinder.SecretRef"}}}}, {
    				VolumeSource: api.VolumeSource{
    					FlexVolume: &api.FlexVolumeSource{
    						SecretRef: &api.LocalObjectReference{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  10. pkg/apis/core/zz_generated.deepcopy.go

    	}
    	if in.FlexVolume != nil {
    		in, out := &in.FlexVolume, &out.FlexVolume
    		*out = new(FlexPersistentVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Cinder != nil {
    		in, out := &in.Cinder, &out.Cinder
    		*out = new(CinderPersistentVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.CephFS != nil {
    		in, out := &in.CephFS, &out.CephFS
    		*out = new(CephFSPersistentVolumeSource)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
Back to top