Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 427 for pusha (0.09 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/stack_ops_decomposition.mlir

      %push = "tf.StackPushV2"(%stack, %elem) {swap_memory = false} : (tensor<!tf_type.resource>, tensor<2xi32>) -> tensor<2xi32>
      "tf.StackCloseV2"(%stack) : (tensor<!tf_type.resource>) -> ()
      // CHECK-NEXT: return %[[PUSH_VAL]] : tensor<2xi32>
      func.return %push : tensor<2xi32>
    }
    
    // -----
    
    // Tests while loop.
    
    // CHECK-LABEL: func @main
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/call_graph_util.h

        func::FuncOp root, SymbolTable &symtab,
        const std::function<bool(SymbolUserOpInterface)> &predicate,
        llvm::SmallVector<SymbolUserOpInterface> &ops) {
      std::stack<func::FuncOp> worklist;
      worklist.push(root);
      while (!worklist.empty()) {
        func::FuncOp u = worklist.top();
        worklist.pop();
        auto result = u.walk([&](SymbolUserOpInterface op) {
          if (llvm::isa<T, Types...>(op) && (!predicate || predicate(op))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Dec 16 06:18:49 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. pilot/pkg/xds/discovery_test.go

    					pushes[proxy.ID()]++
    					pushesMu.Unlock()
    				case <-stopCh:
    					return
    				}
    			}
    		}()
    	}
    	go doSendPushes(stopCh, semaphore, queue)
    
    	for push := 0; push < 100; push++ {
    		for _, proxy := range proxies {
    			queue.Enqueue(proxy, &model.PushRequest{Push: &model.PushContext{}})
    		}
    		time.Sleep(time.Millisecond * 10)
    	}
    	for queue.Pending() > 0 {
    		time.Sleep(time.Millisecond)
    	}
    	pushesMu.Lock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/waypoint.go

    func findWaypointResources(node *model.Proxy, push *model.PushContext) ([]model.WorkloadInfo, *waypointServices) {
    	key := model.WaypointKeyForProxy(node)
    	workloads := push.WorkloadsForWaypoint(key)
    	serviceInfos := push.ServicesForWaypoint(key)
    
    	waypointServices := &waypointServices{}
    	for _, s := range serviceInfos {
    		hostName := host.Name(s.Service.Hostname)
    		svc, ok := push.ServiceIndex.HostnameAndNamespace[hostName][s.Namespace]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/buildcache/LocalTaskOutputCacheCrossBuildPerformanceTest.groovy

        def "assemble with local cache (build comparison)"() {
            def noPushInitScript = temporaryFolder.file("no-push.gradle")
            noPushInitScript << """
                settingsEvaluated { settings ->
                    settings.buildCache {
                        local {
                            push = false
                        }
                    }
                }
            """.stripIndent()
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DispatchingBuildCacheIntegrationTest.groovy

                    @TaskAction void doSomething() {
                        outputFile.text = inputFile.text + cacheOrigin.text
                    }
                }
            """.stripIndent()
        }
    
        def 'push to local'() {
            pushToLocal()
    
            when:
            withBuildCache().run cacheableTask
    
            then:
            executedAndNotSkipped(cacheableTask)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 15:17:04 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. pilot/pkg/features/tuning.go

    	}()
    
    	DebounceAfter = env.Register(
    		"PILOT_DEBOUNCE_AFTER",
    		100*time.Millisecond,
    		"The delay added to config/registry events for debouncing. This will delay the push by "+
    			"at least this interval. If no change is detected within this period, the push will happen, "+
    			" otherwise we'll keep delaying until things settle, up to a max of PILOT_DEBOUNCE_MAX.",
    	).Get()
    
    	DebounceMax = env.Register(
    		"PILOT_DEBOUNCE_MAX",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (1)
  8. tensorflow/compiler/mlir/tensorflow/tests/tensor_list_ops_decomposition.mlir

      %pop:2 = "tf.TensorListPopBack"(%push, %elem_shape) : (tensor<!tf_type.variant<tensor<f32>>>, tensor<0xi32>) -> (tensor<!tf_type.variant<tensor<f32>>>, tensor<f32>)
      // CHECK-NEXT: %[[SCALAR_SHAPE:.*]] = "tf.Const"() <{value = dense<> : tensor<0xi32>}>
      // CHECK-NEXT: %[[LENGTH:.*]] = "tf.Reshape"(%[[NEW_SIZE]], %[[SCALAR_SHAPE]])
      %length = "tf.TensorListLength"(%push) : (tensor<!tf_type.variant<tensor<f32>>>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 38.6K bytes
    - Viewed (0)
  9. .github/workflows/maven_build_itself.yml

    # specific language governing permissions and limitations
    # under the License.
    
    name: Can Maven build itself
    
    on: [push, pull_request]
    
    # clear all permissions for GITHUB_TOKEN
    permissions: {}
    
    jobs:
      build:
    
        # execute on any push or pull request from forked repo
        if: github.event_name == 'push' || ( github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork )
    
        strategy:
          matrix:
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. .github/workflows/arm-cd.yml

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    
    name: ARM CD
    
    on:
      push:
        tags:
          - v2.**
        branches:
          - r2.**
      schedule:
        - cron: '0 8 * * *'
    
    permissions:
      contents: read
    
    jobs:
      build:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 10:24:16 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top