Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 141 for ponums (0.23 sec)

  1. src/cmd/compile/internal/ssa/dom.go

    			s[tos].index++
    			bb := b.Succs[i].Block()
    			if !seen[bb.ID] {
    				seen[bb.ID] = true
    				s = append(s, blockAndIndex{b: bb})
    			}
    			continue
    		}
    		s = s[:tos]
    		if ponums != nil {
    			ponums[b.ID] = int32(len(order))
    		}
    		order = append(order, b)
    	}
    	return order
    }
    
    type linkedBlocks func(*Block) []Edge
    
    func dominators(f *Func) []*Block {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/html.go

    	for i, b := range f.Blocks {
    		indexOf[b.ID] = i
    	}
    	layoutDrawn := make([]bool, f.NumBlocks())
    
    	ponums := make([]int32, f.NumBlocks())
    	_ = postorderWithNumbering(f, ponums)
    	isBackEdge := func(from, to ID) bool {
    		return ponums[from] <= ponums[to]
    	}
    
    	for _, b := range f.Blocks {
    		for i, s := range b.Succs {
    			style := "solid"
    			color := "black"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Enums.java

     */
    @GwtIncompatible
    @J2ktIncompatible
    @ElementTypesAreNonnullByDefault
    public final class Enums {
    
      private Enums() {}
    
      /**
       * Returns the {@link Field} in which {@code enumValue} is defined. For example, to get the {@code
       * Description} annotation on the {@code GOLF} constant of enum {@code Sport}, use {@code
       * Enums.getField(Sport.GOLF).getAnnotation(Description.class)}.
       *
       * @since 12.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 26 11:56:44 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Enums.java

     */
    @GwtIncompatible
    @J2ktIncompatible
    @ElementTypesAreNonnullByDefault
    public final class Enums {
    
      private Enums() {}
    
      /**
       * Returns the {@link Field} in which {@code enumValue} is defined. For example, to get the {@code
       * Description} annotation on the {@code GOLF} constant of enum {@code Sport}, use {@code
       * Enums.getField(Sport.GOLF).getAnnotation(Description.class)}.
       *
       * @since 12.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 26 11:56:44 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationByPsi/enums.kt

    Ilya Kirillov <******@****.***> 1665754261 +0200
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 26 19:19:00 UTC 2022
    - 327 bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/config.yml

    blank_issues_enabled: true
    contact_links:
      - name: Questions
        about: Please use one of the forums for questions or general discussions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 18:12:58 UTC 2023
    - 179 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/version_build_settings.txt

    [cgo] env CGO_CXXFLAGS=-DFROM_CXXFLAGS=1
    [cgo] env CGO_LDFLAGS=-L/extra/dir/does/not/exist
    [cgo] go build '-ldflags=all=-linkmode=external -extldflags=-L/bonus/dir/does/not/exist'
    [cgo] go version -m m$GOEXE
    [cgo] stdout '^\tbuild\t-ldflags="all=-linkmode=external -extldflags=-L/bonus/dir/does/not/exist"$'
    [cgo] stdout '^\tbuild\tCGO_ENABLED=1$'
    [cgo] stdout '^\tbuild\tCGO_CPPFLAGS=-DFROM_CPPFLAGS=1$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. src/html/template/html_test.go

    		{"Foo <!-- Bar --> Baz", "Foo  Baz"},
    		{"<", "<"},
    		{"foo < bar", "foo < bar"},
    		{`Foo<script type="text/javascript">alert(1337)</script>Bar`, "FooBar"},
    		{`Foo<div title="1>2">Bar`, "FooBar"},
    		{`I <3 Ponies!`, `I <3 Ponies!`},
    		{`<script>foo()</script>`, ``},
    	}
    
    	for _, test := range tests {
    		if got := stripTags(test.input); got != test.want {
    			t.Errorf("%q: want %q, got %q", test.input, test.want, got)
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 19 22:45:50 UTC 2015
    - 2.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

      std::vector<int32_t> out_transpose;
      lhs_transpose.reserve(dnums.lhs_rhs_out.size() + dnums.lhs_out.size() +
                            dnums.lhs_rhs.size());
      rhs_transpose.reserve(dnums.lhs_rhs_out.size() + dnums.rhs_out.size() +
                            dnums.lhs_rhs.size());
      out_transpose.reserve(dnums.lhs_rhs_out.size() + dnums.lhs_out.size() +
                            dnums.rhs_out.size());
      // Generate transpose matrix for B0,...,Bn
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  10. src/go/doc/testdata/examples/issue43658.golden

    -- Profile_simple.Play --
    package main
    
    import (
    	"fmt"
    	"log"
    	"sort"
    
    	"golang.org/x/exp/rand"
    
    	"gonum.org/v1/gonum/graph/community"
    	"gonum.org/v1/gonum/graph/internal/ordered"
    	"gonum.org/v1/gonum/graph/simple"
    )
    
    func main() {
    	// Profile calls Modularize which implements the Louvain modularization algorithm.
    	// Since this is a randomized algorithm we use a defined random source to ensure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 4.5K bytes
    - Viewed (0)
Back to top