Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,261 for startm (0.13 sec)

  1. src/internal/zstd/bits.go

    	data  block   // the bits to read
    	off   uint32  // current offset into data
    	start uint32  // start in data; we read backward to start
    	bits  uint32  // bits ready to be returned
    	cnt   uint32  // number of valid bits in bits field
    }
    
    // makeReverseBitReader makes a reverseBitReader reading backward
    // from off to start. The bitstream starts with a 1 bit in the last
    // byte, at off.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:13 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. 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)
  3. cmd/server-startup-msg_test.go

    		{Endpoint: "http://127.0.0.1:9000/data/1/", State: madmin.DriveStateOk},
    		{Endpoint: "http://127.0.0.1:9000/data/2/", State: madmin.DriveStateOk},
    		{Endpoint: "http://127.0.0.1:9000/data/3/", State: madmin.DriveStateOk},
    		{Endpoint: "http://127.0.0.1:9000/data/4/", State: madmin.DriveStateOk},
    		{Endpoint: "http://127.0.0.1:9001/data/1/", State: madmin.DriveStateOk},
    		{Endpoint: "http://127.0.0.1:9001/data/2/", State: madmin.DriveStateOk},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 20 00:53:08 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. releasenotes/notes/grpc-stats.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    issue:
      - 43908
      - 44144
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 04 01:47:33 UTC 2023
    - 158 bytes
    - Viewed (0)
  5. releasenotes/notes/native-stats.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
    - |
      **Updated** Telemetry API uses a new native extension for Prometheus stats
      instead of the Wasm-based extension. This improves CPU overhead and memory
      usage of the feature. Custom dimensions no longer require regex and bootstrap
      annotations. If customizations use CEL expressions with Wasm attributes, they
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 21 16:00:46 UTC 2022
    - 420 bytes
    - Viewed (0)
  6. internal/rest/rpc-stats.go

    }{}
    
    // RPCStats holds information about the DHCP/TCP metrics and errors
    type RPCStats struct {
    	Errs uint64
    
    	DialAvgDuration uint64
    	DialErrs        uint64
    }
    
    // GetRPCStats returns RPC stats, include calls errors and dhcp/tcp metrics
    func GetRPCStats() RPCStats {
    	s := RPCStats{
    		Errs:     atomic.LoadUint64(&globalStats.errs),
    		DialErrs: atomic.LoadUint64(&globalStats.tcpDialErrs),
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 16:27:58 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/trace/trace.go

    // other packages.
    type traceKey struct{}
    
    type traceContext struct {
    	t   *tracer
    	tid uint64
    }
    
    // Start starts a trace which writes to the given file.
    func Start(ctx context.Context, file string) (context.Context, func() error, error) {
    	traceStarted.Store(true)
    	if file == "" {
    		return nil, nil, errors.New("no trace file supplied")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationRunnerTest.groovy

                assert operationState.is(operationStateUnderTest)
            }
    
            where:
            defaultParent << [null, operation("parent")]
        }
    
        def "fires events when non-wrap-around start operation starts and finishes successfully"() {
            setup:
            def details = Mock(Object)
            def operationDetailsBuilder = displayName("<some-operation>").name("<op>").progressDisplayName("<some-op>").details(details)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:56:07 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Stopwatch.java

        return new Stopwatch(ticker);
      }
    
      /**
       * Creates (and starts) a new stopwatch using {@link System#nanoTime} as its time source.
       *
       * @since 15.0
       */
      public static Stopwatch createStarted() {
        return new Stopwatch().start();
      }
    
      /**
       * Creates (and starts) a new stopwatch, using the specified time source.
       *
       * @since 15.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Nov 15 21:38:09 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Stopwatch.java

        return new Stopwatch(ticker);
      }
    
      /**
       * Creates (and starts) a new stopwatch using {@link System#nanoTime} as its time source.
       *
       * @since 15.0
       */
      public static Stopwatch createStarted() {
        return new Stopwatch().start();
      }
    
      /**
       * Creates (and starts) a new stopwatch, using the specified time source.
       *
       * @since 15.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top