Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for BREAK (0.3 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    			if t.NumElem() == 0 {
    				n++ // {} counts as a component
    				break
    			}
    			for i := int64(0); i < t.NumElem(); i++ {
    				if !visitType(baseOffset, t.Elem(), depth) {
    					break
    				}
    				baseOffset += t.Elem().Size()
    			}
    		case t.IsStruct():
    			if t.NumFields() == 0 {
    				n++ // {} counts as a component
    				break
    			}
    			for _, field := range t.Fields() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    	go func() {
    		cc.t.markNewGoroutine()
    		cc.mu.Lock()
    		defer cc.mu.Unlock()
    		for {
    			if len(cc.streams) == 0 || cc.closed {
    				cc.closed = true
    				close(done)
    				break
    			}
    			if cancelled {
    				break
    			}
    			cc.cond.Wait()
    		}
    	}()
    	http2shutdownEnterWaitStateHook()
    	select {
    	case <-done:
    		cc.closeConn()
    		return nil
    	case <-ctx.Done():
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. doc/go_spec.html

    	return
    }
    </pre>
    
    <h3 id="Break_statements">Break statements</h3>
    
    <p>
    A "break" statement terminates execution of the innermost
    <a href="#For_statements">"for"</a>,
    <a href="#Switch_statements">"switch"</a>, or
    <a href="#Select_statements">"select"</a> statement
    within the same function.
    </p>
    
    <pre class="ebnf">
    BreakStmt = "break" [ Label ] .
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  4. pkg/apis/core/validation/validation.go

    			allErrs = append(allErrs, field.Required(dataPath.Key(core.BasicAuthPasswordKey), ""))
    			break
    		}
    	case core.SecretTypeSSHAuth:
    		if len(secret.Data[core.SSHAuthPrivateKey]) == 0 {
    			allErrs = append(allErrs, field.Required(dataPath.Key(core.SSHAuthPrivateKey), ""))
    			break
    		}
    
    	case core.SecretTypeTLS:
    		if _, exists := secret.Data[core.TLSCertKey]; !exists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    									XEmbeddedResource: true,
    									Properties: map[string]apiextensions.JSONSchemaProps{
    										"apiVersion": {
    											Type:        "string",
    											Description: "BREAK",
    											// invalid
    											Default: jsonPtr("bar/v1"),
    											Enum:    jsonSlice("foo/v1"),
    										},
    										"kind": {
    											Type: "string",
    											// invalid
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  6. ChangeLog.md

    - [`KT-28333`](https://youtrack.jetbrains.com/issue/KT-28333) Smartcast is wrong if while(true) and break as a part of expression is used (possible NPE)
    - [`KT-28489`](https://youtrack.jetbrains.com/issue/KT-28489) Smartcast is wrong if not-null assertion in while condition + break to the parent while is used (produces NPE)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.css

    :baseline!important}.uk-text-nowrap{white-space:nowrap}.uk-text-truncate{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}td.uk-text-truncate,th.uk-text-truncate{max-width:0}.uk-text-break{overflow-wrap:break-word;word-wrap:break-word}td.uk-text-break,th.uk-text-break{word-break:break-all}[class*=uk-column-]{column-gap:30px}@media (min-width:1200px){[class*=uk-column-]{column-gap:40px}}[class*=uk-column-] img{transform:translate3d(0,0,0)}.uk-column-divider{column-rule:1px...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 257.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.9.md

    *   Kubelet evictions now take pod priority into account ([#53542](https://github.com/kube...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

            auto zero =
                rewriter.create<arith::ConstantIntOp>(loc, 0, shape_scalar_type);
            *padding_low = *padding_high = zero;
            break;
          }
          case tensorflow::Padding::EXPLICIT:
            break;
          case tensorflow::Padding::SAME: {
            auto zero =
                rewriter.create<arith::ConstantIntOp>(loc, 0, shape_scalar_type);
            auto one =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.8.md

    ### Other notable changes
    
    * Fix to prevent downward api change break on older versions ([#53673](https://github.com/kubernetes/kubernetes/pull/53673), [@timothysc](https://github.com/timothysc))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top