Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,506 for efter (0.12 sec)

  1. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      // broadcasting support. This needs to be run immediately after HLO->TF
      // legalization; otherwise other passes like `ConvertTFBroadcastTo` will
      // constant fold the newly generated TF broadcast ops and materialize the
      // weights.
      pass_manager.addNestedPass<mlir::func::FuncOp>(
          mlir::TF::CreateBroadcastFoldPass());
    
      // Canonicalization after TF legalization.
      pass_manager.addNestedPass<mlir::func::FuncOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    	defer utilruntime.HandleCrash()
    	defer tc.queue.ShutDown()
    
    	logger := klog.FromContext(ctx)
    	logger.Info("Starting TTL after finished controller")
    	defer logger.Info("Shutting down TTL after finished controller")
    
    	if !cache.WaitForNamedCacheSync("TTL after finished", ctx.Done(), tc.jListerSynced) {
    		return
    	}
    
    	for i := 0; i < workers; i++ {
    		go wait.UntilWithContext(ctx, tc.worker, time.Second)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/dra/claiminfo.go

    func (info *ClaimInfo) setCDIDevices(pluginName string, cdiDevices []string) error {
    	// NOTE: Passing CDI device names as annotations is a temporary solution
    	// It will be removed after all runtimes are updated
    	// to get CDI device names from the ContainerConfig.CDIDevices field
    	annotations, err := cdi.GenerateAnnotations(info.ClaimUID, info.DriverName, cdiDevices)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. internal/bucket/lifecycle/lifecycle.go

    //go:generate stringer -type Action $GOFILE
    
    const (
    	// NoneAction means no action required after evaluating lifecycle rules
    	NoneAction Action = iota
    	// DeleteAction means the object needs to be removed after evaluating lifecycle rules
    	DeleteAction
    	// DeleteVersionAction deletes a particular version
    	DeleteVersionAction
    	// TransitionAction transitions a particular object after evaluating lifecycle transition rules
    	TransitionAction
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h

    // First instance of "tf.OpB" after flattening will have
    //          `_parallel_execution_ids = "r0:0"`,
    //          which represents the first branch of replicate group 0.
    // Second instance of "tf.OpB" after flattening will have
    //          `_parallel_execution_ids = "r0:1"`
    //          which represents the second branch of replicate group 0.
    // First instance of "tf.OpC" after flattening will have
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/events.md

    The same way, you can define logic (code) that should be executed when the application is **shutting down**. In this case, this code will be executed **once**, **after** having handled possibly **many requests**.
    
    Because this code is executed before the application **starts** taking requests, and right after it **finishes** handling requests, it covers the whole application **lifespan** (the word "lifespan" will be important in a second 😉).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/node_matchers_test.cc

    TEST(NodeMatchers, Attrs) {
      Scope root = Scope::NewRootScope().ExitOnError();
      Output enter = ops::internal::Enter(
          root.WithOpName("enter"),
          ops::Placeholder(root.WithOpName("data"), DT_FLOAT), "frame_name",
          ops::internal::Enter::Attrs{}.IsConstant(true));
      EXPECT_THAT(enter.node(), NodeWith(Attr("is_constant", true)));
      EXPECT_EQ(Explain(enter.node(), NodeWith(Attr("is_constant", false))),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 14:43:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

        }
    
        def "cannot run command after stopped"() {
            Runnable command = Mock()
    
            given:
            coordinator.requestStop("REASON")
    
            when:
            coordinator.runCommand(command, "command")
    
            then:
            DaemonUnavailableException e = thrown()
            e.message == 'This daemon has stopped.'
        }
    
        def "cannot run command after start command action fails"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/compile.go

    var BuildDebug int
    var BuildTest int
    var BuildStats int
    var BuildDump map[string]bool = make(map[string]bool) // names of functions to dump after initial build of ssa
    
    var GenssaDump map[string]bool = make(map[string]bool) // names of functions to dump after ssa has been converted to asm
    
    // PhaseOption sets the specified flag in the specified ssa phase,
    // returning empty string if this was successful or a string explaining
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. hack/apidiff.sh

    echo
    compare () {
        what="$1"
        before="$2"
        after="$3"
        changes=$(apidiff -m "${before}" "${after}" 2>&1 | grep -v -e "^Ignoring internal package") || true
        echo "## ${what}"
        if [ -z "$changes" ]; then
            echo "no changes"
        else
            echo "$changes"
            echo
        fi
        incompatible=$(apidiff -incompatible -m "${before}" "${after}" 2>&1) || true
        if [ -n "$incompatible" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:00:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top