Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for Modular (0.12 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         * @return an identification of the patch-module path for the given module.
         *
         * @see Modular#moduleName()
         */
        @Nonnull
        public static Modular patchModule(@Nonnull String moduleName) {
            return PATCH_MODULE.new Modular(moduleName);
        }
    
        /**
         * The {@code javax.tool} enumeration value corresponding to this {@code JavaPathType}, or {@code null} if none.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/application_plugin.adoc

    Java modules can also be runnable and you can use the application plugin to run and package such a modular application.
    For this, you need to do two things in addition to what you do for a non-modular application.
    
    First, you need to add a `module-info.java` file to describe your application module.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                if (type instanceof JavaPathType.Modular) {
                    type = ((JavaPathType.Modular) type).rawType();
                }
                if (JavaPathType.PATCH_MODULE.equals(type)) {
                    return true;
                }
            }
            return false;
        }
    
        /**
         * Returns whether at least one previously added modular dependency contains a module of the given name.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

     */
    class PathModularization {
        /**
         * A unique constant for all non-modular dependencies.
         */
        public static final PathModularization NONE = new PathModularization();
    
        /**
         * Name of the file to use as a sentinel value for deciding if a directory or a JAR is modular.
         */
        private static final String MODULE_INFO = "module-info.class";
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    "checker". For example, the printf checker reports mistakes in
    fmt.Printf format strings.
    
    A "modular" analysis is one that inspects one package at a time but can
    save information from a lower-level package and use it when inspecting a
    higher-level package, analogous to separate compilation in a toolchain.
    The printf checker is modular: when it discovers that a function such as
    log.Fatalf delegates to fmt.Printf, it records this fact, and checks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestEnvironmentIntegrationTest.groovy

                assertStderr(Matchers.containsText("INFO via slf4j"))
            }
        }
    
        @Requires(UnitTestPreconditions.Jdk9OrLater)
        def "can run tests referencing slf4j with modular java"() {
            Assume.assumeTrue(frameworkSupportsModularJava)
    
            given:
            file('src/test/java/org/gradle/example/TestUsingSlf4j.java') << """
                package org.gradle.example;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize_weight.cc

          // connected to all quantizable ops.
          return true;
        }
        return false;
      }
    };
    
    // TODO: b/264218457 - Refactors the current file to parse preset quantization
    // options and allow modular control of quantization specs.
    void QuantizeWeightPass::runOnOperation() {
      func::FuncOp func = getOperation();
      MLIRContext* ctx = func.getContext();
      RewritePatternSet patterns(ctx);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/tasks/CreateStartScripts.java

         * @since 4.5
         */
        public void setExecutableDir(String executableDir) {
            this.executableDir = executableDir;
        }
    
        /**
         * The main module name used to start the modular Java application.
         *
         * @since 6.4
         */
        @Optional
        @Input
        public Property<String> getMainModule() {
            return mainModule;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. src/crypto/internal/bigmod/nat.go

    	size := len(x.limbs)
    	xLimbs := x.limbs[:size]
    	yLimbs := y.limbs[:size]
    
    	for i := 0; i < size; i++ {
    		xLimbs[i], c = bits.Sub(xLimbs[i], yLimbs[i], c)
    	}
    	return
    }
    
    // Modulus is used for modular arithmetic, precomputing relevant constants.
    //
    // Moduli are assumed to be odd numbers. Moduli can also leak the exact
    // number of bits needed to store their value, and are stored without padding.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    ====
    
    === Using libraries that are not modules
    
    You probably want to use external libraries, like OSS libraries from Maven Central, in your modular Java project.
    Some libraries, in their newer versions, are already full modules with a module descriptor.
    For example, `com.google.code.gson:gson:2.8.9` that has the module name `com.google.gson`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top