Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,350 for whoever (0.17 sec)

  1. src/internal/trace/resources.go

    	// goroutines, which indicates goroutine creation. In this particular case,
    	// a Stack here would refer to the starting stack of the new goroutine, and
    	// an (Event).Stack would refer to the stack trace of whoever created the
    	// goroutine.
    	Stack Stack
    
    	// The actual transition data. Stored in a neutral form so that
    	// we don't need fields for every kind of resource.
    	id       int64
    	oldState uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/typecheck.go

    		return tcUnsafeString(n)
    
    	case ir.OUNSAFESTRINGDATA:
    		n := n.(*ir.UnaryExpr)
    		return tcUnsafeData(n)
    
    	case ir.OITAB:
    		n := n.(*ir.UnaryExpr)
    		return tcITab(n)
    
    	case ir.OIDATA:
    		// Whoever creates the OIDATA node must know a priori the concrete type at that moment,
    		// usually by just having checked the OITAB.
    		n := n.(*ir.UnaryExpr)
    		base.Fatalf("cannot typecheck interface data %v", n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf_test.go

    	// Look for the function of interest ("main.singleInstruction")
    	// and verify that the line table has an entry not just for the
    	// single instruction but also a dummy instruction following it,
    	// so as to test that whoever is emitting the DWARF doesn't
    	// emit an end-sequence op immediately after the last instruction
    	// in the translation unit.
    	//
    	// NB: another way to write this test would have been to run the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    are!  I'm never sure what I'm going to be, from one minute to
    another!  However, I've got back to my right size:  the next
    thing is, to get into that beautiful garden--how IS that to be
    done, I wonder?'  As she said this, she came suddenly upon an
    open place, with a little house in it about four feet high.
    `Whoever lives there,' thought Alice, `it'll never do to come
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    are!  I'm never sure what I'm going to be, from one minute to
    another!  However, I've got back to my right size:  the next
    thing is, to get into that beautiful garden--how IS that to be
    done, I wonder?'  As she said this, she came suddenly upon an
    open place, with a little house in it about four feet high.
    `Whoever lives there,' thought Alice, `it'll never do to come
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/FinalizePropertiesTaskExecuter.java

    /**
     * Notifies the task properties of the start and completion of task execution, so they may finalize and cache whatever state is required to efficiently fingerprint inputs and outputs, apply validation or whatever.
     *
     * Currently, this is applied prior to validation, so that all properties are finalized before their value is validated, however we should finalize and validate any property whose value is used to finalize the value of another property.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 16 18:04:59 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/component_capabilities.adoc

    - "give me a scripting engine"
    - "give me a scripting engine that supports Groovy"
    
    By modeling _capabilities_, the dependency management engine can be smarter and tell you whenever you have _incompatible capabilities_ in a dependency graph, or ask you to choose whenever different modules in a graph provide the same _capability_.
    
    [[sec:declaring-capabilities-external-modules]]
    == Declaring capabilities for external modules
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/internal/capabilities/ShadowedCapability.java

     * variants: in case of platforms we want to make sure we can select
     * both the platform and library. For this we use different capabilities.
     * However, we still want to make sure we can select the platform component
     * whenever no explicit capability is required. In this case, and only in
     * this case, we use the "shadowed" capability to check.
     * <p>
     * It remains deeply immutable.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 30 16:22:00 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Predicate.java

      /**
       * Indicates whether another object is equal to this predicate.
       *
       * <p>Most implementations will have no reason to override the behavior of {@link Object#equals}.
       * However, an implementation may also choose to return {@code true} whenever {@code object} is a
       * {@link Predicate} that it considers <i>interchangeable</i> with this one. "Interchangeable"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/verification/DependencyVerificationMode.java

     * will use the strict mode, which means that it will verify dependencies
     * and fail <i>as soon as possible</i>, to avoid as much compromising of
     * the builds as possible.
     *
     * There are, however, two additional modes which can be used: the lenient
     * one will collect all errors but only log them to the CLI. This is useful
     * when updating the file and you want to collect as many errors as possible
     * before failing.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 15 19:10:41 UTC 2021
    - 1.6K bytes
    - Viewed (0)
Back to top