Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 263 for gather (0.27 sec)

  1. src/cmd/compile/internal/types/type.go

    // setFields sets struct type t's fields to fields.
    func (t *Type) setFields(fields []*Field) {
    	// If we've calculated the width of t before,
    	// then some other type such as a function signature
    	// might now have the wrong type.
    	// Rather than try to track and invalidate those,
    	// enforce that SetFields cannot be called once
    	// t's width has been calculated.
    	if t.widthCalculated() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    Users commonly want to run integration tests after the unit tests, because they are often slower to run and you want the build to fail early on the unit tests rather than later on the integration tests. That's why the above example adds a `shouldRunAfter()` declaration. This is preferred over `mustRunAfter()` so that Gradle has more flexibility in executing the build in parallel.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

                   * with two implementations, one that contains causeless Cancellation instances and
                   * the other of which creates new Cancellation instances each time it's called? Yet
                   * another alternative is to fill in a non-null value for each of the fields no matter
                   * what and to just not use it if !GENERATE_CANCELLATION_CAUSES.
                   */
                  : requireNonNull(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  4. guava/src/com/google/common/util/concurrent/AbstractFuture.java

                   * with two implementations, one that contains causeless Cancellation instances and
                   * the other of which creates new Cancellation instances each time it's called? Yet
                   * another alternative is to fill in a non-null value for each of the fields no matter
                   * what and to just not use it if !GENERATE_CANCELLATION_CAUSES.
                   */
                  : requireNonNull(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                it.assertHasCause("Failed to transform a.jar (project :a) to match attributes {artifactType=jar, color=green}.")
                // TODO - should collect all failures rather than stopping on first failure
            }
    
            when:
            configurationCacheFails(":resolve")
    
            then:
            configurationCache.assertStateLoaded()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    // ArchSyms holds a number of architecture specific symbols used during
    // relocation.  Rather than allowing them universal access to all symbols,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    	p.want(_Semi)
    
    	// don't bother continuing if package clause has errors
    	if p.first != nil {
    		return nil
    	}
    
    	// Accept import declarations anywhere for error tolerance, but complain.
    	// { ( ImportDecl | TopLevelDecl ) ";" }
    	prev := _Import
    	for p.tok != _EOF {
    		if p.tok == _Import && prev != _Import {
    			p.syntaxError("imports must appear before other declarations")
    		}
    		prev = p.tok
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                String line = currentColor + lines[i];
    
                // look for last ANSI escape sequence to check if nextColor
                Matcher matcher = LAST_ANSI_SEQUENCE.matcher(line);
                String nextColor = "";
                if (matcher.find()) {
                    nextColor = matcher.group(1);
                    if (ANSI_RESET.equals(nextColor)) {
                        // last ANSI escape code is reset: no next color
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/expr.go

    				}
    				t, _, _ := check.implicitTypeAndValue(x, u)
    				return t != nil
    			}) {
    				return nil, nil, InvalidUntypedConversion
    			}
    			break
    		}
    		// Update operand types to the default type rather than the target
    		// (interface) type: values must have concrete dynamic types.
    		// Untyped nil was handled upfront.
    		if !u.Empty() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  10. istioctl/pkg/describe/describe.go

    					if dr == nil {
    						// Don't bother giving the match conditions, the problem is that there are unknowns in the VirtualService
    						mismatchNotes = append(mismatchNotes, fmt.Sprintf("Warning: Route to subset %s but NO DESTINATION RULE defining subsets!", dest.Destination.Subset))
    					} else {
    						// Don't bother giving the match conditions, the problem is that there are unknowns in the VirtualService
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top