Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for bindat (0.19 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. pkg/scheduler/extender.go

    		return nil, 0, err
    	}
    	return &result, h.weight, nil
    }
    
    // Bind delegates the action of binding a pod to a node to the extender.
    func (h *HTTPExtender) Bind(binding *v1.Binding) error {
    	var result extenderv1.ExtenderBindingResult
    	if !h.IsBinder() {
    		// This shouldn't happen as this extender wouldn't have become a Binder.
    		return fmt.Errorf("unexpected empty bindVerb in extender")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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 (1)
  6. 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)
  7. 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)
  8. 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)
  9. docs/tr/docs/async.md

    Ancak asenkron kodla çalışmayı çok daha kolay hale getirir.
    
    Aynı sözdizimi (hemen hemen aynı) son zamanlarda JavaScript'in modern sürümlerine de dahil edildi (Tarayıcı ve NodeJS'de).
    
    Ancak bundan önce, asenkron kodu işlemek oldukça karmaşık ve zordu.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server_tls13.go

    		pskBinder := hs.suite.finishedHash(binderKey, transcript)
    		if !hmac.Equal(hs.clientHello.pskBinders[i], pskBinder) {
    			c.sendAlert(alertDecryptError)
    			return errors.New("tls: invalid PSK binder")
    		}
    
    		if c.quic != nil && hs.clientHello.earlyData && i == 0 &&
    			sessionState.EarlyData && sessionState.cipherSuite == hs.suite.id &&
    			sessionState.alpnProtocol == c.clientProtocol {
    			hs.earlyData = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top