Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 125 for wastage (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. .teamcity/src/main/kotlin/configurations/StagePasses.kt

    import model.CIBuildModel
    import model.Stage
    import model.StageName
    import model.Trigger
    import projects.StageProject
    
    class StagePasses(model: CIBuildModel, stage: Stage, prevStage: Stage?, stageProject: StageProject) : BaseGradleBuildType(init = {
        id(stageTriggerId(model, stage))
        uuid = stageTriggerUuid(model, stage)
        name = stage.stageName.stageName + " (Trigger)"
        type = Type.COMPOSITE
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/projects/StageProject.kt

                }
            }
    
            specificBuildTypes = stage.specificBuilds.map {
                it.create(model, stage)
            }
            specificBuildTypes.forEach(this::buildType)
    
            performanceTests = stage.performanceTests.map { createPerformanceTests(model, performanceTestBucketProvider, stage, it) } +
                stage.flameGraphs.map { createFlameGraphs(model, stage, it) }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/audit/policy/util_test.go

    		desc           string
    		stages         []audit.Stage
    		expectedStages []audit.Stage
    	}{
    		{
    			desc: "should remove one",
    			stages: []audit.Stage{
    				audit.StageResponseStarted,
    			},
    			expectedStages: []audit.Stage{
    				audit.StageRequestReceived,
    				audit.StageResponseComplete,
    				audit.StagePanic,
    			},
    		},
    		{
    			desc: "should remove both",
    			stages: []audit.Stage{
    				audit.StageResponseStarted,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 09 22:38:00 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/util/StageTest.groovy

            expect:
            Stage.from(1, "2") < Stage.from(1, "3")
            Stage.from(1, "4") > Stage.from(1, "3")
    
            Stage.from(1, "9") < Stage.from(2, "1")
            Stage.from(2, "1") > Stage.from(1, "9")
    
            Stage.from(1, "1") < Stage.from(1, "1a")
            Stage.from(1, "1a") > Stage.from(1, "1")
    
            Stage.from(1, "1a") < Stage.from(1, "1b")
            Stage.from(1, "1b") > Stage.from(1, "1a")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 10 06:35:14 UTC 2021
    - 1.7K bytes
    - Viewed (0)
Back to top