Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 368 for deselect (0.13 sec)

  1. internal/bpool/bpool.go

    		bp.Put(buf[:bp.w])
    	}
    }
    
    // Get gets a []byte from the BytePool, or creates a new one if none are
    // available in the pool.
    func (bp *BytePoolCap) Get() (b []byte) {
    	if bp == nil {
    		return nil
    	}
    	select {
    	case b = <-bp.c:
    		// reuse existing buffer
    	default:
    		// create new aligned buffer
    		if bp.wcap > 0 {
    			b = reedsolomon.AllocAligned(1, bp.wcap)[0][:bp.w]
    		} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 19 16:44:59 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. pkg/ctrlz/assets/static/js/clipboard-1.7.1.min.js

    or(var r=0,a=o.length;r<a;r++)o[r].fn!==e&&o[r].fn._!==e&&i.push(o[r]);return i.length?n[t]=i:delete n[t],this}},e.exports=o},{}],7:[function(e,n,o){!function(i,r){if("function"==typeof t&&t.amd)t(["module","select"],r);else if(void 0!==o)r(n,e("select"));else{var a={exports:{}};r(a,i.select),i.clipboardAction=a.exports}}(this,function(t,e){"use strict";function n(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  3. src/net/fd_unix.go

    	// so no concurrent operations are possible.
    	switch err := connectFunc(fd.pfd.Sysfd, ra); err {
    	case syscall.EINPROGRESS, syscall.EALREADY, syscall.EINTR:
    	case nil, syscall.EISCONN:
    		select {
    		case <-ctx.Done():
    			return nil, mapErr(ctx.Err())
    		default:
    		}
    		if err := fd.pfd.Init(fd.net, true); err != nil {
    			return nil, err
    		}
    		runtime.KeepAlive(fd)
    		return nil, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 20:19:46 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. internal/s3select/unused-errors.go

    		code:       "ParseEmptySelect",
    		message:    "The SQL expression contains an empty SELECT.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errParseSelectMissingFrom(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseSelectMissingFrom",
    		message:    "The SQL expression contains a missing FROM after SELECT list.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 20 08:16:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. src/cmd/covdata/merge.go

    	fmt.Fprintf(os.Stderr, "  \tinto output dir outdir\n")
    	Exit(2)
    }
    
    func (m *mstate) Setup() {
    	if *indirsflag == "" {
    		m.Usage("select input directories with '-i' option")
    	}
    	if *outdirflag == "" {
    		m.Usage("select output directory with '-o' option")
    	}
    	m.mm.SetModeMergePolicy(cmerge.ModeMergeRelaxed)
    }
    
    func (m *mstate) BeginPod(p pods.Pod) {
    	m.mm.beginPod()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/orig/view/advance.jsp

    							/></option>
    					</select>
    				</div>
    				<div class="col-lg-4 d-none d-lg-flex align-items-center">
    				</div>
    			</div>
    			<div class="form-group row">
    				<label for="as_occt" class="col-lg-3 col-md-4 col-sm-5 col-12 col-form-label"><la:message
    						key="labels.advance_search_occt"
    					/></label>
    				<div class="col-lg-5 col-md-8 col-sm-7 col-xs-6">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  7. src/net/net_fake.go

    	)
    	expired := ffd.readDeadline.Load().expired
    	select {
    	case <-expired:
    		return nil, os.ErrDeadlineExceeded
    	case incoming, ok = <-ffd.incoming:
    		if !ok {
    			return nil, ErrClosed
    		}
    		select {
    		case <-expired:
    			ffd.incoming <- incoming
    			return nil, os.ErrDeadlineExceeded
    		default:
    		}
    	case incoming, ok = <-ffd.incomingFull:
    		select {
    		case <-expired:
    			ffd.incomingFull <- incoming
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 19:24:21 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DependencyMetadata.java

    public interface DependencyMetadata {
        /**
         * Returns the component selector for this dependency.
         *
         * @return Component selector
         */
        ComponentSelector getSelector();
    
        /**
         * Select the matching variants for this dependency from the given target component.
         *
         * @implSpec An instance of {@link ResolutionFailureHandler} is supplied to this method, and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 11:43:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/toolchains/DefaultToolChainSelectorTest.groovy

            }
    
            given:
            modelRegistry.realize(_, NativeToolChainRegistryInternal) >> registry
            machineArchitecture.name >> architecture
    
            when:
            def result = selector.select(CppPlatform, requestPlatform)
    
            then:
            result.toolChain == toolChain
            result.targetPlatform instanceof CppPlatform
            result.targetPlatform.targetMachine.operatingSystemFamily == osFamily
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. cni/pkg/install/install_test.go

    			ticker := time.NewTicker(500 * time.Millisecond)
    			defer ticker.Stop()
    			readyChan := make(chan bool)
    			go func(ctx context.Context, tick <-chan time.Time) {
    				for {
    					select {
    					case <-ctx.Done():
    						return
    					case <-tick:
    						if isReady.Load().(bool) {
    							readyChan <- true
    						}
    					}
    				}
    			}(ctx, ticker.C)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top