Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 4,770 for happens (0.18 sec)

  1. src/cmd/go/testdata/script/test_fail_newline.txt

    # In local directory mode output is streamed, so we don't know
    # whether the test printed anything at all, so we print the exit code
    # (just in case it failed without emitting any output at all),
    # and that happens to add the needed newline as well.
    ! go test
    ! stderr .
    stdout '^exitcode=1exit status 1\n'
    stdout '^FAIL\s+example/fail'
    
    # In package list mode, if the test passes the 'ok' message appears
    # on its own line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 04 21:33:23 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_list_sums.txt

    ! stderr .
    
    go list -m -mod=readonly -versions rsc.io/quote
    stdout 'rsc\.io/quote v1\.0\.0 .* v1\.5\.3-pre1$'
    ! stderr .
    
    # Incidentally fetching the required version of a module records its checksum,
    # just because it happens to be in the build list, and recording the checksum
    # triggers an error under -mod=readonly.
    #
    # TODO(#41297): This should not be an error.
    ! go list -m -mod=readonly rsc.io/quote@<v1.5.2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 05 15:42:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/metrics/metrics.go

    package metrics
    
    import (
    	"time"
    
    	"k8s.io/component-base/metrics"
    	"k8s.io/component-base/metrics/legacyregistry"
    )
    
    // TODO(jiahuif) CEL is to be used in multiple components, revise naming when that happens.
    const (
    	namespace = "apiserver"
    	subsystem = "cel"
    )
    
    // Metrics provides access to CEL metrics.
    var Metrics = newCelMetrics()
    
    type CelMetrics struct {
    	compilationTime *metrics.Histogram
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 09 23:50:48 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalBuildProgressListener.java

         */
        String BUILD_PHASE = "BUILD_PHASE";
        /**
         * The constant for problems events.
         */
        String PROBLEMS = "PROBLEMS";
    
        /**
         * Invoked when a progress event happens in the build being run, and one or more listeners for the given event type have been registered.
         *
         * The event types implemented in Gradle 2.4 are:
         *
         * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java

      abstract T runInterruptibly() throws Exception;
    
      /**
       * Any interruption that happens as a result of calling interruptTask will arrive before this
       * method is called. Complete Futures here.
       */
      abstract void afterRanInterruptiblySuccess(@ParametricNullness T result);
    
      /**
       * Any interruption that happens as a result of calling interruptTask will arrive before this
       * method is called. Complete Futures here.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 29 21:34:48 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/metrics.go

    func (a *instrumentedAuthenticator) AuthenticateToken(ctx context.Context, token string) (*authenticator.Response, bool, error) {
    	start := a.clock.Now()
    	response, ok, err := a.delegate.AuthenticateToken(ctx, token)
    	// this only happens when issuer doesn't match the authenticator
    	// we don't want to record metrics for this case
    	if !ok && err == nil {
    		return response, ok, err
    	}
    
    	duration := a.clock.Since(start)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

      - type: textarea
        id: current-behavior
        attributes:
          label: Current Behavior
          description: Tell us what happens
        validations:
          required: true
      - type: textarea
        id: expected-behavior
        attributes:
          label: Expected Behavior
          description: Tell us what should happen
        validations:
          required: true
      - type: textarea
        id: context
        attributes:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. src/reflect/makefunc.go

    // in args.Ints to args.Ptrs where the GC can see them.
    //
    // This is similar to what reflectcallmove does in the runtime, except
    // that happens on the return path, whereas this happens on the call path.
    //
    // nosplit because pointers are being held in uintptr slots in args, so
    // having our stack scanned now could lead to accidentally freeing
    // memory.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:20:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/generators/go122-confuse-seq-across-generations.go

    // The core of the issue is that if generation counters
    // aren't considered as part of sequence numbers, then
    // it's possible to accidentally advance without a
    // GoStatus event.
    //
    // The situation is one in which it just so happens that
    // an event on the frontier for a following generation
    // has a sequence number exactly one higher than the last
    // sequence number for e.g. a goroutine in the previous
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. guava-gwt/src/com/google/common/net/Net.gwt.xml

        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
        GWT happens to use the prod .gwt.xml, so it looks for no supersource for
        tests, either. This causes it to fail to find AtomicLongMapTest.
    
        Our workaround is to tell GWT that util.concurrent and all other packages
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top