Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 627 for pusha (0.1 sec)

  1. 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)
  2. .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)
  3. .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)
  4. 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)
  5. 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)
  6. src/container/heap/example_intheap_test.go

    func (h IntHeap) Len() int           { return len(h) }
    func (h IntHeap) Less(i, j int) bool { return h[i] < h[j] }
    func (h IntHeap) Swap(i, j int)      { h[i], h[j] = h[j], h[i] }
    
    func (h *IntHeap) Push(x any) {
    	// Push and Pop use pointer receivers because they modify the slice's length,
    	// not just its contents.
    	*h = append(*h, x.(int))
    }
    
    func (h *IntHeap) Pop() any {
    	old := *h
    	n := len(old)
    	x := old[n-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java

                    nodes.push(currentList);
                    return true;
                }
                if (elementName.equals("dt")) {
                    if (currentItem != null) {
                        nodes.pop();
                    }
                    currentItem = document.createElement("varlistentry");
                    nodes.push(currentItem);
                    nodes.push(document.createElement("term"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 29.3K 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