Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 154 for absorbed (0.18 sec)

  1. Jenkinsfile.s390x

    parallel(runITsTasks)
    
    // JENKINS-34376 seems to make it hard to detect the aborted builds
    } catch (org.jenkinsci.plugins.workflow.steps.FlowInterruptedException e) {
        echo "[FAILURE-002] FlowInterruptedException ${e}"
        // this ambiguous condition means a user probably aborted
        if (e.causes.size() == 0) {
            currentBuild.result = "ABORTED"
        } else {
            currentBuild.result = "FAILURE"
        }
        throw e
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/sha3/sha3.go

    	copyOut(d, d.storage[:d.rate])
    }
    
    // Write absorbs more data into the hash's state. It panics if any
    // output has already been read.
    func (d *state) Write(p []byte) (written int, err error) {
    	if d.state != spongeAbsorbing {
    		panic("sha3: Write after Read")
    	}
    	written = len(p)
    
    	for len(p) > 0 {
    		if d.n == 0 && len(p) >= d.rate {
    			// The fast path; absorb a full "rate" bytes of input and apply the permutation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. pkg/util/grpc/codes.go

    	"ALREADY_EXISTS":      codes.AlreadyExists,
    	"PERMISSION_DENIED":   codes.PermissionDenied,
    	"RESOURCE_EXHAUSTED":  codes.ResourceExhausted,
    	"FAILED_PRECONDITION": codes.FailedPrecondition,
    	"ABORTED":             codes.Aborted,
    	"OUT_OF_RANGE":        codes.OutOfRange,
    	"UNIMPLEMENTED":       codes.Unimplemented,
    	"INTERNAL":            codes.Internal,
    	"UNAVAILABLE":         codes.Unavailable,
    	"DATA_LOSS":           codes.DataLoss,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 06 16:50:02 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

        return tensorflow::errors::Aborted(
            "Failed to apply MLIR pass manager CL options.");
      }
    
      auto error_handler = [&](const Twine& msg) {
        emitError(UnknownLoc::get(pm.getContext())) << msg;
        return failure();
      };
      if (failed(pass_pipeline.addToPipeline(pm, error_handler))) {
        return tensorflow::errors::Aborted("Failed to add passes to pipeline.");
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/MessageHubBackedObjectConnection.java

        private List<SerializerRegistry> paramSerializers = new ArrayList<SerializerRegistry>();
        private Set<ClassLoader> methodParamClassLoaders = new HashSet<ClassLoader>();
        private volatile boolean aborted;
    
        public MessageHubBackedObjectConnection(ExecutorFactory executorFactory, ConnectCompletion completion) {
            Action<Throwable> errorHandler = new Action<Throwable>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/process/internal/DefaultExecHandleSpec.groovy

        }
    
        void "can abort after process has been aborted"() {
            given:
            def execHandle = handle().args(args(SlowApp.class)).build()
            execHandle.start()
            execHandle.abort()
    
            when:
            execHandle.abort()
    
            then:
            execHandle.state == ExecHandleState.ABORTED
    
            and:
            execHandle.waitForFinish().exitValue != 0
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 03:44:52 UTC 2021
    - 14.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/mlir_graph_optimization_pass_test.cc

              flib_.get(), &control_ret_node_names_, &control_rets_updated_),
          Status(absl::StatusCode::kAborted, "aborted"));
      verifyGraph(original_graph_def);
      verifyCounters();
    }
    
    TEST_F(MlirGraphOptimizationPassTest, OptimizationPassFailsDisabledFallback) {
      Init(Status(absl::StatusCode::kAborted, "aborted"),
           {MlirOptimizationPassState::Disabled,
            MlirOptimizationPassState::FallbackEnabled});
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 08:25:30 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcess.java

        private ObjectConnection connection;
        private ConnectionAcceptor acceptor;
        private ExecHandle execHandle;
        private boolean running;
        private boolean aborted;
        private Throwable processFailure;
        private final long connectTimeout;
        private final JvmMemoryStatus jvmMemoryStatus;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:39:33 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandle.java

    /**
     * Default implementation for the ExecHandle interface.
     *
     * <h3>State flows</h3>
     *
     * <ul>
     *   <li>INIT -&gt; STARTED -&gt; [SUCCEEDED|FAILED|ABORTED|DETACHED]</li>
     *   <li>INIT -&gt; FAILED</li>
     *   <li>INIT -&gt; STARTED -&gt; DETACHED -&gt; ABORTED</li>
     * </ul>
     *
     * State is controlled on all control methods:
     * <ul>
     * <li>{@link #start()} allowed when state is INIT</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. pkg/envoy/agent.go

    			a.abortCh <- errAbort
    		}
    	}
    	status := <-a.statusCh
    	if status.err == errAbort {
    		log.Infof("Envoy aborted normally")
    	} else {
    		log.Warnf("Envoy aborted abnormally")
    	}
    	log.Warnf("Aborted proxy instance")
    }
    
    func (a *Agent) activeProxyConnections() (int, error) {
    	adminHost := net.JoinHostPort(a.localhost, strconv.Itoa(a.adminPort))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top