Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 137 for modelled (0.42 sec)

  1. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/README.adoc

    We want to apply a set of code quality checking rules to both types of projects and configure some aspects specific to each type.
    
    
    == Organizing build logic
    
    The use case can be modelled by layering three separate plugins:
    
    ====
    [.multi-language-sample]
    =====
    .Build logic layout
    [source, kotlin]
    ----
    ├── convention-plugins
    │   ├── build.gradle.kts
    │   ├── settings.gradle.kts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/LongRunningOperation.java

         * <p>
         * Be aware that not all of the Gradle command line options are supported!
         * Only the build arguments that configure the build execution are supported.
         * They are modelled in the Gradle API via {@link org.gradle.StartParameter}.
         * Examples of supported build arguments: '--info', '-p'.
         * The command line instructions that are actually separate commands (like '-?' and '-v') are not supported.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. cmd/import-boss/main.go

    		}
    	}
    	return false
    }
    
    func (boss *ImportBoss) Verify(pkg *packages.Package) []error {
    	pkgDir := packageDir(pkg)
    	if pkgDir == "" {
    		// This Package has no usable files, e.g. only tests, which are modelled in
    		// a distinct Package.
    		return nil
    	}
    
    	restrictionFiles, err := recursiveRead(filepath.Join(pkgDir, rulesFileName))
    	if err != nil {
    		return []error{fmt.Errorf("error finding rules file: %w", err)}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/extra-models.md

    Unsere Modelle teilen alle eine Menge der Daten und verdoppeln Attribut-Namen und -Typen.
    
    Das können wir besser machen.
    
    Wir deklarieren ein `UserBase`-Modell, das als Basis für unsere anderen Modelle dient. Dann können wir Unterklassen erstellen, die seine Attribute (Typdeklarationen, Validierungen, usw.) erben.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        if (!name.isRegistered() &&
            // Skip unmodelled ops that are handled differently.
            (node_type_name != "_Arg" && node_type_name != "_Retval") &&
            !unmodelled_op_names_.count(name.getIdentifier())) {
          if (node.op_def().is_stateful()) {
            VLOG(1) << "[potentially conservative] Op type `" << node.type_string()
                    << "` is stateful but effects not modelled";
          } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/cacheentry/ModelKey.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.cacheentry
    
    import org.gradle.internal.hash.HashCode
    import org.gradle.util.Path
    
    
    internal
    data class ModelKey(
        val identityPath: Path?,
        val modelName: String,
        val parameterHash: HashCode?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 857 bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/body-nested-models.md

    Und es wird entsprechend annotiert/dokumentiert.
    
    ## Verschachtelte Modelle
    
    Jedes Attribut eines Pydantic-Modells hat einen Typ.
    
    Aber dieser Typ kann selbst ein anderes Pydantic-Modell sein.
    
    Sie können also tief verschachtelte JSON-„Objekte“ deklarieren, mit spezifischen Attributnamen, -typen, und -validierungen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelSet.java

     * To add elements to the set, the {@link #create(Action)} method can be used.
     *
     * @param <T> the type of model object
     */
    @Incubating
    public interface ModelSet<T> extends Set<T>, ModelElement {
    
        /**
         * Declares a new set element, configured by the given action.
         *
         * @param action the object configuration
         */
        void create(Action<? super T> action);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. docs/de/docs/advanced/dataclasses.md

    * Dokumentation der Daten, usw.
    
    Das funktioniert genauso wie mit Pydantic-Modellen. Und tatsächlich wird es unter der Haube mittels Pydantic auf die gleiche Weise bewerkstelligt.
    
    !!! info
        Bedenken Sie, dass Datenklassen nicht alles können, was Pydantic-Modelle können.
    
        Daher müssen Sie möglicherweise weiterhin Pydantic-Modelle verwenden.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:18:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    |===
    
    So for GCC running on linux, the supported target platforms are 'linux/x86' and 'linux/x86_64'. For GCC running on Windows via Cygwin, platforms 'windows/x86' and 'windows/x86_64' are supported. (The Cygwin POSIX runtime is not yet modelled as part of the platform, but will be in the future.)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top