Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 175 for Flat (0.05 sec)

  1. maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-directory-urls-expected.xml

      </parent>
    
      <groupId>inheritance</groupId>
      <artifactId>child-artifact-id</artifactId>
      <version>11-SNAPSHOT</version>
      <name>Model urls inheritance test child</name>
      <description>Flat directory structure case: module = ../child directory path + child directory path != child-artifact-id</description>
    
      <!-- 5 inherited urls with ../${project.artifactId} added to parent -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-directory-urls-child.xml

    Christian Wansart <******@****.***> 1573139799 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-artifactId-urls-child.xml

    Christian Wansart <******@****.***> 1573139799 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/top.html

      <style type="text/css">
      </style>
    </head>
    <body>
      {{template "header" .}}
      <div id="top">
        <table id="toptable">
          <thead>
            <tr>
              <th id="flathdr1">Flat</th>
              <th id="flathdr2">Flat%</th>
              <th>Sum%</th>
              <th id="cumhdr1">Cum</th>
              <th id="cumhdr2">Cum%</th>
              <th id="namehdr">Name</th>
              <th>Inlined?</th>
            </tr>
          </thead>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 14:39:18 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/html/source.html

          <pre onClick="pprof_toggle_asm(event)">{{"\n" -}}
            {{printf "  Total:  %10s %10s (flat, cum) %s" .Flat .Cumulative .Percent -}}
            {{range .Lines -}}{{"\n" -}}
              {{/* source line */ -}}
              <span class=line>{{printf " %6d" .Line}}</span>{{" " -}}
              <span class={{.HTMLClass}}>
                {{- printf "  %10s %10s %8s  %s " .Flat .Cumulative "" .SrcLine -}}
              </span>{{"" -}}
    
              {{if .Instructions -}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    	// Use non linear growth to emphasize the size difference.
    	baseFontSize, maxFontGrowth := 8, 16.0
    	fontSize := baseFontSize
    	if maxFlat != 0 && flat != 0 && float64(abs64(flat)) <= maxFlat {
    		fontSize += int(math.Ceil(maxFontGrowth * math.Sqrt(float64(abs64(flat))/maxFlat)))
    	}
    
    	// Determine node shape.
    	shape := "box"
    	if attrs != nil && attrs.Shape != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    }
    
    // Sum adds the flat and cum values of a set of nodes.
    func (ns Nodes) Sum() (flat int64, cum int64) {
    	for _, n := range ns {
    		flat += n.Flat
    		cum += n.Cum
    	}
    	return
    }
    
    func (n *Node) addSample(dw, w int64, labels string, numLabel map[string][]int64, numUnit map[string][]string, format func(int64, string) string, flat bool) {
    	// Update sample value
    	if flat {
    		n.FlatDiv += dw
    		n.Flat += w
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/FlatDirResolveIntegrationTest.groovy

     */
    package org.gradle.integtests.resolve
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class FlatDirResolveIntegrationTest extends AbstractIntegrationSpec {
        def "can resolve dependencies from a flat dir repository"() {
            given:
            file("repo/a-1.4.jar").createFile()
            file("repo/b.jar").createFile()
            file("repo/c.jar").createFile()
    
            and:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    				}
    				seen[x.addr] = true
    				inst := sp.insts[x.addr]
    				file.cum += inst.cum
    				file.flat += inst.flat
    			}
    		}
    	}
    
    	// Get sorted list of files to print.
    	var files []*sourceFile
    	for _, f := range sp.files {
    		files = append(files, f)
    	}
    	order := func(i, j int) bool { return files[i].flat > files[j].flat }
    	if maxFiles < 0 {
    		// Order by name for compatibility with old code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/artifacts/defineRepository/kotlin/build.gradle.kts

            }
        }
    }
    // end::header-authenticated-maven-repo[]
    
    // tag::flat-dir[]
    // tag::flat-dir-multi[]
    repositories {
        flatDir {
            dirs("lib")
        }
    // end::flat-dir[]
        flatDir {
            dirs("lib1", "lib2")
        }
    // tag::flat-dir[]
    }
    // end::flat-dir[]
    // end::flat-dir-multi[]
    
    // tag::ivy-repo[]
    repositories {
        ivy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top