Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 276 for whereIs (0.12 sec)

  1. src/cmd/trace/gstate.go

    // to blockedSyscallEnd -- both must be called when a syscall ends and that syscall
    // blocked. They're kept separate because syscallEnd indicates the point at which the
    // goroutine is no longer executing on the resource (e.g. a proc) whereas blockedSyscallEnd
    // is the point at which the goroutine actually exited the syscall regardless of which
    // resource that happened on.
    func (gs *gState[R]) syscallEnd(ts trace.Time, blocked bool, ctx *traceContext) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. docs/en/docs/deployment/docker.md

    Downloading and installing the package dependencies **could take minutes**, but using the **cache** would **take seconds** at most.
    
    And as you would be building the container image again and again during development to check that your code changes are working, there's a lot of accumulated time this would save.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. docs/en/docs/python-types.md

    In Python 3.6 and above (including Python 3.10) you can use the `Union` type from `typing` and put inside the square brackets the possible types to accept.
    
    In Python 3.10 there's also a **new syntax** where you can put the possible types separated by a <abbr title='also called "bitwise or operator", but that meaning is not relevant here'>vertical bar (`|`)</abbr>.
    
    === "Python 3.10+"
    
        ```Python hl_lines="1"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

            if (matches.size() > 1) {
                // there's an ambiguity, but we may have several variants matching the requested capabilities.
                // Here we're going to check if in the candidates, there's a single one _strictly_ matching the requested capabilities.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractLineEndingSensitivityIntegrationSpec.groovy

        public static final String TRANSFORM_EXECUTED = 'Transform producer.zip (project :producer) with AugmentTransform'
        public static final String TEXT_WITH_LINE_ENDINGS = "\nhere's a line\nhere's another line\n\n"
    
        abstract String getStatusForReusedOutput()
    
        abstract void execute(String... tasks)
    
        abstract void cleanWorkspace()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. src/go/types/predicates.go

    // isTyped reports whether t is typed; i.e., not an untyped
    // constant or boolean.
    // Safe to call from types that are not fully set up.
    func isTyped(t Type) bool {
    	// Alias and named types cannot denote untyped types
    	// so there's no need to call Unalias or under, below.
    	b, _ := t.(*Basic)
    	return b == nil || b.info&IsUntyped == 0
    }
    
    // isUntyped(t) is the same as !isTyped(t).
    // Safe to call from types that are not fully set up.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ir/func.go

    // with the given type.
    //
    // fpos the position used for the underlying ODCLFUNC and ONAME,
    // whereas cpos is the position used for the OCLOSURE. They're
    // separate because in the presence of inlining, the OCLOSURE node
    // should have an inline-adjusted position, whereas the ODCLFUNC and
    // ONAME must not.
    //
    // outerfn is the enclosing function, if any. The returned function is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. src/runtime/runtime.go

    // and should be avoided when possible. Use only for durations, where a tiny error term isn't going
    // to make a meaningful difference in even a 1ms duration. If an accurate timestamp is needed,
    // use nanotime instead. (The entire Windows platform is a broad exception to this rule, where nanotime
    // produces timestamps on such a coarse granularity that the error from this conversion is actually
    // preferable.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/testing/NullPointerTester.java

           * behavior. So there's no sense in making all subclass authors exclude the method from any
           * NullPointerTester tests that they have.
           */
          ignoredMembers.add(Converter.class.getMethod("apply", Object.class));
        } catch (NoSuchMethodException shouldBeImpossible) {
          // OK, fine: If it doesn't exist, then there's chance that we're going to be asked to test it.
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/predicates.go

    // isTyped reports whether t is typed; i.e., not an untyped
    // constant or boolean.
    // Safe to call from types that are not fully set up.
    func isTyped(t Type) bool {
    	// Alias and named types cannot denote untyped types
    	// so there's no need to call Unalias or under, below.
    	b, _ := t.(*Basic)
    	return b == nil || b.info&IsUntyped == 0
    }
    
    // isUntyped(t) is the same as !isTyped(t).
    // Safe to call from types that are not fully set up.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top