Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 392 for loadsys (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. test/fixedbugs/issue49143.dir/b.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package b
    
    import "./a"
    
    
    type Loaders struct {
    	Loader *a.Loader[int, int]
    }
    
    func NewLoaders() *Loaders {
    	return new(Loaders)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 27 05:33:58 UTC 2021
    - 291 bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LoadingCache.java

       *     described in the documentation for {@link #getUnchecked}, {@code LoadingCache} should be
       *     used as a {@code Function} only with cache loaders that throw only unchecked exceptions.)
       */
      @Deprecated
      @Override
      V apply(K key);
    
      /**
       * Loads a new value for {@code key}, possibly asynchronously. While the new value is loading the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/LoadingCache.java

       *     described in the documentation for {@link #getUnchecked}, {@code LoadingCache} should be
       *     used as a {@code Function} only with cache loaders that throw only unchecked exceptions.)
       */
      @Deprecated
      @Override
      V apply(K key);
    
      /**
       * Loads a new value for {@code key}, possibly asynchronously. While the new value is loading the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
Back to top