Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 247 for lifo (0.07 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions_with_quantization_specs.mlir

    // RUN: stablehlo-quant-opt %s -stablehlo-test-lift-quantizable-spots-as-functions-with-quantization-specs="quantization-specs=disable-all-dot-general" \
    // RUN:   -split-input-file | FileCheck %s --check-prefix=DISABLE-ALL-DOT-GENERAL
    
    // Tests that `composite_dot_general_fn_1` and its corresponding XlaCallModuleOp
    // contains attributes required for quantization, including the
    // `_quantization_method` attribute that contains textpb of `Method`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 18:09:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. pkg/kubelet/pleg/pleg.go

    */
    
    package pleg
    
    import (
    	"time"
    
    	"k8s.io/apimachinery/pkg/types"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    // PodLifeCycleEventType define the event type of pod life cycle events.
    type PodLifeCycleEventType string
    
    type RelistDuration struct {
    	// The period for relisting.
    	RelistPeriod time.Duration
    	// The relisting threshold needs to be greater than the relisting period +
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 16:14:26 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/string_templateNonConst.kt

    val QUESTION = "the ultimate question of life, the universe, and everything"
    val ANSWER = 42
    val QUESTION_MEANING = null
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Feb 15 15:45:22 UTC 2023
    - 228 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tutorial/stopExecutionException/kotlin/build.gradle.kts

    val compile by tasks.registering {
        doLast {
            println("We are doing the compile.")
        }
    }
    
    compile {
        doFirst {
            // Here you would put arbitrary conditions in real life.
            if (true) {
                throw StopExecutionException()
            }
        }
    }
    tasks.register("myTask") {
        dependsOn(compile)
        doLast {
            println("I am not affected")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 380 bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/string_templateConst.txt

    expression: "The answer to ${QUESTION} is ${ANSWER}."
    constant: "The answer to the ultimate question of life, the universe, and everything is 42."
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 173 bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/string_templateConst.kt

    const val QUESTION = "the ultimate question of life, the universe, and everything"
    const val ANSWER = 42
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Feb 15 15:45:22 UTC 2023
    - 175 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/stopExecutionException/groovy/build.gradle

    def compile = tasks.register('compile') {
        doLast {
            println 'We are doing the compile.'
        }
    }
    
    compile.configure {
        doFirst {
            // Here you would put arbitrary conditions in real life.
            if (true) {
                throw new StopExecutionException()
            }
        }
    }
    tasks.register('myTask') {
        dependsOn('compile')
        doLast {
            println 'I am not affected'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 401 bytes
    - Viewed (0)
  8. tests/test_tutorial/test_custom_request_and_route/test_tutorial003.py

        assert "X-Response-Time" not in response.headers
    
    
    def test_get_timed():
        response = client.get("/timed")
        assert response.json() == {"message": "It's the time of my life"}
        assert "X-Response-Time" in response.headers
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 09 18:06:12 UTC 2020
    - 526 bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testlife/testdata/main.go

    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build test_run
    
    // Run the game of life in C using Go for parallelization.
    
    package main
    
    import (
    	"flag"
    	"fmt"
    
    	"cgolife"
    )
    
    const MAXDIM = 100
    
    var dim = flag.Int("dim", 16, "board dimensions")
    var gen = flag.Int("gen", 10, "generations")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 803 bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/concurrent/ResurrectingThread.kt

     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.concurrent
    
    import kotlin.concurrent.thread
    
    
    /**
     * A thread that comes back to life when [poke]d.
     */
    internal
    class ResurrectingThread(val name: String, val block: () -> Unit) {
    
        private
        var thread: Thread? = null
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top