Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 627 for pusha (0.04 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. src/runtime/rt0_windows_386.s

    	CALL	AX
    
    	MOVL	0x08(SP), BP
    	MOVL	0x0C(SP), BX
    	MOVL	0x10(SP), AX
    	MOVL	0x14(SP), CX
    	MOVL	0x18(SP), DX
    	RET
    
    TEXT _rt0_386_windows_lib_go(SB),NOSPLIT,$0
    	PUSHL	$0
    	PUSHL	$0
    	JMP	runtime·rt0_go(SB)
    
    TEXT _main(SB),NOSPLIT,$0
    	// Remove the return address from the stack.
    	// rt0_go doesn't expect it to be there.
    	ADDL	$4, SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 04:03:16 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/test/framework/components/echo/kube/pod_controller.go

    		AddFunc: func(pod *corev1.Pod) {
    			q.Push(func() error {
    				return handlers.added(pod)
    			})
    		},
    		UpdateFunc: func(old, cur *corev1.Pod) {
    			q.Push(func() error {
    				if old.GetResourceVersion() != cur.GetResourceVersion() {
    					return handlers.updated(cur)
    				}
    				return nil
    			})
    		},
    		DeleteFunc: func(pod *corev1.Pod) {
    			q.Push(func() error {
    				return handlers.deleted(pod)
    			})
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 09 02:22:47 UTC 2023
    - 2.6K bytes
    - Viewed (1)
  8. pilot/pkg/bootstrap/config_compare.go

    // needsPush checks whether the passed in config has same spec and hence push needs
    // to be triggered. This is to avoid unnecessary pushes only when labels have changed
    // for example.
    func needsPush(prev config.Config, curr config.Config) bool {
    	if prev.GroupVersionKind != curr.GroupVersionKind {
    		// This should never happen.
    		return true
    	}
    	// If the config is not Istio, let us just push.
    	if !strings.HasSuffix(prev.GroupVersionKind.Group, "istio.io") {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 03 16:47:35 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. 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)
  10. pkg/queue/instance.go

    type queueTask struct {
    	task        Task
    	enqueueTime time.Time
    	startTime   time.Time
    }
    
    // Instance of work tickets processed using a rate-limiting loop
    type baseInstance interface {
    	// Push a task.
    	Push(task Task)
    	// Run the loop until a signal on the channel
    	Run(<-chan struct{})
    	// Closed returns a chan that will be signaled when the Instance has stopped processing tasks.
    	Closed() <-chan struct{}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 21 16:30:36 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top