Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 676 for aloop (0.06 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DistributionInstaller.java

                        }
                        if (cancelled) {
                            // When cancelled, try to stop the download thread but don't attempt to wait for it to complete
                            // Could possibly loop here for a while trying to force the thread to exit
                            thread.interrupt();
                            throw new CancellationException();
                        }
                    }
                } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/inlheur/scoring.go

    //	                              }
    //
    // Function 'foo' above on the left has no interesting properties,
    // thus as a result the most we'll adjust any call to is the value for
    // "call in loop". If the calculated cost of the function is 150, and
    // the in-loop adjustment is 5 (for example), then there is not much
    // point treating it as inlinable. On the other hand "bar" has a param
    // property (parameter "x" feeds unmodified to an "if" statement") and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/bidi/core.go

    // index if that value is not in validSet.
    func (s *isolatingRunSequence) findRunLimit(index int, validSet ...Class) int {
    loop:
    	for ; index < len(s.types); index++ {
    		t := s.types[index]
    		for _, valid := range validSet {
    			if t == valid {
    				continue loop
    			}
    		}
    		return index // didn't find a match in validSet
    	}
    	return len(s.types)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AggregateFuture.java

          // Note that if all the futures on the list are done prior to completing this loop, the last
          // call to addListener() will callback to setOneValue(), transitively call our cleanup
          // listener, and set this.futures to null.
          // This is not actually a problem, since the foreach only needs this.futures to be non-null
          // at the beginning of the loop.
          int i = 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/util/transport/Transport.java

            return false;
        }
    
    
        /**
         * @param request
         * @return
         */
        protected abstract int getResponseTimeout ( Request request );
    
    
        private void loop () {
            while ( this.thread == Thread.currentThread() ) {
                try {
                    synchronized ( this.inLock ) {
                        Long key;
                        try {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 01 18:12:21 UTC 2020
    - 24.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/order.go

    			}
    
    			n.X = o.copyExpr(r)
    
    		case k == types.TMAP:
    			if isMapClear(n) {
    				// Preserve the body of the map clear pattern so it can
    				// be detected during walk. The loop body will not be used
    				// when optimizing away the range loop to a runtime call.
    				orderBody = false
    				break
    			}
    
    			// copy the map value in case it is a map literal.
    			// TODO(rsc): Make tmp = literal expressions reuse tmp.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	ELIBBAD         = syscall.Errno(0x50)
    	ELIBEXEC        = syscall.Errno(0x53)
    	ELIBMAX         = syscall.Errno(0x52)
    	ELIBSCN         = syscall.Errno(0x51)
    	ELNRNG          = syscall.Errno(0x30)
    	ELOOP           = syscall.Errno(0x28)
    	EMEDIUMTYPE     = syscall.Errno(0x7c)
    	EMSGSIZE        = syscall.Errno(0x5a)
    	EMULTIHOP       = syscall.Errno(0x48)
    	ENAMETOOLONG    = syscall.Errno(0x24)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

      context:
        cluster: foobar
        user: a name
    current-context: default
    `,
    			wantErr: true,
    		},
    	}
    
    	for _, tt := range tests {
    		// Use a closure so defer statements trigger between loop iterations.
    		err := func() error {
    			tempfile, err := ioutil.TempFile("", "")
    			if err != nil {
    				return err
    			}
    			p := tempfile.Name()
    			defer os.Remove(p)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbolProvider.kt

         * it is not possible to create [KaValueParameterSymbol], hence an error will be raised.
         *
         * If [KtParameter.isLoopParameter] is `true`, i.e. if the given [KtParameter] is a loop variable in `for` expression, then the function
         * returns [KaLocalVariableSymbol].
         *
         * Otherwise, returns [KaValueParameterSymbol].
         */
        public fun KtParameter.getParameterSymbol(): KaVariableLikeSymbol =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/link.go

    	depth := 0
    	j := i
    Loop:
    	for ; j < len(s); j++ {
    		switch s[j] {
    		case '(':
    			depth++
    			if depth > 32 {
    				// Avoid quadratic inputs by stopping if too deep.
    				// This is the same depth that cmark-gfm uses.
    				return "", 0, false
    			}
    		case ')':
    			if depth == 0 {
    				break Loop
    			}
    			depth--
    		case '\\':
    			if j+1 < len(s) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top