Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 220 for endLine (0.52 sec)

  1. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux.go

    		metrics.GracefulShutdownEndTime.Set(0)
    
    		defer func() {
    			endTime := time.Now()
    			err := m.storage.Store(state{
    				StartTime: startTime,
    				EndTime:   endTime,
    			})
    			if err != nil {
    				m.logger.Error(err, "Failed to store graceful shutdown state")
    			}
    			metrics.GracefulShutdownStartTime.Set(timestamp(endTime))
    		}()
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 08:02:40 UTC 2022
    - 15.5K bytes
    - Viewed (0)
  2. src/cmd/trace/gstate.go

    // further events will be processed. This method may leave the gState in
    // an inconsistent state.
    func (gs *gState[R]) finish(ctx *traceContext) {
    	if gs.executing != R(noResource) {
    		gs.syscallEnd(ctx.endTime, false, ctx)
    		gs.stop(ctx.endTime, trace.NoStack, ctx)
    	}
    }
    
    // rangeBegin indicates the start of a special range of time.
    func (gs *gState[R]) rangeBegin(ts trace.Time, name string, stack trace.Stack) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/vcweb/vcweb.go

    // regenerates the repository using a script interpreted by a [script.Engine].
    // The script produces the server's contents for a corresponding root URL and
    // all subdirectories of that URL, which are then cached: subsequent requests
    // for any URL generated by the script will serve the script's previous output
    // until the script is modified.
    //
    // The script engine includes all of the engine's default commands and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestExecutionListener.java

    import org.gradle.internal.id.CompositeIdGenerator;
    import org.gradle.internal.id.IdGenerator;
    import org.gradle.internal.time.Clock;
    import org.junit.platform.engine.TestExecutionResult;
    import org.junit.platform.engine.support.descriptor.ClassSource;
    import org.junit.platform.engine.support.descriptor.MethodSource;
    import org.junit.platform.launcher.TestExecutionListener;
    import org.junit.platform.launcher.TestIdentifier;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:25 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. src/cmd/go/script_test.go

    		t.Cleanup(cancel)
    	}
    
    	env, err := scriptEnv(srv, certFile)
    	if err != nil {
    		t.Fatal(err)
    	}
    	engine := &script.Engine{
    		Conds: scriptConditions(),
    		Cmds:  scriptCommands(quitSignal(), gracePeriod),
    		Quiet: !testing.Verbose(),
    	}
    
    	t.Run("README", func(t *testing.T) {
    		checkScriptReadme(t, engine, env)
    	})
    
    	files, err := filepath.Glob("testdata/script/*.txt")
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/joblog/admin_joblog_details.jsp

                                        <tr>
                                            <th><la:message key="labels.joblog_endTime"/></th>
                                            <td>${f:h(endTime)}<la:hidden property="endTime"/></td>
                                        </tr>
                                        <tr>
                                            <th><la:message key="labels.joblog_scriptType"/></th>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 9.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/html.go

    	// optional spaces, tabs, and up to one line ending, an optional / character, and a > character.”
    	if name, j, ok := parseTagName(s, i+1); ok {
    		switch name {
    		case "pre", "script", "style", "textarea":
    			// Goldmark treats these as starting a new HTMLBlock
    			// and ending the paragraph they appear in.
    			p.corner = true
    		}
    		for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. ci/official/utilities/extract_resultstore_links.py

      previous_end_line = None
      for url, lines in result_store_links.items():
        lines['status'] = InvokeStatus.passed  # default to passed
        start_line = lines['start']
        end_line = lines.get('end', lines.get('next_url', len(log_lines))) - 1
        k = end_line
        while k > start_line:
          backtrack_line = log_lines[k]
          build_failed = backtrack_line.startswith(FAILED_BUILD_LINE)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 08 17:50:27 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  9. cmd/bucket-replication-metrics.go

    func (m *rateMeasurement) updateExponentialMovingAverage(endTime time.Time) {
    	// Calculate aggregate avg bandwidth and exp window avg
    	m.lock.Lock()
    	defer func() {
    		m.startTime = endTime
    		m.lock.Unlock()
    	}()
    
    	if m.startTime.IsZero() {
    		return
    	}
    
    	if endTime.Before(m.startTime) {
    		return
    	}
    
    	duration := endTime.Sub(m.startTime)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. test/return.go

    	var panic = func(int) {}
    	print(1)
    	panic(2)
    } // ERROR "missing return"
    
    // block ending in terminating statement is okay
    func _() int {
    	{
    		print(1)
    		return 2
    	}
    }
    
    // block ending in terminating statement is okay
    func _() int {
    L:
    	{
    		print(1)
    		goto L
    	}
    }
    
    // block ending in terminating statement is okay
    func _() int {
    	print(1)
    	{
    		panic(2)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 32.7K bytes
    - Viewed (0)
Back to top