Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for intKind (0.13 sec)

  1. src/text/template/funcs.go

    		truth := false
    		if k1 != k2 {
    			// Special case: Can compare integer values regardless of type's sign.
    			switch {
    			case k1 == intKind && k2 == uintKind:
    				truth = arg1.Int() >= 0 && uint64(arg1.Int()) == arg.Uint()
    			case k1 == uintKind && k2 == intKind:
    				truth = arg.Int() >= 0 && arg1.Uint() == uint64(arg.Int())
    			default:
    				if arg1.IsValid() && arg.IsValid() {
    					return false, errBadComparison
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

            then:
            //ME: This is not a foolproof way of checking that additional jars have not been accidentally added to the distribution
            //but should be good enough. If this test fails for you and you did not intend to add new jars to the distribution
            //then there is something to be fixed. If you intentionally added new jars to the distribution and this is now failing please
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. istioctl/pkg/waypoint/waypoint.go

    			// If they don't, the user will be warned and be presented with the command to label their namespace as ambient if they
    			// choose to do so.
    			//
    			// NOTE: This is a warning and not an error because the user may not intend to label their namespace as ambient.
    			//
    			// e.g. Users are handling ambient redirection per workload rather than at the namespace level.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. pilot/pkg/model/gateway.go

    				// This has pros and cons; we don't allow merging of routes when it would be desirable, but
    				// we also avoid accidentally merging routes when we didn't intend to. While neither option is great,
    				// picking the first one here preserves backwards compatibility.
    				return []uint32{w.Port.TargetPort}
    			}
    			ports.Insert(w.Port.TargetPort)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. src/runtime/traceruntime.go

    	// syscall context we're always stealing a P for ourselves, we may have not wired it up yet (so
    	// it wouldn't be visible to eventWriter) or we may not even intend to wire it up to ourselves
    	// at all (e.g. entersyscall_gcwait).
    	if !pp.trace.statusWasTraced(tl.gen) && pp.trace.acquireStatus(tl.gen) {
    		// Careful: don't use the event writer. We never want status or in-progress events
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/buildid.go

    // exception.
    //
    // The build ID serves two primary purposes.
    //
    // 1. The action ID half allows installed packages and binaries to serve as
    // one-element cache entries. If we intend to build math.a with a given
    // set of inputs summarized in the action ID, and the installed math.a already
    // has that action ID, we can reuse the installed math.a instead of rebuilding it.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top