Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,242 for began (0.08 sec)

  1. src/internal/fuzz/worker.go

    			return CorpusEntry{}, minimizeResponse{}, errSharedMemClosed
    		}
    
    		if callErr != nil {
    			retErr = callErr
    			if !mem.header().rawInMem {
    				// An unrecoverable error occurred before minimization began.
    				return entryIn, minimizeResponse{}, retErr
    			}
    			// An unrecoverable error occurred during minimization. mem now
    			// holds the raw, unmarshaled bytes of entryIn.Values[i] that
    			// caused the error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. src/testdata/Isaac.Newton-Opticks.txt

    the first Fringe began to appear and look brighter than the rest of the
    Light at the distance of less than a quarter of an Inch from the Hair,
    and the dark Line or Shadow between that and the second Fringe began to
    appear at a less distance from the Hair than that of the third part of
    an Inch. The second Fringe began to appear at a distance from the Hair
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  3. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    a smooth white Body, and that Body was removed farther and farther from the Hair, the first Fringe began to appear and look brighter than the rest of the Light at the distance of less than a quarter of an Inch from the Hair, and the dark Line or Shadow between that and the second Fringe began to appear at a less distance from the Hair than that of the third part of an Inch. The second Fringe began to appear at a distance from the Hair of less than half an Inch, and the Shadow between that and the...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    	// Handle tasks. Tasks are interesting because:
    	// - There's no Begin event required to reference a task.
    	// - End for a particular task ID can appear multiple times.
    	// As a result, there's very little to validate. The only
    	// thing we have to be sure of is that a task didn't begin
    	// after it had already begun. Task IDs are allowed to be
    	// reused, so we don't care about a Begin after an End.
    	id := TaskID(ev.args[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    	stwprocs, maxprocs                 int32
    	tSweepTerm, tMark, tMarkTerm, tEnd int64 // nanotime() of phase start
    
    	// pauseNS is the total STW time this cycle, measured as the time between
    	// when stopping began (just before trying to stop Ps) and just after the
    	// world started again.
    	pauseNS int64
    
    	// debug.gctrace heap sizes for this cycle.
    	heap0, heap1, heap2 uint64
    
    	// Cumulative estimated CPU usage.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/Bean.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot.impl
    
    class Bean implements Serializable {
        String prop
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 715 bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers.go

    			klog.V(4).InfoS("Pod is marked for graceful deletion, begin teardown", "pod", klog.KRef(ns, name), "podUID", uid, "updateType", options.UpdateType)
    			status.deleted = true
    			status.terminatingAt = now
    			becameTerminating = true
    		case pod.Status.Phase == v1.PodFailed, pod.Status.Phase == v1.PodSucceeded:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    	// freeindex is the slot index between 0 and nelems at which to begin scanning
    	// for the next free object in this span.
    	// Each allocation scans allocBits starting at freeindex until it encounters a 0
    	// indicating a free object. freeindex is then adjusted so that subsequent scans begin
    	// just past the newly discovered free object.
    	//
    	// If freeindex == nelem, this span has no free objects.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass_test.cc

                       .WithXlaCluster("cluster_0");
    
      Output input = ops::Placeholder(root.WithOpName("input"), DT_FLOAT);
      Output begin = ops::Placeholder(root.WithOpName("begin"), DT_INT32);
      Output size = ops::Const(root.WithOpName("size"), {-1, 500});
      Output slice = ops::Slice(root.WithOpName("slice"), input, begin, size);
    
      std::unique_ptr<Graph> result;
      TF_ASSERT_OK(IncreaseDynamismForAutoJit(root, &result));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensibleDynamicObjectTest.java

        @Test
        public void hasPropertiesDefinedByClass() {
            Bean bean = new Bean();
            assertTrue(bean.hasProperty("readWriteProperty"));
            assertTrue(bean.hasProperty("readOnlyProperty"));
            assertTrue(bean.hasProperty("writeOnlyProperty"));
        }
    
        @Test
        public void canGetAndSetClassProperty() {
            Bean bean = new Bean();
            bean.setReadWriteProperty("value");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 33.7K bytes
    - Viewed (0)
Back to top