Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for gap (0.07 sec)

  1. src/internal/types/testdata/check/constdecl.go

    // the constant identifier being declared, not at the original expression
    // (issues #42991, #42992).
    const (
    	_ byte = 255 + iota
    	/* some gap */
    	_ // ERROR "overflows"
    	/* some gap */
    	/* some gap */ _ /* ERROR "overflows" */; _ /* ERROR "overflows" */
    	/* some gap */
    	_ = 255 + iota
    	_ = byte /* ERROR "overflows" */ (255) + iota
    	_ /* ERROR "overflows" */
    )
    
    // Test cases from issue.
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.css

      font-size: 12pt;
      z-index: 2;
    }
    /* Box highlighting via shadows to avoid size changes */
    .hilite { box-shadow: 0px 0px 0px 2px #000; z-index: 1; }
    .hilite2 { box-shadow: 0px 0px 0px 2px #000; z-index: 1; }
    /* Gap left between callers and callees */
    .separator {
      position: absolute;
      text-align: center;
      font-size: 12pt;
      font-weight: bold;
    }
    /* Ensure that pprof menu is above boxes */
    .submenu { z-index: 3; }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. src/log/slog/level.go

    // levels between ours. For example, Google Cloud Logging defines a Notice level
    // between Info and Warn. Since there are only a few of these intermediate
    // levels, the gap between the numbers need not be large. Our gap of 4 matches
    // OpenTelemetry's mapping. Subtracting 9 from an OpenTelemetry level in the
    // DEBUG, INFO, WARN and ERROR ranges converts it to the corresponding slog
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:34:43 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AnsiConsole.java

            // line. In the opposite case, we want to scroll the progress area one more line. This avoid having an one
            // line gap between the text area and the status area.
            if (buildOutputArea.getWritePosition().col > 0) {
                numberOfOverlappedRows++;
            }
    
            if (numberOfOverlappedRows > 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

          e.preventDefault();
        } else if (mode == TOUCHZOOM) {
          // Get two touches; new gap; rescale to ratio.
          const t1 = findTouch(e.touches, touchid);
          const t2 = findTouch(e.touches, touchid2);
          if (t1 == null || t2 == null) return;
          const gap = touchGap(t1, t2);
          rescale(initScale * gap / initGap, centerPoint);
          e.preventDefault();
        }
      }
    
      function handleTouchEnd(e) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. pkg/test/framework/features/README.md

    to document features whose lack of testing needs to be visible in our feature coverage dashboard.
    
    To write a stub, simply create a test object and call NotImplementedYet, passing the label of any features this test should cover.  This test gap will now appear in our feature coverage dashboards, which give release managers a better understanding of what is and isn't tested in a given release.  If you are implementing a test stub with no immediate plans to implement the test, it's a best practice...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. .github/workflows/codeql-analysis.yml

          env:
            # Set the DEVELOCITY_ACCESS_KEY so that Gradle Build Scans are generated
            DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
            # Potential stop-gap solution for ReadTimeout issues with the Gradle Build Cache
            # https://gradle.slack.com/archives/CHDLT99C6/p1636477584059200
            GRADLE_OPTS: -Dhttp.keepAlive=false
    
        - name: Compile with Gradle without Build Scan
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Range.java

       *
       * <p>For example, the gap of {@code [1..5]} and {@code (7..10)} is {@code (5..7]}. The resulting
       * range may be empty; for example, the gap between {@code [1..5)} {@code [5..7)} yields the empty
       * range {@code [5..5)}.
       *
       * <p>The gap exists if and only if the two ranges are either disconnected or immediately adjacent
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Range.java

       *
       * <p>For example, the gap of {@code [1..5]} and {@code (7..10)} is {@code (5..7]}. The resulting
       * range may be empty; for example, the gap between {@code [1..5)} {@code [5..7)} yields the empty
       * range {@code [5..5)}.
       *
       * <p>The gap exists if and only if the two ranges are either disconnected or immediately adjacent
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. samples/bookinfo/src/productpage/templates/productpage.html

            <section class="px-6 py-12 sm:py-8 lg:px-8">
              <div class="mx-auto max-w-2xl">
                {% if review.rating: %}
                {% if review.rating.stars: %}
                <div class="flex gap-x-1 text-{{ review.rating.color }}-500">
                  {% for n in range(review.rating.stars) %}
                  <svg id="glyphicon glyphicon-star" class="h-5 w-5 flex-none" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top