Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 134 for enter_0 (0.11 sec)

  1. tensorflow/compiler/jit/resource_operation_safety_analysis_test.cc

      Output init_value = ops::Placeholder(root.WithOpName("init"), DT_FLOAT);
      Output loop_cond = ops::Placeholder(root.WithOpName("init"), DT_BOOL);
      Output enter_value =
          ops::internal::Enter(root.WithOpName("enter"), init_value, "fr");
      ops::Merge iv(root.WithOpName("iv"), {enter_value, enter_value});
      ops::Switch latch(root.WithOpName("latch"), iv.output, loop_cond);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 28 16:53:59 UTC 2020
    - 18.7K bytes
    - Viewed (0)
  2. pkg/scheduler/metrics/metrics.go

    		&metrics.HistogramOpts{
    			Subsystem: SchedulerSubsystem,
    			Name:      "pod_scheduling_sli_duration_seconds",
    			Help:      "E2e latency for a pod being scheduled, from the time the pod enters the scheduling queue and might involve multiple scheduling attempts.",
    			// Start with 10ms with the last bucket being [~88m, Inf).
    			Buckets:        metrics.ExponentialBuckets(0.01, 2, 20),
    			StabilityLevel: metrics.BETA,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tpu_device_propagation.mlir

    func.func @testEnterOp(%arg0: tensor<i64> {tf.device = "/job:localhost/replica:0/task:0/device:TPU:0"}) -> tensor<i64> {
      %0 = tf_executor.graph {
        // CHECK:      tf_executor.Enter
        // CHECK-SAME: device = "/job:localhost/replica:0/task:0/device:TPU:0"
        %1:2 = tf_executor.Enter %arg0 frame "frame" : tensor<i64>
        tf_executor.fetch %1#0 : tensor<i64>
      }
      func.return %0 : tensor<i64>
    }
    
    // CHECK-LABEL: func @testExitOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 19K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java

            this.session = session.withLocalRepository(localRepository)
                    .withRemoteRepositories(Collections.singletonList(remoteRepository));
            InternalSession.associate(rss, this.session);
            sessionScope.enter();
            sessionScope.seed(InternalMavenSession.class, InternalMavenSession.from(this.session));
        }
    
        private Project project(Artifact artifact) {
            return session.getService(ProjectBuilder.class)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

            }
    
            //
            // We enter the session scope right after the MavenSession creation and before any of the
            // AbstractLifecycleParticipant lookups
            // so that @SessionScoped components can be @Injected into AbstractLifecycleParticipants.
            //
            sessionScope.enter();
            MavenChainedWorkspaceReader chainedWorkspaceReader =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

            Thread.currentThread().setContextClassLoader(pluginRealm);
    
            MavenSession oldSession = legacySupport.getSession();
    
            scope.enter();
    
            try {
                scope.seed(MavenProject.class, project);
                scope.seed(MojoExecution.class, mojoExecution);
                scope.seed(
                        org.apache.maven.api.plugin.Log.class,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. callbacks/preload.go

    	}
    	for _, relations := range embeddedRelations.EmbeddedRelations {
    		names = append(names, embeddedValues(relations)...)
    	}
    	return names
    }
    
    // preloadEntryPoint enters layer by layer. It will call real preload if it finds the right entry point.
    // If the current relationship is embedded or joined, current query will be ignored.
    //
    //nolint:cyclop
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. src/runtime/mcache.go

    	c.tinyAllocs = 0
    	memstats.heapStats.release()
    
    	// Update heapLive and heapScan.
    	gcController.update(dHeapLive, scanAlloc)
    }
    
    // prepareForSweep flushes c if the system has entered a new sweep phase
    // since c was populated. This must happen between the sweep phase
    // starting and the first allocation from c.
    func (c *mcache) prepareForSweep() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java

            session.setAllProjects(session.getProjects());
            session.setSession(defaultSessionFactory.newSession(session));
    
            SessionScope sessionScope = getContainer().lookup(SessionScope.class);
            sessionScope.enter();
            sessionScope.seed(MavenSession.class, session);
            sessionScope.seed(Session.class, session.getSession());
            sessionScope.seed(InternalMavenSession.class, InternalMavenSession.from(session.getSession()));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

        absl::flat_hash_set<Operation*> last_writes = GetLastWrites(resource);
        stack_down_.back()[resource] = last_writes;
      }
      Enter();
    }
    
    void SideEffectAnalysisInfo::Lateral() {
      Exit();
      Enter();
    }
    
    void SideEffectAnalysisInfo::Up() {
      Exit();
      for (const auto& [resource, last_writes] : stack_up_.back()) {
        SetLastWrites(resource, last_writes);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top