Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for flatDir (0.32 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest.groovy

            def repoDir = testDirectory.createDir("repo")
            repoDir.createFile("lib-1.0.jar")
    
            runEclipseTask """
    apply plugin: "java"
    apply plugin: "eclipse"
    
    repositories {
    	flatDir { dirs "${TextUtil.escapeString(repoDir)}" }
    }
    
    dependencies {
    	implementation "some:lib:1.0"
    }
            """
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

            //given
            testFile('repo/hibernate-core.jar').createFile()
    
            //when
            runIdeaTask """
    apply plugin: 'java'
    apply plugin: 'idea'
    
    repositories {
      flatDir dirs: 'repo'
    }
    
    dependencies {
        implementation ':hibernate-core:'
    }
    """
            def content = getFile([:], 'root.iml').text
    
            //then
            content.contains 'hibernate-core.jar'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.artifacts.dsl.RepositoryHandler.flatDir(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (RepositoryHandler.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/descriptor/FlatDirRepositoryDescriptor.java

            super(backingDescriptor.getId(), name);
            this.dirs = ImmutableList.copyOf(dirs);
            this.backingDescriptor = backingDescriptor;
        }
    
        @Override
        public Type getType() {
            return Type.FLAT_DIR;
        }
    
        public ImmutableList<File> getDirs() {
            return dirs;
        }
    
        public IvyRepositoryDescriptor getBackingDescriptor() {
            return backingDescriptor;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    	Value         int64
    	Flat, FlatDiv int64
    	Cum, CumDiv   int64
    }
    
    // FlatValue returns the exclusive value for this tag, computing the
    // mean if a divisor is available.
    func (t *Tag) FlatValue() int64 {
    	if t.FlatDiv == 0 {
    		return t.Flat
    	}
    	return t.Flat / t.FlatDiv
    }
    
    // CumValue returns the inclusive value for this tag, computing the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/descriptor/RepositoryDescriptor.java

        @UsedByScanPlugin("doesn't link against this type, but expects these values - See ResolveConfigurationDependenciesBuildOperationType")
        public enum Type {
            MAVEN,
            IVY,
            FLAT_DIR
        }
    
        private final String id;
        private final String name;
        private Map<String, ?> properties;
    
        RepositoryDescriptor(String id, String name) {
            this.id = id;
            this.name = name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. src/internal/profile/graph.go

    type Graph struct {
    	Nodes Nodes
    }
    
    // FlatValue returns the exclusive value for this node, computing the
    // mean if a divisor is available.
    func (n *Node) FlatValue() int64 {
    	if n.FlatDiv == 0 {
    		return n.Flat
    	}
    	return n.Flat / n.FlatDiv
    }
    
    // CumValue returns the inclusive value for this node, computing the
    // mean if a divisor is available.
    func (n *Node) CumValue() int64 {
    	if n.CumDiv == 0 {
    		return n.Cum
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    	}
    	min := g[0]
    	max := g[0]
    	df, f := min.FlatDiv, min.Flat
    	dc, c := min.CumDiv, min.Cum
    	for _, t := range g[1:] {
    		if v, _ := measurement.Scale(t.Value, t.Unit, min.Unit); int64(v) < min.Value {
    			min = t
    		}
    		if v, _ := measurement.Scale(t.Value, t.Unit, max.Unit); int64(v) > max.Value {
    			max = t
    		}
    		f += t.Flat
    		df += t.FlatDiv
    		c += t.Cum
    		dc += t.CumDiv
    	}
    	if df != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	file            string
    	line            int
    	flat, cum       int64
    	flatDiv, cumDiv int64
    	startsBlock     bool
    	inlineCalls     []callID
    }
    
    type callID struct {
    	file string
    	line int
    }
    
    func (a *assemblyInstruction) flatValue() int64 {
    	if a.flatDiv != 0 {
    		return a.flat / a.flatDiv
    	}
    	return a.flat
    }
    
    func (a *assemblyInstruction) cumValue() int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/shortcircuit.go

    	fuse(f, fuseTypePlain|fuseTypeShortCircuit)
    }
    
    // shortcircuitBlock checks for a CFG in which an If block
    // has as its control value a Phi that has a ConstBool arg.
    // In some such cases, we can rewrite the CFG into a flatter form.
    //
    // (1) Look for a CFG of the form
    //
    //	p   other pred(s)
    //	 \ /
    //	  b
    //	 / \
    //	t   other succ
    //
    // in which b is an If block containing a single phi value with a single use (b's Control),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 03 17:47:02 UTC 2022
    - 12.6K bytes
    - Viewed (0)
Back to top