Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for absorbed (0.17 sec)

  1. src/vendor/golang.org/x/crypto/sha3/doc.go

    // to "rate" bytes of the input are XORed into the sponge's state. The sponge
    // is then "full" and the permutation is applied to "empty" it. This process is
    // repeated until all the input has been "absorbed". The input is then padded.
    // The digest is "squeezed" from the sponge in the same way, except that output
    // is copied out instead of input being XORed in.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/encoding/gob/decoder.go

    			break
    		}
    		// When decoding an interface, after a type there may be a
    		// DelimitedValue still in the buffer. Skip its count.
    		// (Alternatively, the buffer is empty and the byte count
    		// will be absorbed by recvMessage.)
    		if dec.buf.Len() > 0 {
    			if !isInterface {
    				dec.err = errors.New("extra data in buffer")
    				break
    			}
    			dec.nextUint()
    		}
    		firstMessage = false
    	}
    	return -1
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/ExecHandleRunner.java

            this.processBuilderFactory = new ProcessBuilderFactory();
        }
    
        public void abortProcess() {
            lock.lock();
            try {
                if (aborted) {
                    return;
                }
                aborted = true;
                if (process != null) {
                    streamsHandler.disconnect();
                    LOGGER.debug("Abort requested. Destroying process: {}.", execHandle.getDisplayName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. Jenkinsfile

    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
    - 8.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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