Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for bindat (0.43 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    		}
    	}
    
    	// Get internal types
    	internalBinder, ok := binder.(*volumeBinder)
    	if !ok {
    		t.Fatalf("Failed to convert to internal binder")
    	}
    
    	return &testEnv{
    		client:                  client,
    		reactor:                 reactor,
    		binder:                  binder,
    		internalBinder:          internalBinder,
    		internalPodInformer:     podInformer,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_messages.go

    			if !extData.ReadUint16LengthPrefixed(&binders) || binders.Empty() {
    				return false
    			}
    			for !binders.Empty() {
    				var binder []byte
    				if !readUint8LengthPrefixed(&binders, &binder) ||
    					len(binder) == 0 {
    					return false
    				}
    				m.pskBinders = append(m.pskBinders, binder)
    			}
    		default:
    			// Ignore unknown extensions.
    			continue
    		}
    
    		if !extData.Empty() {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ldap/LdapManager.java

        protected LdapUser createLdapUser(final String username, final Hashtable<String, String> env) {
            return new LdapUser(env, username);
        }
    
        public String[] getRoles(final LdapUser ldapUser, final String bindDn, final String accountFilter, final String groupFilter,
                final Consumer<String[]> lazyLoading) {
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

      sc.exe create $LOGGINGAGENT_SERVICE binpath= "${LOGGINGAGENT_ROOT}\bin\fluent-bit.exe -c \fluent-bit\conf\fluent-bit.conf"
      sc.exe failure $LOGGINGAGENT_SERVICE reset= 30 actions= restart/5000
      Write-VerboseServiceInfoToConsole -Service $LOGGINGAGENT_SERVICE
    
      Log-Output "Creating service: ${LOGGINGEXPORTER_SERVICE}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/internal/modload/init.go

    func ModFile() *modfile.File {
    	Init()
    	modFile := MainModules.ModFile(MainModules.mustGetSingleMainModule())
    	if modFile == nil {
    		die()
    	}
    	return modFile
    }
    
    func BinDir() string {
    	Init()
    	if cfg.GOBIN != "" {
    		return cfg.GOBIN
    	}
    	if gopath == "" {
    		return ""
    	}
    	return filepath.Join(gopath, "bin")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/pv_controller.go

    				if err = checkVolumeSatisfyClaim(volume, claim); err != nil {
    					logger.V(4).Info("Can't bind the claim to volume", "volumeName", volume.Name, "err", err)
    					// send an event
    					msg := fmt.Sprintf("Cannot bind to requested volume %q: %s", volume.Name, err)
    					ctrl.eventRecorder.Event(claim, v1.EventTypeWarning, events.VolumeMismatch, msg)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top