Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for TacPass (0.14 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/transforms/tac_pass.h

    // as it provides access to the TAC module.
    template <typename T>
    class TacPass : public OperationPass<T> {
     public:
      using OperationPass<T>::OperationPass;
      explicit TacPass(const TacModule* module)
          : OperationPass<T>::OperationPass(mlir::TypeID::get<T>()),
            module_(module) {}
    
      ~TacPass() override = default;
    
      const TargetHardware* GetTargetHardware(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/reflect/ReflectionCache.java

            }
    
            private CacheEntry fetchNext(WeaklyClassReferencingCache cur, Class<?> aClass) {
                CacheEntry last;
                last = cur.get(aClass);
                if (last == null) {
                    last = new CacheEntry();
                    cur.put(aClass, last);
                }
                return last;
            }
        }
    
        private class CacheEntry {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/tooling/internal/provider/serialization/PayloadSerializerTest.groovy

                Assert.fail()
            } catch (ClassNotFoundException) {
                // expected
            }
        }
    
        ClassLoader filter(Class<?> aClass) {
            def spec = new FilteringClassLoader.Spec()
            spec.allowClass(aClass)
            return new FilteringClassLoader(aClass.classLoader, spec)
        }
    
        ClassLoader isolated(ClassLoader parent = ClassLoader.systemClassLoader.parent, Class<?>... classes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/PayloadSerializerObjectInputStream.java

        @Override
        protected ObjectStreamClass readClassDescriptor() throws IOException, ClassNotFoundException {
            Class<?> aClass = readClass();
            ObjectStreamClass descriptor = ObjectStreamClass.lookupAny(aClass);
            if (descriptor == null) {
                throw new ClassNotFoundException(aClass.getName());
            }
            return descriptor;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/TypeStringFormatter.java

        static String format(Type type) {
            if (type instanceof Class) {
                Class<?> aClass = (Class) type;
                Class<?> enclosingClass = aClass.getEnclosingClass();
                if (enclosingClass != null) {
                    return format(enclosingClass) + "$" + aClass.getSimpleName();
                } else {
                    return aClass.getSimpleName();
                }
            } else if (type instanceof ParameterizedType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskGroovyJavaJointIncrementalCompilationIntegrationTest.groovy

            run ":impl:compileGroovy"
    
            when:
            aClass.text = "class A { void m1() {}; void m2() {}; }"
            eClass.text = "class E { boolean isCacheEnabled = D.cache; garbage }"
    
            then:
            runAndFail ":impl:compileGroovy"
    
            when:
            impl.snapshot {
                aClass.text = "class A { void m1() {}; void m2() {}; }"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/analyzer/DefaultClassDependenciesAnalyzerTest.groovy

            analyze(SomeSourceAnnotation).privateClassDependencies.isEmpty()
            analyze(SomeSourceAnnotation).dependencyToAllReason
        }
    
        InputStream classStream(Class aClass) {
            aClass.classLoader.getResourceAsStream(aClass.getName().replace(".", "/") + ".class")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/BootstrapSecurityManager.java

                SecurityManager securityManager;
                try {
                    Class<?> aClass = systemClassLoader.loadClass(securityManagerType);
                    securityManager = (SecurityManager) JavaReflectionUtil.newInstance(aClass);
                } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-base/src/testFixtures/groovy/org/gradle/java/compile/IncrementalCompileMultiProjectTestFixture.groovy

                            implementation project(':library')
                        }
                    }
                """.stripIndent()
            }
            file("app/src/main/${language.name}/AClass.${language.name}") << 'public class AClass { }'
        }
    
        String getAppCompileTask(CompiledLanguage language = CompiledLanguage.JAVA) {
            ":app:${language.compileTaskName}"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/InternalTransformers.java

                @Override
                public Class<T> transform(T original) {
                    @SuppressWarnings("unchecked")
                    Class<T> aClass = (Class<T>) original.getClass();
                    return aClass;
                }
            };
        }
    
        public static <R> InternalTransformer<R, Object> toTransformer(final Factory<R> factory) {
            return new InternalTransformer<R, Object>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top