Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for intKind (0.34 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)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Gradle will warn if a project is added to the build where the associated `projectDir` does not exist or is not writable.
    Starting with version 9.0, Gradle will not run builds if a project directory is missing or read-only.
    If you intend to dynamically synthesize projects make sure to create directories for them as well:
    
    =====
    [.multi-language-sample]
    ======
    .settings.gradle.kts
    [source,kotlin]
    ----
    include("project-without-directory")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. src/net/http/server.go

    	// asked for it or not.
    	//
    	// We probably do want to skip reusing the connection in most cases,
    	// however. If the client is offering a large request body that we
    	// don't intend to use, then it's better to close the connection
    	// than to read the body. For now, assume that if we're sending
    	// headers, the handler is done reading the body and we should
    	// drop the connection if we haven't seen EOF.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. CREDITS

    of this software dedicate any and all copyright interest in the
    software to the public domain. We make this dedication for the benefit
    of the public at large and to the detriment of our heirs and
    successors. We intend this dedication to be an overt act of
    relinquishment in perpetuity of all present and future rights to this
    software under copyright law.
    
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
Back to top