Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for subgroup (0.19 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/InclusiveRepositoryContentDescriptor.java

         * Declares that an entire group and its subgroups should be searched for in this repository.
         *
         * <p>
         * A subgroup is a group that starts with the given prefix and has a dot immediately after the prefix.
         * For example, if the prefix is {@code org.gradle}, then {@code org.gradle} is matched as a group,
         * and {@code org.gradle.foo} and {@code org.gradle.foo.bar} are matched as subgroups. {@code org.gradlefoo}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 10 23:09:47 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                            library("myLib", "org.gradle.test", "lib").version {
                                require "1.1"
                            }
                            library("myLib-subgroup", "org.gradle.test", "lib.subgroup").version {
                                require "1.1"
                            }
                        }
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/RepositoryContentDescriptor.java

         * Declares that an entire group and its subgroups shouldn't be searched for in this repository.
         *
         * <p>
         * A subgroup is a group that starts with the given prefix and has a dot immediately after the prefix.
         * For example, if the prefix is {@code org.gradle}, then {@code org.gradle} is matched as a group,
         * and {@code org.gradle.foo} and {@code org.gradle.foo.bar} are matched as subgroups. {@code org.gradlefoo}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 10 23:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. src/crypto/dsa/dsa.go

    // pair of integers. The security of the private key depends on the entropy of
    // rand.
    //
    // Note that FIPS 186-3 section 4.6 specifies that the hash should be truncated
    // to the byte-length of the subgroup. This function does not perform that
    // truncation itself.
    //
    // Be aware that calling Sign with an attacker-controlled [PrivateKey] may
    // require an arbitrary amount of CPU.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/KotlinDslVersionCatalogExtensionIntegrationTest.groovy

                dependencyResolutionManagement {
                    versionCatalogs {
                        create("libs") {
                            library("myLib", "org.gradle.test:lib:1.1")
                            library("myLib-subgroup", "org.gradle.test:lib2:1.1")
                        }
                    }
                }
            """
    
            withCheckDeps()
    
            buildKotlinFile << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptor.java

            SpecMatcher toMatcher() {
                switch (matcherKind) {
                    case SIMPLE:
                    case SUB_GROUP:
                        return new SimpleSpecMatcher(
                            group, module, version, versionSelectorScheme, versionSelectors, inclusive, matcherKind == MatcherKind.SUB_GROUP
                        );
                    case REGEX:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/scalar.go

    // the curve, the resulting value will not preserve any of the cofactor-clearing
    // properties that clamping is meant to provide. It will however work as
    // expected as long as it is applied to points on the prime order subgroup, like
    // in Ed25519. In fact, it is lost to history why RFC 8032 adopted the
    // irrelevant RFC 7748 clamping, but it is now required for compatibility.
    func (s *Scalar) SetBytesWithClamping(x []byte) (*Scalar, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    - `libs.groovy.core`
    - `libs.groovy.xml`
    - `libs.groovy.json`
    - `libs.androidx.awesome.lib`
    
    Where the `libs` prefix comes from the version catalog name.
    
    In case you want to avoid the generation of a subgroup accessor, we recommend relying on case to differentiate.
    For example the aliases `groovyCore`, `groovyJson` and `groovyXml` would be mapped to the `libs.groovyCore`, `libs.groovyJson` and `libs.groovyXml` accessors respectively.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_sharding_identification_pass.cc

        const int64_t tensor_rank = ranked_type.getRank();
        int tile_assignment_rank = sharding->tile_assignment_dimensions_size();
    
        // When a tensor is partial or subgroup tiled, its tile assignment will
        // have one or more dimension(s) than its rank; so, we subtract them to
        // determine which rank the sharding is compatible with.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tpu_sharding_identification.mlir

    func.func @cluster_func(%arg0: tensor<4x4x4x4xf32>) {
      func.return
    }
    
    // -----
    
    // Tests TPIv2 with a "subgroup tiled" XLA annotation where:
    //   type: OTHER
    //   tile_assignment_dimensions: [4, 1, 1, 1, 2]
    //   tile_assignment_devices: [0, 1, 2, 3, 4, 5, 6, 7]
    //   last_tile_dims: [REPLICATED]
    // Serialized string:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 19:07:52 UTC 2024
    - 47.5K bytes
    - Viewed (0)
Back to top