Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 7,227 for failme (0.19 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. pkg/test/failer.go

    	"sync"
    	"testing"
    
    	"istio.io/istio/pkg/log"
    )
    
    var (
    	_ Failer = &testing.T{}
    	_ Failer = &testing.B{}
    	_ Failer = &errorWrapper{}
    )
    
    // Failer is an interface to be provided to test functions of the form XXXOrFail. This is a
    // substitute for testing.TB, which cannot be implemented outside of the testing
    // package.
    type Failer interface {
    	Fail()
    	FailNow()
    	Fatal(args ...any)
    	Fatalf(format string, args ...any)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 15 23:58:50 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/test/util/file/file.go

    	out, err = homedir.Expand(out)
    	if err != nil {
    		return "", err
    	}
    
    	// Verify that the file exists.
    	if _, err := os.Stat(out); os.IsNotExist(err) {
    		return "", fmt.Errorf("failed normalizing file %s: %v", originalPath, err)
    	}
    
    	return out, nil
    }
    
    // ReadTarFile reads a tar compress file from the embedded
    func ReadTarFile(filePath string) (string, error) {
    	b, err := os.ReadFile(filePath)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 17 02:22:22 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. hack/boilerplate/test/fail.py

    #!/usr/bin/env python3
    
    # Copyright 2015 The Kubernetes Authors.
    #
    # failed
    #
    # Licensed under the Apache License, Version 2.0 (the "License");
    # you may not use this file except in compliance with the License.
    # You may obtain a copy of the License at
    #
    #     http://www.apache.org/licenses/LICENSE-2.0
    #
    # Unless required by applicable law or agreed to in writing, software
    # distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 12 03:20:41 UTC 2023
    - 622 bytes
    - Viewed (0)
Back to top