Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,964 for failme (0.1 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	timestamp := time.Now()
    	metrics.Register()
    	total := 60
    	queueableNum := 50
    	queueable, failme := "queueable", "failme"
    	// First 50 Pods are queueable.
    	pInfos := makeQueuedPodInfos(queueableNum, "x", queueable, timestamp)
    	// The last 10 Pods are not queueable.
    	gated := makeQueuedPodInfos(total-queueableNum, "y", failme, timestamp)
    	// Manually mark them as gated=true.
    	for _, pInfo := range gated {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dataflowActions/playSound/tests/failure.out

    Playing sound sad-trombone.mp3
    
    FAILURE: Build failed with an exception.
    
    * What went wrong:
    Execution failed for task ':failure'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 150 bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/Failure.java

         * Returns a long description of the failure. For example, a stack trace.
         *
         * @return a long description of the failure
         */
        @Nullable
        String getDescription();
    
        /**
         * Returns the underlying causes for this failure, if any.
         *
         * @return the causes for this failure. Returns an empty list if this failure has no causes.
         */
        List<? extends Failure> getCauses();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/ide/problems-api/src/main/java/org/gradle/internal/problems/failure/Failure.java

        /**
         * Failures suppressed in the original exception.
         */
        List<Failure> getSuppressed();
    
        /**
         * List of causes for this failure.
         * <p>
         * There could be more than one cause if the failure was derived from a {@link org.gradle.internal.exceptions.MultiCauseException}.
         */
        List<Failure> getCauses();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Failure.java

     */
    package org.gradle.launcher.daemon.protocol;
    
    /**
     * The base of all kinds of failure results.
     * <p>
     * The “value” of this result will be an exception that represents the failure. It may not be {@code null}.
     */
    public class Failure extends Result<Throwable> {
        
        public Failure(Throwable value) {
            super(assertNotNull(value));
        }
        
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/Failure.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.server.http;
    
    interface Failure extends ResponseProducer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 711 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dataflowActions/playSound/tests/failure.sample.conf

    executable: gradle
    args: failure
    flags: --quiet
    expected-output-file: failure.out
    expect-failure: true
    allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 163 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/configurationCache/problemsGroovy/tests/fail.out

    Configuration cache problems found in this build.
    
    1 problem was found storing the configuration cache.
    - Build file 'build.gradle': line 6: invocation of 'Task.project' at execution time is unsupported.
      See https://docs.gradle.org/0.0.0/userguide/configuration_cache.html#config_cache:requirements:use_project_during_execution
    
    See the complete report at file:///home/user/gradle/samples/build/reports/configuration-cache/<hash>/configuration-cache-report.html
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 825 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/configurationCache/problemsKotlin/tests/fail.out

    > Run with --info or --debug option to get more log output.
    > Run with --scan to get full insights.
    > Get more help at https://help.gradle.org.
    
    BUILD FAILED in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 845 bytes
    - Viewed (0)
  10. src/debug/pe/file.go

    	closer io.Closer
    }
    
    // Open opens the named file using [os.Open] and prepares it for use as a PE binary.
    func Open(name string) (*File, error) {
    	f, err := os.Open(name)
    	if err != nil {
    		return nil, err
    	}
    	ff, err := NewFile(f)
    	if err != nil {
    		f.Close()
    		return nil, err
    	}
    	ff.closer = f
    	return ff, nil
    }
    
    // Close closes the [File].
    // If the [File] was created using [NewFile] directly instead of [Open],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
Back to top