Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,204 for vtable (0.16 sec)

  1. .github/workflows/stale.yml

    name: "Stale"
    on:
      schedule:
      - cron: "0 2 * * *"
    
    permissions:
      contents: read
    
    jobs:
      stale:
        permissions:
          issues: write  # for actions/stale to close stale issues
          pull-requests: write  # for actions/stale to close stale PRs
        runs-on: ubuntu-latest
        env:
          ACTIONS_STEP_DEBUG: true
        steps:
        - name: Close Stale Issues
          uses: actions/stale@v8
          with:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Apr 11 02:27:05 UTC 2023
    - 972 bytes
    - Viewed (0)
  2. .github/stale.yml

    # Number of days of inactivity before an Issue or Pull Request becomes stale
    daysUntilStale: 30
    
    # Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
    # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
    daysUntilClose: 15
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 24 04:36:59 UTC 2022
    - 2K bytes
    - Viewed (0)
  3. src/debug/dwarf/unit.go

    		}
    		var abbrevOff uint64
    		if u.is64 {
    			abbrevOff = b.uint64()
    		} else {
    			abbrevOff = uint64(b.uint32())
    		}
    		atable, err := d.parseAbbrev(abbrevOff, u.vers)
    		if err != nil {
    			if b.err == nil {
    				b.err = err
    			}
    			break
    		}
    		u.atable = atable
    		if vers < 5 {
    			u.asize = int(b.uint8())
    		}
    
    		switch u.utype {
    		case utSkeleton, utSplitCompile:
    			b.uint64() // unit ID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 21 17:14:08 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/GraphBuilder.java

       *
       * <p>The default value is {@link ElementOrder#unordered() unordered} for mutable graphs. For
       * immutable graphs, this value is ignored; they always have a {@link ElementOrder#stable()
       * stable} order.
       *
       * @throws IllegalArgumentException if {@code incidentEdgeOrder} is not either {@code
       *     ElementOrder.unordered()} or {@code ElementOrder.stable()}.
       * @since 29.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/ValueGraphBuilder.java

       *
       * <p>The default value is {@link ElementOrder#unordered() unordered} for mutable graphs. For
       * immutable graphs, this value is ignored; they always have a {@link ElementOrder#stable()
       * stable} order.
       *
       * @throws IllegalArgumentException if {@code incidentEdgeOrder} is not either {@code
       *     ElementOrder.unordered()} or {@code ElementOrder.stable()}.
       * @since 29.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 8K bytes
    - Viewed (0)
  6. .github/workflows/stale-issues.yml

              exempt-issue-labels: 'override-stale'
              #Comma separated list of labels that can be assigned to PRs to exclude them from being marked as stale
              exempt-pr-labels: "override-stale"
              #Limit the No. of API calls in one run default value is 30.
              operations-per-run: 1000
              days-before-issue-stale: 180
              days-before-issue-close: 365
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 23 20:04:38 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. .github/workflows/stale-pr.yml

              # This workflow should touch no issues, so times are set to -1
              # (see actions/stale documentation for the behavior)
              days-before-issue-stale: -1
              stale-issue-label: stale
              stale-issue-message: >
                **BUG!** This issue should not be marked stale by the "stale" workflow.
                Please report it to @gradle/bt-support team
              days-before-issue-close: -1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/tests/bridge/BUILD

        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        # TODO: b/288344501 - Enable OSS tests again when stable-quant-opt works well.
        default_tags = [
            "no_oss",
            "no_pip",
        ],
        driver = "//tensorflow/compiler/mlir/quantization/stablehlo:run_lit.sh",
        size_override = {
        },
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 23 17:01:13 UTC 2023
    - 987 bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/http2/hpack/encode.go

    type Encoder struct {
    	dynTab dynamicTable
    	// minSize is the minimum table size set by
    	// SetMaxDynamicTableSize after the previous Header Table Size
    	// Update.
    	minSize uint32
    	// maxSizeLimit is the maximum table size this encoder
    	// supports. This will protect the encoder from too large
    	// size.
    	maxSizeLimit uint32
    	// tableSizeUpdate indicates whether "Header Table Size
    	// Update" is required.
    	tableSizeUpdate bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  10. src/runtime/symtab.go

    		most = max(most, val)
    	}
    }
    
    func pcdatastart(f funcInfo, table uint32) uint32 {
    	return *(*uint32)(add(unsafe.Pointer(&f.nfuncdata), unsafe.Sizeof(f.nfuncdata)+uintptr(table)*4))
    }
    
    func pcdatavalue(f funcInfo, table uint32, targetpc uintptr) int32 {
    	if table >= f.npcdata {
    		return -1
    	}
    	r, _ := pcvalue(f, pcdatastart(f, table), targetpc, true)
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top