Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 424 for loadOps (0.1 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcBuildOperationsIntegrationTest.groovy

            buildSrcOps[0].details.buildPath == ':'
    
            def loadOps = ops.all(LoadBuildBuildOperationType)
            loadOps.size() == 2
            loadOps[0].displayName == "Load build"
            loadOps[0].details.buildPath == ':'
            loadOps[0].parentId == root.id
            loadOps[1].displayName == "Load build (:buildSrc)"
            loadOps[1].details.buildPath == ':buildSrc'
            loadOps[1].parentId == buildSrcOps[0].id
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcBuildOperationsIntegrationTest.groovy

            def loadOps = operations.all(LoadBuildBuildOperationType)
            loadOps.size() == 3
            loadOps[0].displayName == "Load build"
            loadOps[0].details.buildPath == ":"
            loadOps[0].parentId == root.id
    
            loadOps[1].displayName == "Load build (:buildB)"
            loadOps[1].details.buildPath == ":buildB"
            loadOps[1].parentId == loadOps[0].id
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyBuildOperationIntegrationTest.groovy

            resolve
    
            def loadOps = operations.all(LoadBuildBuildOperationType)
            loadOps.size() == 2
            loadOps[0].displayName == "Load build"
            loadOps[0].details.buildPath == ":"
            loadOps[0].parentId == root.id
            loadOps[1].displayName == "Load build (:buildB)"
            loadOps[1].details.buildPath == ":buildB"
            loadOps[1].parentId == resolve.id
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildOperationsIntegrationTest.groovy

            def loadOps = operations.all(LoadBuildBuildOperationType)
            loadOps.size() == 2
            loadOps[0].displayName == "Load build"
            loadOps[0].details.buildPath == ":"
            loadOps[0].parentId == root.id
            loadOps[1].displayName == "Load build (:buildB)"
            loadOps[1].details.buildPath == ":buildB"
            loadOps[1].parentId == loadOps[0].id
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/webhtml.go

    		template.Must(sub.Parse(contents))
    		template.Must(templates.AddParseTree(name, sub.Tree))
    	}
    
    	// Embedded files.
    	def("css", loadCSS("html/common.css"))
    	def("header", loadFile("html/header.html"))
    	def("graph", loadFile("html/graph.html"))
    	def("graph_css", loadCSS("html/graph.css"))
    	def("script", loadJS("html/common.js"))
    	def("top", loadFile("html/top.html"))
    	def("sourcelisting", loadFile("html/source.html"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. cmd/metrics-v3-types.go

    // JoinLoaders - joins multiple loaders into a single loader. The returned
    // loader will call each of the given loaders in order. If any of the loaders
    // return an error, the returned loader will return that error.
    func JoinLoaders(loaders ...MetricsLoaderFn) MetricsLoaderFn {
    	return func(ctx context.Context, m MetricValues, c *metricsCache) error {
    		for _, loader := range loaders {
    			if err := loader(ctx, m, c); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/syms.go

    }
    
    func Lookup(name string) *types.Sym {
    	return types.LocalPkg.Lookup(name)
    }
    
    // InitRuntime loads the definitions for the low-level runtime functions,
    // so that the compiler can generate calls to them,
    // but does not make them visible to user code.
    func InitRuntime() {
    	base.Timer.Start("fe", "loadsys")
    
    	typs := runtimeTypes()
    	for _, d := range &runtimeDecls {
    		sym := ir.Pkgs.Runtime.Lookup(d.name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:13 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/FinalizableReferenceQueue.java

          }
        }
      }
    
      /**
       * Iterates through the given loaders until it finds one that can load Finalizer.
       *
       * @return Finalizer.class
       */
      private static Class<?> loadFinalizer(FinalizerLoader... loaders) {
        for (FinalizerLoader loader : loaders) {
          Class<?> finalizer = loader.loadFinalizer();
          if (finalizer != null) {
            return finalizer;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

        private static final Loader SKIP_INSTRUMENTATION = new Loader();
        private final ConcurrentMap<ProtectionDomain, Loader> loaders;
        private final TransformedClassPath classPath;
        private volatile boolean closed;
    
        public TransformReplacer(TransformedClassPath classPath) {
            this.loaders = new ConcurrentHashMap<ProtectionDomain, Loader>();
            this.classPath = classPath;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/FinalizableReferenceQueue.java

          }
        }
      }
    
      /**
       * Iterates through the given loaders until it finds one that can load Finalizer.
       *
       * @return Finalizer.class
       */
      private static Class<?> loadFinalizer(FinalizerLoader... loaders) {
        for (FinalizerLoader loader : loaders) {
          Class<?> finalizer = loader.loadFinalizer();
          if (finalizer != null) {
            return finalizer;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top