Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 524 for unprocessed (0.25 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    	// Partition addresses into two sets: ones with a known object file, and ones without.
    	var addrs, unprocessed []uint64
    	for addr, info := range addrMap {
    		if info.obj != nil {
    			addrs = append(addrs, addr)
    		} else {
    			unprocessed = append(unprocessed, addr)
    		}
    	}
    	sort.Slice(addrs, func(i, j int) bool { return addrs[i] < addrs[j] })
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  2. src/internal/trace/base.go

    // shrink this in the future.
    const maxArgs = 6
    
    // timedEventArgs is an array that is able to hold the arguments for any
    // timed event.
    type timedEventArgs [maxArgs - 1]uint64
    
    // baseEvent is the basic unprocessed event. This serves as a common
    // fundamental data structure across.
    type baseEvent struct {
    	typ  event.Type
    	time Time
    	args timedEventArgs
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/testing/DaemonsEventSequence.groovy

        private DaemonsState lastDaemonsState = new DaemonsState(0, 0)
        private final Map<Long, DaemonsState> pastStateChanges = new LinkedHashMap<Long, DaemonsState>() // processed changes
        private final Queue<Holder> changeQueue = new LinkedBlockingQueue() // unprocessed changes
    
        private final ManagedExecutor executor
        private boolean stop = false
    
        private AssertionError timeoutError
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. src/internal/trace/batch.go

    // license that can be found in the LICENSE file.
    
    package trace
    
    import (
    	"bytes"
    	"encoding/binary"
    	"fmt"
    	"io"
    
    	"internal/trace/event"
    	"internal/trace/event/go122"
    )
    
    // timestamp is an unprocessed timestamp.
    type timestamp uint64
    
    // batch represents a batch of trace events.
    // It is unparsed except for its header.
    type batch struct {
    	m    ThreadID
    	time timestamp
    	data []byte
    	exp  event.Experiment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/critical.go

    				b.removePhiArg(phi, i)
    
    				// splitting occasionally leads to a phi having
    				// a single argument (occurs with -N)
    				// Don't increment i in this case because we moved
    				// an unprocessed predecessor down into slot i.
    			} else {
    				// splice it in
    				p.Succs[pi] = Edge{d, 0}
    				b.Preds[i] = Edge{d, 0}
    				d.Preds = append(d.Preds, Edge{p, pi})
    				d.Succs = append(d.Succs, Edge{b, i})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 21:40:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/MultipartReader.kt

     *
     * multipartReader.use {
     *   while (true) {
     *     val part = multipartReader.nextPart() ?: break
     *     process(part.headers, part.body)
     *   }
     * }
     * ```
     *
     * Note that [nextPart] will skip any unprocessed data from the preceding part. If the preceding
     * part is particularly large or if the underlying source is particularly slow, the [nextPart] call
     * may be slow!
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. pkg/proxy/healthcheck/proxier_health.go

    			// the proxier is healthy while it's starting up
    			// or the proxier is fully synced.
    			continue
    		}
    
    		if currentTime.Sub(hs.oldestPendingQueuedMap[ipFamily]) < hs.healthTimeout {
    			// there's an unprocessed update queued for this proxier, but it's not late yet.
    			continue
    		}
    		return false, proxierLastUpdated
    	}
    	return true, lastUpdated
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 10:41:18 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. pkg/volume/util/resize_util.go

    			} else {
    				newConditions = append(newConditions, condition)
    			}
    			newCondition.processed = true
    		}
    	}
    
    	// append all unprocessed conditions
    	for _, newCondition := range resizeConditionMap {
    		if !newCondition.processed {
    			newConditions = append(newConditions, newCondition.condition)
    		}
    	}
    	pvc.Status.Conditions = newConditions
    	return pvc
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:30:35 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/AggregatingIncrementalAnnotationProcessingIntegrationTest.groovy

            def a = javaInPackage processedPackage, "class A {}"
            javaInPackage processedPackage, "class B {}"
            annotatedPackageInfo(processedPackage, 'com.my.processor.Configuration')
            javaInPackage 'com.unprocessed', "class Unrelated {}"
    
            outputs.snapshot { run "compileJava" }
    
            when:
            a.text = "class A { public void foo() {} }"
            run "compileJava"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Interpreter.kt

     * a script body? etc), target object and context (top-level or not).
     *
     * The specialized program is then cached via a cheap cache key based on the original,
     * unprocessed contents of the script, the target object type and parent `ClassLoader`.
     *
     * Because each program is specialized to a given script structure, a lot of work is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 21.1K bytes
    - Viewed (0)
Back to top