Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,255 for BREAK (0.03 sec)

  1. src/internal/poll/writev.go

    			if fd.IsStream && len(chunk) > 1<<30 {
    				iovecs[len(iovecs)-1].SetLen(1 << 30)
    				break // continue chunk on next writev
    			}
    			iovecs[len(iovecs)-1].SetLen(len(chunk))
    			if len(iovecs) == maxVec {
    				break
    			}
    		}
    		if len(iovecs) == 0 {
    			break
    		}
    		if fd.iovecs == nil {
    			fd.iovecs = new([]syscall.Iovec)
    		}
    		*fd.iovecs = iovecs // cache
    
    		var wrote uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtDataFlowInfoProvider.kt

        /**
         * `true` if there are jumps of different kinds (e.g., there is both a `break` and a `return`).
         */
        public val hasMultipleJumpKinds: Boolean,
    
        /**
         * `true` if two or more jumps have different next-executed instructions.
         * Such as, there are both inner and outer loop `break`, or a `break` and `continue` for the same loop.
         */
        public val hasMultipleJumpTargets: Boolean,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/scanner.go

    	case ':':
    		s.nextch()
    		if s.ch == '=' {
    			s.nextch()
    			s.tok = _Define
    			break
    		}
    		s.tok = _Colon
    
    	case '.':
    		s.nextch()
    		if isDecimal(s.ch) {
    			s.number(true)
    			break
    		}
    		if s.ch == '.' {
    			s.nextch()
    			if s.ch == '.' {
    				s.nextch()
    				s.tok = _DotDotDot
    				break
    			}
    			s.rewind() // now s.ch holds 1st '.'
    			s.nextch() // consume 1st '.' again
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/MimeMap.java

                        }
                        break;
                    case ST_COMM:
                        if( ch == '\n' ) {
                            t = x = i = 0;
                            state = ST_START;
                        }
                        break;
                    case ST_GAP:
                        if( ch == ' ' || ch == '\t' ) {
                            break;
                        }
                        state = ST_EXT;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 4.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

                            attributes.put("iss", jsonParser.getText());
                            break;
                        case "sub":
                            attributes.put("sub", jsonParser.getText());
                            break;
                        case "azp":
                            attributes.put("azp", jsonParser.getText());
                            break;
                        case "email":
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/tasks/VerificationTask.java

        /**
         * Specifies whether the build should break when the verifications performed by this task fail.
         *
         * @param ignoreFailures false to break the build on failure, true to ignore the failures. The default is false.
         */
        void setIgnoreFailures(boolean ignoreFailures);
    
        /**
         * Specifies whether the build should break when the verifications performed by this task fail.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/graph/SimpleNodeRenderer.java

                    break;
                case RESOLVED:
                    if (alreadyRendered && !node.getChildren().isEmpty()) {
                        output.withStyle(Info).text(" (*)");
                    }
                    break;
                case RESOLVED_CONSTRAINT:
                    output.withStyle(Info).text(" (c)");
                    break;
                case UNRESOLVED:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 04 15:34:38 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/HierarchicalClassLoaderStructureSerializer.java

            HierarchicalClassLoaderStructure parent;
            switch (parentTag) {
                case ROOT:
                    parent = null;
                    break;
                case HAS_PARENT:
                    parent = read(decoder);
                    break;
                default:
                    throw new IllegalArgumentException("Unexpected payload type.");
            }
    
            byte specTag = decoder.readByte();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. test/label.go

    	f()
    	if x == 20 {
    		goto L6
    	}
    
    L7:
    	for {
    		break L7
    	}
    
    L8:
    	for {
    		if x == 21 {
    			continue L8
    		}
    	}
    
    L9:
    	switch {
    	case true:
    		break L9
    	defalt: // ERROR "label .*defalt.* defined and not used"
    	}
    
    L10:
    	select {
    	default:
    		break L10
    	}
    
    	goto L10
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 28 02:31:54 UTC 2020
    - 1K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/text/unicode/norm/iter.go

    		}
    		p := outp + sz
    		if p > len(i.buf) {
    			break
    		}
    		outp = p
    		i.p += sz
    		if i.p >= i.rb.nsrc {
    			i.setDone()
    			break
    		} else if i.rb.src._byte(i.p) < utf8.RuneSelf {
    			i.rb.ss = 0
    			i.next = i.asciiF
    			break
    		}
    		i.info = i.rb.f.info(i.rb.src, i.p)
    		if v := i.rb.ss.next(i.info); v == ssStarter {
    			break
    		} else if v == ssOverflow {
    			i.next = nextCGJCompose
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11K bytes
    - Viewed (0)
Back to top