Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 255 for INF (0.02 sec)

  1. src/main/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRoot.java

            super(context);
        }
    
        @Override
        protected void processWebInfLib() throws LifecycleException {
            super.processWebInfLib();
    
            final WebResource[] possibleJars = listResources("/WEB-INF/plugin", false);
    
            for (final WebResource possibleJar : possibleJars) {
                if (possibleJar.isFile() && possibleJar.getName().endsWith(".jar")) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/codegen/groovy/InterceptGroovyCallsResourceGeneratorTest.groovy

    import static javax.tools.StandardLocation.CLASS_OUTPUT
    
    class InterceptGroovyCallsResourceGeneratorTest extends InstrumentationCodeGenTest {
    
        def "should generate a META-INF/services resource with all CallInterceptor classes"() {
            given:
            def givenSource = source """
                package org.gradle.test;
                import org.gradle.internal.instrumentation.api.annotations.*;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 13:46:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

          start_idx: Index to start quantization.
    
        Returns:
          (min_value, max_value): Min and max calculated.
        """
        # Tuple of (mse_error, quant_min, quant_max).
        mse_min = (float('inf'), float('inf'), float('inf'))
        left, right = start_idx, start_idx
    
        # If this value is true, it moves left, otherwise it moves right.
        move_left = True
        while not (left == 0 and right == self._num_bins - 1):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsResourceGenerator.java

    import java.io.UncheckedIOException;
    import java.io.Writer;
    import java.nio.charset.StandardCharsets;
    import java.util.Collection;
    import java.util.stream.Collectors;
    
    /**
     * Generates META-INF/services resource with all factory classes for generated JvmBytecodeCallInterceptors so we can load them at runtime
     */
    public class InterceptJvmCallsResourceGenerator implements InstrumentationResourceGenerator {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/resources/META-INF/analysis-api/analysis-api-fir-standalone-base.xml

    <idea-plugin xmlns:xi="http://www.w3.org/2001/XInclude">
      <xi:include href="/META-INF/analysis-api/analysis-api-fir.xml"/>
    
      <extensions defaultExtensionNs="com.intellij">
        <projectService
            serviceInterface="org.jetbrains.kotlin.analysis.api.platform.declarations.KotlinDirectInheritorsProvider"
            serviceImplementation="org.jetbrains.kotlin.analysis.api.standalone.base.declarations.KotlinStandaloneFirDirectInheritorsProvider"
        />
      </extensions>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 484 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/defer_activation_transpose.mlir

    // CHECK-LABEL: reduce_window_max_activation_transpose
    func.func @reduce_window_max_activation_transpose(%arg0: tensor<1x16x16x4xf32>) -> tensor<1x4x8x8xf32> {
      %0 = stablehlo.constant dense<0xFF800000> : tensor<f32>  // -inf
      %1 = stablehlo.transpose %arg0, dims = [0, 3, 1, 2] : (tensor<1x16x16x4xf32>) -> tensor<1x4x16x16xf32>
      %2 = "stablehlo.reduce_window"(%1, %0) ({
      ^bb0(%arg1: tensor<f32>, %arg2: tensor<f32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 20:32:46 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/ConfigurationCacheInstrumentationProcessor.java

                (CodeGeneratorContributor) InterceptJvmCallsGenerator::new,
                // Generate META-INF/services resource with factories for all generated InterceptJvmCallsGenerator
                (ResourceGeneratorContributor) InterceptJvmCallsResourceGenerator::new,
    
                (CodeGeneratorContributor) InterceptGroovyCallsGenerator::new,
                // Generate META-INF/services resource with all generated CallInterceptors
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:31:26 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/developingPlugins/pluginWithVariants/groovy/build.gradle

            }
        }
    }
    
    tasks.named(gradle7.processResourcesTaskName) { // <3>
        def copyPluginDescriptors = rootSpec.addChild()
        copyPluginDescriptors.into('META-INF/gradle-plugins')
        copyPluginDescriptors.from(tasks.pluginDescriptors)
    }
    
    dependencies {
        gradle7CompileOnly(gradleApi()) // <4>
    }
    // end::add-plugin-variant[]
    
    // tag::consume-plugin-variant[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 01:32:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/developingPlugins/pluginWithVariants/kotlin/build.gradle.kts

                    objects.named("7.0"))
            }
        }
    }
    
    tasks.named<Copy>(gradle7.processResourcesTaskName) { // <3>
        val copyPluginDescriptors = rootSpec.addChild()
        copyPluginDescriptors.into("META-INF/gradle-plugins")
        copyPluginDescriptors.from(tasks.pluginDescriptors)
    }
    
    dependencies {
        "gradle7CompileOnly"(gradleApi()) // <4>
    }
    // end::add-plugin-variant[]
    
    // tag::consume-plugin-variant[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 01:32:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. pom.xml

    							<paths>
    								<path>${project.build.directory}/fess/WEB-INF/classes/fess_config.properties</path>
    								<path>${project.build.directory}/fess/WEB-INF/classes/fess_env_crawler.properties</path>
    								<path>${project.build.directory}/fess/WEB-INF/classes/fess_env_suggest.properties</path>
    								<path>${project.build.directory}/fess/WEB-INF/classes/fess_env_thumbnail.properties</path>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
Back to top