Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for pushfw (0.12 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	MOVSD:     "movsl",
    	MOVSD_XMM: "movsd",
    	OUTSD:     "outsl",
    	POPA:      "popaw",
    	POPAD:     "popa",
    	POPF:      "popfw",
    	POPFD:     "popf",
    	PUSHA:     "pushaw",
    	PUSHAD:    "pusha",
    	PUSHF:     "pushfw",
    	PUSHFD:    "pushf",
    	SCASB:     "scas",
    	SCASD:     "scas",
    	SCASQ:     "scas",
    	SCASW:     "scas",
    	STOSB:     "stos",
    	STOSD:     "stos",
    	STOSQ:     "stos",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta.go

    			}
    		case ev := <-con.PushCh():
    			pushEv := ev.(*Event)
    			err := s.pushConnectionDelta(con, pushEv)
    			pushEv.done()
    			if err != nil {
    				return err
    			}
    		case <-con.StopCh():
    			return nil
    		}
    	}
    }
    
    // Compute and send the new configuration for a connection.
    func (s *DiscoveryServer) pushConnectionDelta(con *Connection, pushEv *Event) error {
    	pushRequest := pushEv.pushRequest
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. pilot/pkg/xds/ads.go

    }
    
    func (conn *Connection) Push(ev any) error {
    	pushEv := ev.(*Event)
    	err := conn.s.pushConnection(conn, pushEv)
    	pushEv.done()
    	return err
    }
    
    // processRequest handles one discovery request. This is currently called from the 'main' thread, which also
    // handles 'push' requests and close - the code will eventually call the 'push' code, and it needs more mutex
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. pilot/pkg/xds/discovery.go

    			proxiesQueueTime.Record(time.Since(push.Start).Seconds())
    			var closed <-chan struct{}
    			if client.deltaStream != nil {
    				closed = client.deltaStream.Context().Done()
    			} else {
    				closed = client.StreamDone()
    			}
    			go func() {
    				pushEv := &Event{
    					pushRequest: push,
    					done:        doneFunc,
    				}
    
    				select {
    				case client.PushCh() <- pushEv:
    					return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/runtime/mkpreempt.go

    	for _, reg := range regNamesAMD64 {
    		if strings.HasPrefix(reg, "X") {
    			lSSE.add("MOVUPS", reg, 16)
    		}
    	}
    
    	// TODO: MXCSR register?
    
    	p("PUSHQ BP")
    	p("MOVQ SP, BP")
    	p("// Save flags before clobbering them")
    	p("PUSHFQ")
    	p("// obj doesn't understand ADD/SUB on SP, but does understand ADJSP")
    	p("ADJSP $%d", lSSE.stack)
    	p("// But vet doesn't know ADJSP, so suppress vet stack checking")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. pilot/pkg/features/experimental.go

    	"istio.io/istio/pkg/env"
    	"istio.io/istio/pkg/log"
    )
    
    // Define experimental features here.
    var (
    	// FilterGatewayClusterConfig controls if a subset of clusters(only those required) should be pushed to gateways
    	FilterGatewayClusterConfig = env.Register("PILOT_FILTER_GATEWAY_CLUSTER_CONFIG", false,
    		"If enabled, Pilot will send only clusters that referenced in gateway virtual services attached to gateway").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. mockwebserver/src/main/kotlin/mockwebserver3/MockResponse.kt

         * pushed stream to this response.
         */
        fun addPush(promise: PushPromise) =
          apply {
            this.pushPromises += promise
          }
    
        /**
         * When [protocols][MockWebServer.protocols] include [HTTP_2][okhttp3.Protocol], this pushes
         * [settings] before writing the response.
         */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/obj6.go

    							ctxt.DiagFlush()
    							log.Fatalf("bad SPWRITE")
    						}
    					}
    				}
    			}
    			continue
    
    		case APUSHL, APUSHFL:
    			deltasp += 4
    			p.Spadj = 4
    			continue
    
    		case APUSHQ, APUSHFQ:
    			deltasp += 8
    			p.Spadj = 8
    			continue
    
    		case APUSHW, APUSHFW:
    			deltasp += 2
    			p.Spadj = 2
    			continue
    
    		case APOPL, APOPFL:
    			deltasp -= 4
    			p.Spadj = -4
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  9. 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)
  10. samples/bookinfo/README.md

    ```
    
    Docker images are now created.
    
    ## Push docker images to docker hub
    
    After the local build is successful, you will need to push the images to Docker hub.  You may need to login to Docker before you run the command using `docker login`.
    
    ```bash
    cd samples/bookinfo
    BOOKINFO_LATEST=true BOOKINFO_TAG=$TAG BOOKINFO_HUB=$HUB src/build-services.sh --push
    ```
    
    For example:
    
    ```bash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
Back to top