Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 324 for startm (0.29 sec)

  1. pkg/controller/history/controller_history_test.go

    		client := fake.NewSimpleClientset()
    		informerFactory := informers.NewSharedInformerFactory(client, controller.NoResyncPeriodFunc())
    
    		stop := make(chan struct{})
    		defer close(stop)
    		informerFactory.Start(stop)
    		informer := informerFactory.Apps().V1().ControllerRevisions()
    		informerFactory.WaitForCacheSync(stop)
    		for i := range test.revisions {
    			informer.Informer().GetIndexer().Add(test.revisions[i])
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  2. src/encoding/xml/marshal_test.go

    }
    
    type MyMarshalerTest struct {
    }
    
    var _ Marshaler = (*MyMarshalerTest)(nil)
    
    func (m *MyMarshalerTest) MarshalXML(e *Encoder, start StartElement) error {
    	e.EncodeToken(start)
    	e.EncodeToken(CharData([]byte("hello world")))
    	e.EncodeToken(EndElement{start.Name})
    	return nil
    }
    
    type MyMarshalerAttrTest struct {
    }
    
    var _ MarshalerAttr = (*MyMarshalerAttrTest)(nil)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller.go

    	if err != nil {
    		generation = nil
    	}
    	template := util.CreatePodTemplate(ds.Spec.Template, generation, hash)
    	// Batch the pod creates. Batch sizes start at SlowStartInitialBatchSize
    	// and double with each successful iteration in a kind of "slow start".
    	// This handles attempts to start large numbers of pods that would
    	// likely all fail with the same error. For example a project with a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. src/html/template/escape_test.go

    			context{state: stateHTMLCmt},
    		},
    		{
    			`<!--->`,
    			context{state: stateHTMLCmt},
    		},
    		{
    			`<!-- foo -->`,
    			context{state: stateText},
    		},
    		{
    			`<script`,
    			context{state: stateTag, element: elementScript},
    		},
    		{
    			`<script `,
    			context{state: stateTag, element: elementScript},
    		},
    		{
    			`<script src="foo.js" `,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    			state.varSlots[i] = state.varSlots[i][:0]
    		}
    	}
    	if cap(state.slotVars) < len(state.slots) {
    		state.slotVars = make([]VarID, len(state.slots))
    	} else {
    		state.slotVars = state.slotVars[:len(state.slots)]
    	}
    
    	if state.partsByVarOffset == nil {
    		state.partsByVarOffset = &partsByVarOffset{}
    	}
    	for varID, n := range state.vars {
    		parts := state.varParts[n]
    		state.varSlots[varID] = parts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis.cc

    // iterations).
    class AndRecurrencePredicate : public Predicate {
     public:
      explicit AndRecurrencePredicate(int64_t id, Predicate* start, Predicate* step,
                                      std::vector<string> frame)
          : Predicate(id), operands_({start, step}), frame_(std::move(frame)) {}
    
      Predicate* start() const { return operands_[0]; }
      Predicate* step() const { return operands_[1]; }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. internal/s3select/select_test.go

            </JSON>
        </OutputSerialization>
        <RequestProgress>
            <Enabled>FALSE</Enabled>
        </RequestProgress>
    	<ScanRange><Start>56</Start><End>76</End></ScanRange>
    </SelectObjectContentRequest>`),
    		},
    		{
    			name:  "error-end-before-start",
    			input: testInput,
    			// Since we are doing offset, no headers are used.
    			wantResult: ``,
    			wantErr:    true,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller.go

    	runningOperations goroutinemap.GoRoutineMap
    
    	// For testing only: hook to call before an asynchronous operation starts.
    	// Not used when set to nil.
    	preOperationHook func(operationName string)
    
    	createProvisionedPVRetryCount int
    	createProvisionedPVInterval   time.Duration
    
    	// operationTimestamps caches start timestamp of operations
    	// (currently provision + binding/deletion) for metric recording.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    				maxbg = runtime.NumCPU()
    				break
    			}
    		}
    	}
    
    	started := 0
    	ended := 0
    	var last *distTest
    	for ended < len(worklist) {
    		for started < len(worklist) && started-ended < maxbg {
    			w := worklist[started]
    			started++
    			w.start <- !t.failed || t.keepGoing
    		}
    		w := worklist[ended]
    		dt := w.dt
    		if t.lastHeading != dt.heading {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. src/runtime/mgcpacer.go

    	idleMarkTime atomic.Int64
    
    	// markStartTime is the absolute start time in nanoseconds
    	// that assists and background mark workers started.
    	markStartTime int64
    
    	// dedicatedMarkWorkersNeeded is the number of dedicated mark workers
    	// that need to be started. This is computed at the beginning of each
    	// cycle and decremented as dedicated mark workers get started.
    	dedicatedMarkWorkersNeeded atomic.Int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top