Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,571 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/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)
  3. 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)
  4. 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)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    }
    
    // rotate checks to see whether the file f needs to be rotated,
    // meaning to start a new counter file with a different date in the name.
    // rotate is also used to open the file initially, meaning f.current can be nil.
    // In general rotate should be called just once for each file.
    // rotate will arrange a timer to call itself again when necessary.
    func (f *file) rotate() {
    	expire, cleanup := f.rotate1()
    	cleanup()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. hack/verify-file-sizes.sh

            case "$tree" in
                w/-text)
                    # Only binary files have a size limit.
                    size="$(wc -c < "$file")"
                    if [ "${size}" -gt "$maxsize" ] &&
                           ! kube::util::array_contains "$file" "${allowlist[@]}"; then
                        echo    "$file is too large ($size bytes)"
                    fi
                    ;;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 19:39:50 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. src/os/file.go

    	}
    	return nil
    }
    
    // Open opens the named file for reading. If successful, methods on
    // the returned file can be used for reading; the associated file
    // descriptor has mode O_RDONLY.
    // If there is an error, it will be of type *PathError.
    func Open(name string) (*File, error) {
    	return OpenFile(name, O_RDONLY, 0)
    }
    
    // Create creates or truncates the named file. If the file already exists,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  8. pkg/file/file.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package file
    
    import (
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    	"io/fs"
    	"os"
    	"path/filepath"
    )
    
    // AtomicCopy copies file by reading the file then writing atomically into the target directory
    func AtomicCopy(srcFilepath, targetDir, targetFilename string) error {
    	in, err := os.Open(srcFilepath)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 21:42:29 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

            expect:
            reporter.buildFinished(result(exception))
            output.value == """
    {failure}FAILURE: {normal}{failure}Build failed with an exception.{normal}
    
    * Where:
    $LOCATION line: 42
    
    * What went wrong:
    $MESSAGE
    {info}> {normal}$FAILURE
    
    * Try:
    $INFO_OR_DEBUG
    $SCAN
    $GET_HELP
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

        if (failed(input_i8_to_f32_convert_op)) return failure();
    
        if (!IsI8ToF32Cast(*input_i8_to_f32_convert_op)) {
          LLVM_DEBUG(llvm::dbgs() << "Failed to match input_i8_to_f32_convert_op. "
                                     "It should be a i8->f32 cast.\n");
          return failure();
        }
    
        if (failed(MatchFilter(op.getOperand(1)))) return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
Back to top