Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for Uncommented (0.25 sec)

  1. staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go

    	if !SelectorFromSet(selector).Matches(ls) {
    		t.Errorf("Wanted %s to match '%s', but it did not.\n", selector, ls)
    	}
    }
    
    //nolint:staticcheck,unused //iccheck // U1000 currently commented out in TODO of TestSetMatches
    func expectNoMatchDirect(t *testing.T, selector, ls Set) {
    	if SelectorFromSet(selector).Matches(ls) {
    		t.Errorf("Wanted '%s' to not match '%s', but it did.", selector, ls)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 29.9K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     * Pat Fisher, Mike Judd.
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/test/tck/JSR166TestCase.java?revision=1.90
     * (We have made some trivial local modifications (commented out
     * uncompilable code).)
     */
    
    package com.google.common.util.concurrent;
    
    import static java.util.concurrent.TimeUnit.MILLISECONDS;
    import static java.util.concurrent.TimeUnit.NANOSECONDS;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. cmd/common-main.go

    	envEntry = strings.TrimSpace(envEntry)
    	if envEntry == "" {
    		// Skip all empty lines
    		return envKV{
    			Skip: true,
    		}, nil
    	}
    	if strings.HasPrefix(envEntry, "#") {
    		// Skip commented lines
    		return envKV{
    			Skip: true,
    		}, nil
    	}
    	envTokens := strings.SplitN(strings.TrimSpace(strings.TrimPrefix(envEntry, "export")), config.EnvSeparator, 2)
    	if len(envTokens) != 2 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1/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: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/runtime/asm_386.s

    	MOVL	CX, SP
    	MOVL	AX, ret+8(FP)
    	RET
    
    // cgocallback(fn, frame unsafe.Pointer, ctxt uintptr)
    // See cgocall.go for more details.
    TEXT ·cgocallback(SB),NOSPLIT,$12-12  // Frame size must match commented places below
    	NO_LOCAL_POINTERS
    
    	// Skip cgocallbackg, just dropm when fn is nil, and frame is the saved g.
    	// It is used to dropm while thread is exiting.
    	MOVL	fn+0(FP), AX
    	CMPL	AX, $0
    	JNE	loadg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top