Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 129 for Modular (0.51 sec)

  1. 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)
  2. tensorflow/c/experimental/filesystem/plugins/posix/BUILD

            "@com_google_absl//absl/log",
        ],
        alwayslink = 1,
    )
    
    # Library implementing helper functionality, so that the above only contains
    # the API implementation for modular filesystems.
    cc_library(
        name = "posix_filesystem_helper",
        srcs = ["posix_filesystem_helper.cc"],
        hdrs = ["posix_filesystem_helper.h"],
        deps = [":copy_file"],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 20:08:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. src/math/sincos.go

    		if j&1 == 1 { // map zeros to origin
    			j++
    			y++
    		}
    		j &= 7                               // octant modulo 2Pi radians (360 degrees)
    		z = ((x - y*PI4A) - y*PI4B) - y*PI4C // Extended precision modular arithmetic
    	}
    	if j > 3 { // reflect in x axis
    		j -= 4
    		sinSign, cosSign = !sinSign, !cosSign
    	}
    	if j > 1 {
    		cosSign = !cosSign
    	}
    
    	zz := z * z
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseJavaProjectModulesIntegrationTest.groovy

    import org.gradle.test.preconditions.UnitTestPreconditions
    
    @Requires(UnitTestPreconditions.Jdk9OrLater)
    class EclipseJavaProjectModulesIntegrationTest extends AbstractEclipseIntegrationSpec {
    
        def "depend on modular project"() {
            setup:
            /*
            This is the multi-module project structure the integration test works with:
            -root
              -api
              -util
            */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. maven-resolver-provider/src/site/apt/dependency-types.apt

    | <<<test-jar>>>        | <<<tests>>>   | <<<jar>>>  | java      | classes, patch module |                       |
    *-----------------------+---------------+------------+-----------+-----------------------+-----------------------+
    | <<<modular-jar>>> *   | <<<tests>>>   | <<<jar>>>  | java      | modules               |                       |
    *-----------------------+---------------+------------+-----------+-----------------------+-----------------------+
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 06:12:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseJavaModulesIntegrationTest.groovy

                    implementation 'org:jlib:1.0'
                }
            """
        }
    
        @ToBeFixedForConfigurationCache
        def "dependencies are not marked as modules if the project itself is not modular"() {
            when:
            succeeds "eclipse"
    
            then:
            def libraries = classpath.libs
            libraries.size() == 3
            libraries[0].jarName == 'jmodule-1.0.jar'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. manifests/charts/README.md

    # Istio Installer
    
    Note: If making any changes to the charts or values.yaml in this dir, first read [UPDATING-CHARTS.md](UPDATING-CHARTS.md)
    
    Istio installer is a modular, 'a-la-carte' installer for Istio. It is based on a
    fork of the Istio helm templates, refactored to increase modularity and isolation.
    
    Goals:
    - Improve upgrade experience: users should be able to gradually roll upgrades, with proper
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/jvm/ModularitySpec.java

     * Since Java 9, these commands offer two different approaches to handle such a classpath:
     *
     * <ul>
     *   <li>A traditional classpath by using the --classpath parameter.
     *   <li>A modular classpath (module path) using the --module-path parameter.
     * </ul>
     *
     * If the --module-path is used, the Java Platform Module System (JPMS) becomes active and the module descriptors (module-info.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 11:38:01 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/core_dependency_management.adoc

    [[dependency_management_in_gradle]]
    = Dependency Management
    
    Software projects rarely work in isolation.
    Projects often rely on reusable functionality from libraries.
    Some projects organize unrelated functionality into separate parts of a modular system.
    
    Dependency management is an automated technique for declaring, resolving, and using functionality required by a project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java

         * is {@link JavaPathType#MODULES}, then this method returns {@code "--module-path"}.
         * The option does not include the {@linkplain JavaPathType.Modular#moduleName() module name}
         * on which it applies.
         *
         * @return the name of the tool option for this path type
         */
        @Nonnull
        Optional<String> option();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top