Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 115 for bindat (0.12 sec)

  1. pkg/scheduler/extender_test.go

    				tf.RegisterQueueSortPlugin(queuesort.Name, queuesort.New),
    				tf.RegisterBindPlugin(defaultbinder.Name, defaultbinder.New),
    			},
    			extenders: []tf.FakeExtender{
    				{
    					ExtenderName: "FakeExtender1",
    					Binder:       func() error { return nil },
    				},
    			},
    			nodes: []string{"node1", "node2"},
    			expectedResult: ScheduleResult{
    				SuggestedHost:  "node1",
    				EvaluatedNodes: 1,
    				FeasibleNodes:  1,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/core.go

    }
    
    func newPersistentVolumeBinderControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    		name:     names.PersistentVolumeBinderController,
    		aliases:  []string{"persistentvolume-binder"},
    		initFunc: startPersistentVolumeBinderController,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_dragonfly.go

    //sys	Kill(pid int, signum syscall.Signal) (err error)
    //sys	Kqueue() (fd int, err error)
    //sys	Lchown(path string, uid int, gid int) (err error)
    //sys	Link(path string, link string) (err error)
    //sys	Linkat(pathfd int, path string, linkfd int, link string, flags int) (err error)
    //sys	Listen(s int, backlog int) (err error)
    //sys	Lstat(path string, stat *Stat_t) (err error)
    //sys	Mkdir(path string, mode uint32) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_openbsd.go

    //sys	Kill(pid int, signum syscall.Signal) (err error)
    //sys	Kqueue() (fd int, err error)
    //sys	Lchown(path string, uid int, gid int) (err error)
    //sys	Link(path string, link string) (err error)
    //sys	Linkat(pathfd int, path string, linkfd int, link string, flags int) (err error)
    //sys	Listen(s int, backlog int) (err error)
    //sys	Lstat(path string, stat *Stat_t) (err error)
    //sys	Mkdir(path string, mode uint32) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modindex/read.go

    	pos := sf.pos + sourceFileNumPlusBuildConstraints
    	n := sf.d.intAt(pos)
    	pos += 4
    	ret := make([]string, n)
    	for i := 0; i < n; i++ {
    		ret[i] = sf.d.stringAt(pos)
    		pos += 4
    	}
    	return ret
    }
    
    func (sf *sourceFile) importsOffset() int {
    	pos := sf.pos + sourceFileNumPlusBuildConstraints
    	n := sf.d.intAt(pos)
    	// each build constraint is 1 uint32
    	return pos + 4 + n*4
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. pilot/pkg/model/context.go

    	if bindTo {
    		if IsPrivilegedPort(port) && node.IsUnprivileged() {
    			return false
    		}
    		if node.Metadata != nil &&
    			(node.Metadata.EnvoyPrometheusPort == int(port) || node.Metadata.EnvoyStatusPort == int(port)) {
    			// can not bind to port that already bound by proxy static listener
    			return false
    		}
    	}
    	return true
    }
    
    // IsPrivilegedPort returns true if a given port is in the range 1-1023.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-roles.yaml

        annotations:
          rbac.authorization.kubernetes.io/autoupdate: "true"
        creationTimestamp: null
        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:controller:persistent-volume-binder
      rules:
      - apiGroups:
        - ""
        resources:
        - persistentvolumes
        verbs:
        - create
        - delete
        - get
        - list
        - update
        - watch
      - apiGroups:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  8. pkg/scheduler/apis/config/types.go

    	// PreBind is a list of plugins that should be invoked before a pod is bound.
    	PreBind PluginSet
    
    	// Bind is a list of plugins that should be invoked at "Bind" extension point of the scheduling framework.
    	// The scheduler call these plugins in order. Scheduler skips the rest of these plugins as soon as one returns success.
    	Bind PluginSet
    
    	// PostBind is a list of plugins that should be invoked after a pod is successfully bound.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. src/internal/fuzz/fuzz.go

    	dir := "" // same as self
    	binPath := os.Args[0]
    	args := append([]string{"-test.fuzzworker"}, os.Args[1:]...)
    	env := os.Environ() // same as self
    
    	errC := make(chan error)
    	workers := make([]*worker, opts.Parallel)
    	for i := range workers {
    		var err error
    		workers[i], err = newWorker(c, dir, binPath, args, env)
    		if err != nil {
    			return err
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/controller_policy.go

    		}
    		return role
    	}())
    	addControllerRole(&controllerRoles, &controllerRoleBindings, rbacv1.ClusterRole{
    		ObjectMeta: metav1.ObjectMeta{Name: saRolePrefix + "persistent-volume-binder"},
    		Rules: []rbacv1.PolicyRule{
    			rbacv1helpers.NewRule("get", "list", "watch", "update", "create", "delete").Groups(legacyGroup).Resources("persistentvolumes").RuleOrDie(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 28.9K bytes
    - Viewed (0)
Back to top