Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 89 of 89 for legalization (0.17 sec)

  1. README.md

     - [NDJSON](https://github.com/codelibs/fess-ingest-ndjson)
    
    ## Script
    
     - [Groovy](https://github.com/codelibs/fess-script-groovy)
     - [OGNL](https://github.com/codelibs/fess-script-ognl)
    
    ## Localization
    
    ### Japanese
    
     - [Website](https://fess.codelibs.org/ja/)
    
    ### Korean
    
     - [Forum](https://github.com/nocode2k/fess-kr-forum)
    
    ## Development Information
    
    ### Get Source Code
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Feb 25 00:40:07 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_types.cc

    // some generic types that are legal in MHLO. This pass legalizes TF types into
    // types that are legal in MHLO. For example, TF::Qint8Type is converted to i8.
    // Rewrites here should run before TF to MHLO op legalizations are run.
    
    #include <memory>
    #include <string>
    #include <utility>
    
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/Support/Casting.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

            }
        }
    
        // TODO I'm really wondering where this method belongs; smells like it should be on MavenProject, but for some
        // reason it isn't ? This localization is kind-of a code smell.
    
        public static String getKey(MavenProject project) {
            return project.getGroupId() + ':' + project.getArtifactId() + ':' + project.getVersion();
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmTestSuite.java

            // whether we need withDependencies anymore.
            //
            // The Kotlin plugin attempts to look at the declared dependencies to know if it needs to add its own dependencies.
            // We avoid triggering realization of getTestSuiteTestingFramework by only adding our dependencies just before
            // resolution.
            implementation.withDependencies(dependencySet ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:19:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginIntegrationTest.groovy

                }
                """.stripIndent()
    
            expect:
            succeeds('testResolve')
        }
    
        @Issue("https://github.com/gradle/gradle/issues/19914")
        def "calling jar task doesn't force realization of test task"() {
            given:
            buildFile << """
                plugins {
                    id 'java'
                }
    
                ${mavenCentralRepository()}
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

            group = ciGroup
        }
    
        register("forceRealizeDependencyManagementTest") {
            description = "Runs all integration tests with the dependency management engine in 'force component realization' mode"
            group = ciGroup
        }
    }
    
    // https://github.com/gradle/gradle-private/issues/3380
    fun Test.configureAndroidUserHome() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/JavaPlugin.java

                testRuntimeOnlyConfiguration.extendsFrom(configurations.getByName(mainSourceSet.getRuntimeOnlyConfigurationName()));
            });
    
            // Force the realization of this test suite, targets and task
            JvmTestSuite suite = testSuite.get();
    
            tasks.named(JavaBasePlugin.CHECK_TASK_NAME, task -> task.dependsOn(testSuite));
    
            return suite;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    [[sec:java_resources]]
    == Managing resources
    
    Many Java projects make use of resources beyond source files, such as images, configuration files and localization data.
    Sometimes these files simply need to be packaged unchanged and sometimes they need to be processed as template files or in some other way.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  9. RELEASE.md

            and `Model.predict_generator` are deprecated endpoints. They are
            subsumed by `Model.fit`, `Model.evaluate`, and `Model.predict` which now
            support generators and Sequences.
    *   `tf.lite`
        *   Legalization for `NMS` ops in TFLite.
        *   add `narrow_range` and `axis` to `quantize_v2` and `dequantize` ops.
        *   Added support for `FusedBatchNormV3` in converter.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top