Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Uncommented (0.22 sec)

  1. pkg/controller/volume/persistentvolume/pv_controller.go

    // notice:
    //
    // 1. Every 'if' statement has a matching 'else' (exception: simple error
    //    checks for a client API call)
    // 2. Things that may seem obvious are commented explicitly
    //
    // We call this style 'space shuttle style'. Space shuttle style is meant to
    // ensure that every branch and condition is considered and accounted for -
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  2. src/html/template/escape_test.go

    			`<a style="/* color:  */">`,
    		},
    		{
    			"CSS attr line comment",
    			`<a style="// color: {{.G}}">`,
    			`<a style="// color: ">`,
    		},
    		{
    			"HTML substitution commented out",
    			"<p><!-- {{.H}} --></p>",
    			"<p></p>",
    		},
    		{
    			"Comment ends flush with start",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  3. src/time/time_test.go

    				absString(t0), int64(d), absString(trunc), absString(t1))
    			return false
    		}
    
    		// To round, add d back if remainder r > d/2 or r == exactly d/2.
    		// The commented out code would round half to even instead of up,
    		// but that makes it time-zone dependent, which is a bit strange.
    		if r > int64(d)/2 || r+r == int64(d) /*&& bq.Bit(0) == 1*/ {
    			t1 = t1.Add(d)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

                    statements.propertyAssignment(null, "url", new BuildScriptBuilder.MethodInvocationExpression(null, "uri", singletonList(new BuildScriptBuilder.StringValue(repoLocation.toString()))), true);
                    // Leave a commented out block for opting into using the insecure repository
                    statements.comment(buildAllowInsecureProtocolComment(dsl));
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/expr.go

    	// 	if old.val != nil {
    	// 		break
    	// 	}
    	// 	check.updateExprType0(x, x.X, typ, final)
    
    	case *syntax.Operation:
    		if x.Y == nil {
    			// unary expression
    			if x.Op == syntax.Mul {
    				// see commented out code for StarExpr above
    				// TODO(gri) needs cleanup
    				if debug {
    					panic("unimplemented")
    				}
    				return
    			}
    			// If x is a constant, the operands were constants.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// +optional
    	Spec NetworkPolicySpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
    
    	// Status is tombstoned to show why 3 is a reserved protobuf tag.
    	// This commented field should remain, so in the future if we decide to reimplement
    	// NetworkPolicyStatus a different protobuf name and tag SHOULD be used!
    	// Status NetworkPolicyStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
Back to top