Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 629 for passive (0.2 sec)

  1. subprojects/core/src/main/java/org/gradle/tooling/provider/model/internal/IntermediateToolingModelProvider.java

        /**
         * Fetches models of a given type for the given projects passing a parameter to the underlying builder.
         */
        <T> List<T> getModels(Project requester, List<Project> targets, String modelName, Class<T> modelType, @Nullable Object parameter);
    
        /**
         * Fetches models of a given type for the given projects passing a parameter to the underlying builder.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGProducesOldReportsIntegrationTest.groovy

            file("src/test/java/org/MixedMethodsTest.java") << """package org;
    import org.testng.*;
    import org.testng.annotations.*;
    import static org.testng.Assert.*;
    
    public class MixedMethodsTest {
        @Test public void passing() {
        }
        @Test public void failing() {
            fail("failing!");
        }
    }
    """
            def buildFile = file('build.gradle')
            buildFile << """
    apply plugin: 'java'
    ${mavenCentralRepository()}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java

                    buffer.append(" [");
                    String buildTimeDuration = formatDuration(buildSummary.getTime());
                    int padSize = MAX_PADDED_BUILD_TIME_DURATION_LENGTH - buildTimeDuration.length();
                    if (padSize > 0) {
                        buffer.append(chars(' ', padSize));
                    }
                    buffer.append(buildTimeDuration);
                    buffer.append(']');
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/internal/coverage/cfile/testdata/harness.go

    		log.Fatal("expected error passing nil writer for meta emit")
    	} else {
    		got := fmt.Sprintf("%v", err)
    		if !strings.Contains(got, want) {
    			log.Fatalf("emitting meta-data passing nil writer: wanted error containing %q got %q", want, got)
    		}
    	}
    
    	if err := coverage.WriteCounters(bad); err == nil {
    		log.Fatal("expected error passing nil writer for counter emit")
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/optimize-arg-operand-constraint.mlir

    // RUN: tf-opt -tf-optimize %s | FileCheck %s
    
    // Check passing an argument into DefinedByConv2D constraint does not crash.
    
    // CHECK-LABEL: func @main
    func.func @main(%arg0: tensor<1xf32>) -> tensor<1xf32>
    attributes  {tf.entry_function = {inputs = "input", outputs = "output_node"}} {
      %0 = arith.constant dense<2.000000e+00> : tensor<f32>
      %1 = arith.constant dense<1.000000e+00> : tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 719 bytes
    - Viewed (0)
  6. util/print_surefire_reports.sh

    #!/bin/bash
    
    set -eu
    
    # Ignore passing tests.
    files=($(
      grep -e 'failures=.[^0]' -e 'errors=.[^0]' {android/,}*/target/surefire-reports/*.xml -l |
        sed -e 's/TEST-//; s/.xml$//'))
    
    for file in "${files[@]}"; do
      # Dump file-output.txt and file.txt.
      # Use tail to include a filename header before each (and maybe truncate).
      tail -n 9999 "${file}"*.txt
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Sep 29 13:44:26 UTC 2020
    - 366 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/noder/stencil.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file will evolve, since we plan to do a mix of stenciling and passing
    // around dictionaries.
    
    package noder
    
    import (
    	"cmd/compile/internal/base"
    )
    
    func assert(p bool) {
    	base.Assert(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:52:50 UTC 2023
    - 359 bytes
    - Viewed (0)
  8. src/syscall/js/js_js.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The runtime package uses //go:linkname to push the setEventHandler to this
    // package.  To prevent the go tool from passing -complete to the compile tool,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 356 bytes
    - Viewed (0)
  9. test/fixedbugs/bug497.go

    // run
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Gccgo used to miscompile passing a global variable with a
    // zero-sized type to a function.
    
    package main
    
    type T struct {
    	field s
    }
    
    type s struct{}
    
    var X T
    
    func F(_ T, c interface{}) int {
    	return len(c.(string))
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 00:03:45 UTC 2015
    - 452 bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

        /**
         * Sets the value of the property to the given value, replacing whatever value the property already had.
         *
         * <p>
         * This method can also be used to discard the value of the property, by passing it {@code null}. When the
         * value is discarded (or has never been set in the first place), the convention (default value) for this
         * property, if specified, will be used to provide the value instead.
         * </p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top