Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,303 for starts (0.15 sec)

  1. test/goto.go

    	} else { // GCCGO_ERROR "block starts here"
    	L:
    	}
    }
    
    func _() {
    	if false { // GCCGO_ERROR "block starts here"
    	L:
    	} else {
    		goto L // ERROR "goto L jumps into block starting at LINE-3|goto jumps into block"
    	}
    }
    
    func _() {
    	if true {
    		goto L // ERROR "goto L jumps into block starting at LINE+1|goto jumps into block"
    	} else { // GCCGO_ERROR "block starts here"
    	L:
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 02:27:58 UTC 2017
    - 8.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/egressselector/metrics/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"protocol", "transport", "stage"},
    	)
    
    	legacyregistry.MustRegister(starts)
    	legacyregistry.MustRegister(latencies)
    	legacyregistry.MustRegister(failures)
    	return &DialMetrics{starts: starts, latencies: latencies, failures: failures, clock: clock.RealClock{}}
    }
    
    // Clock returns the clock.
    func (m *DialMetrics) Clock() clock.Clock {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 01 23:36:51 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/testprog/annotations-stress.go

    func main() {
    	baseCtx := context.Background()
    
    	// Create a task that starts and ends entirely outside of the trace.
    	ctx0, t0 := trace.NewTask(baseCtx, "parent")
    
    	// Create a task that starts before the trace and ends during the trace.
    	ctx1, t1 := trace.NewTask(ctx0, "type1")
    
    	// Start tracing.
    	if err := trace.Start(os.Stdout); err != nil {
    		log.Fatalf("failed to start tracing: %v", err)
    	}
    	t1.End()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/cluster_scoping_pass.cc

    }
    
    void ClusterScopingPassImpl::AddScopeToAllTransitivePredecessors(Node* start) {
      const string unique_suffix = absl::StrCat("_", GetUniqueScopeId());
    
      std::vector<Node*> starts;
      starts.push_back(start);
      auto enter = [&](Node* n) { AddOrAppendXlaInternalScope(n, unique_suffix); };
      ReverseDFSFrom(*graph_, starts, enter, /*leave=*/nullptr,
                     /*stable_comparator=*/NodeComparatorName());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. src/internal/trace/parser.go

    	EvProcStart         = 5  // start of P [timestamp, thread id]
    	EvProcStop          = 6  // stop of P [timestamp]
    	EvGCStart           = 7  // GC start [timestamp, seq, stack id]
    	EvGCDone            = 8  // GC done [timestamp]
    	EvSTWStart          = 9  // GC mark termination start [timestamp, kind]
    	EvSTWDone           = 10 // GC mark termination done [timestamp]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:31:04 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/events.md

    These functions can be declared with `async def` or normal `def`.
    
    ### `startup` event
    
    To add a function that should be run before the application starts, declare it with the event `"startup"`:
    
    ```Python hl_lines="8"
    {!../../../docs_src/events/tutorial001.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. releasenotes/notes/delay-app-start.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    issue:
    - 24737
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 242 bytes
    - Viewed (0)
  8. src/go/doc/comment/testdata/list10.txt

    -- input --
    
    	1. This list
    	2. Starts the comment
    	3. And also has a blank line before it.
    
    All of which is a little weird.
    -- gofmt --
     1. This list
     2. Starts the comment
     3. And also has a blank line before it.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 20:47:52 UTC 2022
    - 247 bytes
    - Viewed (0)
  9. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/MockWebServer.kt

        delegate.enqueue(response.wrap())
      }
    
      @Throws(IOException::class)
      @JvmOverloads
      fun start(port: Int = 0) {
        started = true
        delegate.start(port)
      }
    
      @Throws(IOException::class)
      fun start(
        inetAddress: InetAddress,
        port: Int,
      ) {
        started = true
        delegate.start(inetAddress, port)
      }
    
      @Synchronized
      @Throws(IOException::class)
      fun shutdown() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandleListener.java

        /**
         * Called before the execution of the ExecHandle starts. Unlike {@link #executionStarted(ExecHandle)}, this method is called synchronously from {@link ExecHandle#start()}.
         *
         * @param execHandle the handle that is about to start
         */
        void beforeExecutionStarted(ExecHandle execHandle);
    
        /**
         * Called before the worker thread starts running the {@code execHandle}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top