Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 308 for wastage (0.53 sec)

  1. src/runtime/malloc.go

    			// Current setting is 16 bytes, which relates to 2x worst case memory
    			// wastage (when all but one subobjects are unreachable).
    			// 8 bytes would result in no wastage at all, but provides less
    			// opportunities for combining.
    			// 32 bytes provides more opportunities for combining,
    			// but can lead to 4x worst case wastage.
    			// The best case winning is 8x regardless of block size.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/cluster_scoping_pass.cc

    // purpose of discussion.  After adding scopes for both Stage and Unstage,
    // Node_Y will receive both scopes "unstage" and "stage", while Node_X receives
    // only scope "stage".  The semantic of scope "unstage" is preserved although
    // scope "stage" is later appended.  As a result, Node_X and Node_Y will be put
    // into different clusters.
    //
    //                Unstage -> Node_Y (scope "unstage & stage")
    //                              |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. cluster/gce/gci/mounter/stage-upload.sh

    cleanup() {
        rm -rf "${DOWNLOAD_DIR}"
        rm -rf "${STAGING_DIR}"
        cd "${CWD}"
    }
    
    # Delete temporary directories on exit
    trap cleanup EXIT
    
    mkdir "${ACI_DIR}"
    
    # Convert docker image to aci and stage it
    echo "Downloading docker2aci ${DOCKER2ACI_VERSION}"
    wget "https://github.com/appc/docker2aci/releases/download/${DOCKER2ACI_VERSION}/docker2aci-${DOCKER2ACI_VERSION}.tar.gz" >/dev/null 2>&1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 23 18:27:20 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/ParserToCompilerTest.kt

                "stage 1 buildscript\nstage 1 plugins\n"
            )
        }
    
        @Test
        fun `pluginManagement then buildscript then plugins`() {
            val source = ProgramSource(
                "settings.gradle.kts",
                """
                pluginManagement { println("stage 1 pluginManagement") }
                buildscript { println("stage 1 buildscript") }
                plugins { println("stage 1 plugins") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/cluster_scoping_pass_test.cc

                                             .WithAttr("value", Tensor()));
        Node* unstage = ops::SourceOp(
            "Unstage",
            builder.opts().WithName("unstage").WithAttr("dtypes", {DT_FLOAT}));
    
        Node* add0 = ops::BinaryOp("Add", a, b, builder.opts().WithName("add0"));
        Node* add1 =
            ops::BinaryOp("Add", unstage, b, builder.opts().WithName("add1"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 29 16:20:48 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/util/internal/DefaultGradleVersion.java

        }
    
        static final class Stage implements Comparable<Stage> {
            final int stage;
            final int number;
            final Character patchNo;
    
            private Stage(int stage, int number, Character patchNo) {
                this.stage = stage;
                this.number = number;
                this.patchNo = patchNo;
            }
    
            static Stage from(int stage, String stageString) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. docs/fr/docs/project-generation.md

    * Hashage de **mots de passe sécurisé** par défaut.
    * Authentification par **jetons JWT**.
    * Modèles **SQLAlchemy** (indépendants des extensions Flask, afin qu'ils puissent être utilisés directement avec des *workers* Celery).
    * Modèle de démarrages basiques pour les utilisateurs (à modifier et supprimer au besoin).
    * Migrations **Alembic**.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 02 14:18:06 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompilerTest.kt

                expectedStage1Output = "stage 1 buildscript\nstage 1 plugins\n"
            )
        }
    
        @Test
        fun `Dynamic(Static(Eval(pluginManagement, CloseTargetScope)))`() {
            val fragment =
                fragment("pluginManagement", """println("stage 1")""")
    
            val stage2 =
                fragment.source.map {
                    text("""println("stage 2")""")
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/InterpreterTest.kt

            }
    
            try {
    
                val target = mock<Settings>()
                val subject = Interpreter(host)
                assertStandardOutputOf("stage 1\nstage 2\n") {
                    subject.eval(
                        target,
                        scriptSource,
                        sourceHash,
                        mock(),
                        targetScope,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/model/CIBuildModel.kt

            override fun create(model: CIBuildModel, stage: Stage): BaseGradleBuildType {
                return CompileAll(model, stage)
            }
        },
        SanityCheck {
            override fun create(model: CIBuildModel, stage: Stage): BaseGradleBuildType {
                return SanityCheck(model, stage)
            }
        },
        BuildDistributions {
            override fun create(model: CIBuildModel, stage: Stage): BaseGradleBuildType {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top