Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for gap (0.1 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/runtime/sys_freebsd_386.s

    	MOVL	20(SP), BX // info
    	MOVL	BX, 4(SP)
    	MOVL	24(SP), BX // context
    	MOVL	BX, 8(SP)
    	CALL	runtime·sigtrampgo(SB)
    
    	// call sigreturn
    	MOVL	24(SP), AX	// context
    	MOVL	$0, 0(SP)	// syscall gap
    	MOVL	AX, 4(SP)
    	MOVL	$SYS_sigreturn, AX
    	INT	$0x80
    	MOVL	$0xf1, 0xf1  // crash
    	RET
    
    TEXT runtime·sigaltstack(SB),NOSPLIT,$0
    	MOVL	$SYS_sigaltstack, AX
    	INT	$0x80
    	JAE	2(PC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/go/testdata/script/trampoline_reuse_test.txt

            Func1()
            bar.Bar2()
    }
    
    -- foo.s --
    
    TEXT main·Func1(SB),0,$0-0
            CALL bar·Bar+0x400(SB)
            CALL main·BigAsm(SB)
    // A trampoline will be placed here to bar.Bar
    
    // This creates a gap sufficiently large to prevent trampoline reuse
    #define NOP64 DWORD $0; DWORD $0; DWORD $0; DWORD $0; DWORD $0; DWORD $0; DWORD $0; DWORD $0;
    #define NOP256 NOP64 NOP64 NOP64 NOP64
    #define NOP2S10 NOP256 NOP256 NOP256 NOP256
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 14:31:23 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. 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)
  9. .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)
  10. 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)
Back to top