Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for incremented (0.23 sec)

  1. plugin/pkg/admission/resourcequota/admission_test.go

    		t.Errorf("Expected actions:\n%v\n but got:\n%v\nDifference:\n%v", expectedActionSet, actionSet, expectedActionSet.Difference(actionSet))
    	}
    
    	// verify usage decremented the loadbalancer, and incremented the nodeport, but kept the service the same.
    	decimatedActions := removeListWatch(kubeClient.Actions())
    	lastActionIndex := len(decimatedActions) - 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    	// then the high bit of the inversion will be set,
    	// making it clearly not a valid length (it would be a negative one).
    	//
    	// cx holds the pre-inverted encoding (the packed incremented bytes).
    	cx := uint64(0) // byte-only
    
    	// This stanza (until the blank line) is the "LMS-substring iterator",
    	// described in placeLMS_8_64 above, with one line added to maintain cx.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    // call to this method).  Communication ops are added in both `src` and at
    // `insertion_point` using `compilation_key`, `device_ordinal` and
    // `communication_key_index` which is incremented when used. Communication ops
    // are added only when needed and at the location need.  There are checks to
    // ensure that duplicate communication between device and host is not added.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/cache/cache_test.go

    					cache.nodeTree.numNodes, len(tc.nodes))
    			}
    
    			// Generations are globally unique. We check in our unit tests that they are incremented correctly.
    			expected.Generation = got.info.Generation
    			if diff := cmp.Diff(expected, got.info, cmp.AllowUnexported(framework.NodeInfo{})); diff != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ppc64/ssa.go

    			p.To.Type = obj.TYPE_MEM
    			p.To.Reg = dstReg
    			p.To.Offset = offset + 48
    
    			// increment the src reg for next iteration
    			p = s.Prog(ppc64.AADD)
    			p.Reg = srcReg
    			p.From.Type = obj.TYPE_CONST
    			p.From.Offset = bytesPerLoop
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = srcReg
    
    			// increment the dst reg for next iteration
    			p = s.Prog(ppc64.AADD)
    			p.Reg = dstReg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                // for the initial task...
                // In order to work around that problem, we override the
                // invokeAll method, so that whenever the method is called,
                // the pool core size will be incremented before submitting
                // all the tasks, then the thread will block waiting for all
                // those subtasks to finish.
                // This ensures the number of running workers is no more than
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  7. pkg/controller/history/controller_history_test.go

    			if created.Name != expectedName {
    				t.Errorf("%s: on name collision wanted new name %s got %s", test.name, expectedName, created.Name)
    			}
    
    			// Second name collision should have incremented collisionCount to 2
    			_, err = history.CreateControllerRevision(test.parent, test.revision, &collisionCount)
    			if err != nil {
    				t.Errorf("%s: %s", test.name, err)
    			}
    			if collisionCount != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  8. src/runtime/mgc.go

    		lock mutex
    		list gList
    	}
    
    	// cycles is the number of completed GC cycles, where a GC
    	// cycle is sweep termination, mark, mark termination, and
    	// sweep. This differs from memstats.numgc, which is
    	// incremented at mark termination.
    	cycles atomic.Uint32
    
    	// Timing/utilization stats for this cycle.
    	stwprocs, maxprocs                 int32
    	tSweepTerm, tMark, tMarkTerm, tEnd int64 // nanotime() of phase start
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue.go

    	podBackoffQ *heap.Heap
    	// unschedulablePods holds pods that have been tried and determined unschedulable.
    	unschedulablePods *UnschedulablePods
    	// schedulingCycle represents sequence number of scheduling cycle and is incremented
    	// when a pod is popped.
    	schedulingCycle int64
    	// moveRequestCycle caches the sequence number of scheduling cycle when we
    	// received a move request. Unschedulable pods in and before this scheduling
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

                         loop_operands_ip1, /*flag_for_inlining=*/false);
      Value C_ip1 = cond_caller_ip1->getResults().front();
    
      // Build the ReturnOp. This mirrors the construction of the operands with
      // 'i' values incremented.
      std::vector<Value> tmp_body_results;
      Append(tmp_body_results, loop_operands_im1);
      Append(tmp_body_results, loop_operands_i);
      Append(tmp_body_results, loop_operands_ip1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top