Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 530 for pusha (0.64 sec)

  1. src/runtime/sys_netbsd_386.s

    	MOVL	$SYS__lwp_create, AX
    	INT	$0x80
    	JCC	2(PC)
    	NEGL	AX
    	MOVL	AX, ret+12(FP)
    	RET
    
    TEXT runtime·lwp_tramp(SB),NOSPLIT,$0
    
    	// Set FS to point at m->tls
    	LEAL	m_tls(BX), BP
    	PUSHAL				// save registers
    	PUSHL	BP
    	CALL	lwp_setprivate<>(SB)
    	POPL	AX
    	POPAL
    
    	// Now segment is established. Initialize m, g.
    	get_tls(AX)
    	MOVL	DX, g(AX)
    	MOVL	BX, g_m(DX)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/grpcgen/rds.go

    // Returns true of the request is of this type.
    func (g *GrpcConfigGenerator) BuildHTTPRoutes(node *model.Proxy, push *model.PushContext, routeNames []string) model.Resources {
    	resp := model.Resources{}
    	for _, routeName := range routeNames {
    		if rc := buildHTTPRoute(node, push, routeName); rc != nil {
    			resp = append(resp, &discovery.Resource{
    				Name:     routeName,
    				Resource: protoconv.MessageToAny(rc),
    			})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. pilot/pkg/xds/delta.go

    	// Do not call: defer close(con.pushChannel). The push channel will be garbage collected
    	// when the connection is no longer used. Closing the channel can cause subtle race conditions
    	// with push. According to the spec: "It's only necessary to close a channel when it is important
    	// to tell the receiving goroutines that all data have been sent."
    
    	// Block until either a request is received or a push is triggered.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  4. .github/workflows/sigbuild-docker.yml

              echo "DATE=$(date +'%Y-%m-%d')" >> "$GITHUB_OUTPUT"
            id: tf-version
          -
            name: Build and push
            id: docker_build
            uses: docker/build-push-action@c56af957549030174b10d6867f20e78cfd7debc5 # v3.2.0
            with:
              push: true
              context: ./tensorflow/tools/tf_sig_build_dockerfiles
              target: devel
              build-args: |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. .github/workflows/sigbuild-docker-branch.yml

              echo "REF=$(echo $GITHUB_REF_NAME | sed 's/r//g')" >> "$GITHUB_OUTPUT"
            id: vars
          -
            name: Build and push
            id: docker_build
            uses: docker/build-push-action@c56af957549030174b10d6867f20e78cfd7debc5 # v3.2.0
            with:
              push: true
              context: ./tensorflow/tools/tf_sig_build_dockerfiles
              target: devel
              build-args: |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_waypoint.go

    	m := &matcher.StringMatcher{}
    
    	m.MatchPattern = &matcher.StringMatcher_Prefix{
    		Prefix: spiffe.URIPrefix + push.Mesh.GetTrustDomain() + "/ns/" + proxy.Metadata.Namespace + "/sa/",
    	}
    	return cb.buildConnectOriginate(proxy, push, m)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/ConcurrentGroupingQueueTest.kt

            val subject = ConcurrentGroupingQueue<Request> { group == it.group }
            for ((r1, r2) in requestsInGroup1 zip requestsInGroup2) {
                // interleave the requests
                subject.push(r1)
                subject.push(r2)
            }
    
            assertThat(
                subject.nextGroup(),
                equalTo(requestsInGroup2.reversed())
            )
    
            assertThat(
                subject.nextGroup(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/gateway.go

    // To handle this, we generate a filter chain per upstream cluster
    func builtAutoPassthroughFilterChains(push *model.PushContext, proxy *model.Proxy, hosts []string) []*filterChainOpts {
    	// We do not want any authz here, so build a new LB without it set
    	lb := &ListenerBuilder{
    		node: proxy,
    		push: push,
    	}
    	filterChains := make([]*filterChainOpts, 0)
    	for _, service := range proxy.SidecarScope.Services() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  9. src/runtime/lfstack_test.go

    	global = stack // force heap allocation
    
    	// Check the stack is initially empty.
    	if LFStackPop(stack) != nil {
    		t.Fatalf("stack is not empty")
    	}
    
    	// Push one element.
    	node := allocMyNode(42)
    	LFStackPush(stack, fromMyNode(node))
    
    	// Push another.
    	node = allocMyNode(43)
    	LFStackPush(stack, fromMyNode(node))
    
    	// Pop one element.
    	node = toMyNode(LFStackPop(stack))
    	if node == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 23:12:04 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/extension_config_builder.go

    func (configgen *ConfigGeneratorImpl) BuildExtensionConfiguration(
    	proxy *model.Proxy, push *model.PushContext, extensionConfigNames []string, pullSecrets map[string][]byte,
    ) []*core.TypedExtensionConfig {
    	envoyFilterPatches := push.EnvoyFilters(proxy)
    	extensions := envoyfilter.InsertedExtensionConfigurations(envoyFilterPatches, extensionConfigNames)
    	wasmPlugins := push.WasmPluginsByName(proxy, parseExtensionName(extensionConfigNames))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top