Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 70 for bindat (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
    	_, _, e1 := syscall_syscall(libc_bind_trampoline_addr, uintptr(s), uintptr(addr), uintptr(addrlen))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_bind_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_bind bind "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier.go

    				return err
    			}
    		}
    	}
    
    	// bind service address to dummy interface
    	if bindAddr {
    		// always attempt to bind if alreadyBoundAddrs is nil,
    		// otherwise check if it's already binded and return early
    		if alreadyBoundAddrs != nil && alreadyBoundAddrs.Has(vs.Address.String()) {
    			return nil
    		}
    
    		proxier.logger.V(4).Info("Bind address", "address", vs.Address)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  8. src/go/build/build.go

    	PkgRoot       string   // package install root directory ("" if unknown)
    	PkgTargetRoot string   // architecture dependent install root directory ("" if unknown)
    	BinDir        string   // command install directory ("" if unknown)
    	Goroot        bool     // package found in Go root
    	PkgObj        string   // installed .a file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. src/database/sql/sql_test.go

    	}
    
    	paramtype := reflect.TypeOf(spec.rows[0].nullParam)
    	bindVal := reflect.New(paramtype).Interface()
    
    	for i := 0; i < 5; i++ {
    		id := i + 1
    		if err := db.QueryRow("SELECT|t|nullf|id=?", id).Scan(bindVal); err != nil {
    			t.Errorf("id=%d Scan: %v", id, err)
    		}
    		bindValDeref := reflect.ValueOf(bindVal).Elem().Interface()
    		if !reflect.DeepEqual(bindValDeref, spec.rows[i].scanNullVal) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  10. 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)
Back to top