Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,622 for goes (0.07 sec)

  1. tests/integration/pilot/analyze_test.go

    			output, err := istioctlSafe(t, istioCtl, ns.Name(), false, virtualServiceFile)
    			expectMessages(t, g, output, msg.ReferencedResourceNotFound)
    			g.Expect(err).To(BeIdenticalTo(analyzerFoundIssuesError))
    
    			// Error goes away if we define the subset in the destination rule.
    			output, err = istioctlSafe(t, istioCtl, ns.Name(), false, destinationRuleFile)
    			expectNoMessages(t, g, output)
    			g.Expect(err).To(BeNil())
    		})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. src/runtime/mbarrier.go

    //
    //     writePointer(slot, ptr):
    //         shade(*slot)
    //         if current stack is grey:
    //             shade(ptr)
    //         *slot = ptr
    //
    // slot is the destination in Go code.
    // ptr is the value that goes into the slot in Go code.
    //
    // Shade indicates that it has seen a white pointer by adding the referent
    // to wbuf as well as marking it.
    //
    // The two shades and the condition work together to prevent a mutator
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. docs/en/docs/async.md

    Everyone before you is waiting for their burgers to be ready before leaving the counter because each of the 8 cashiers goes and prepares the burger right away before getting the next order.
    
    <img src="/img/async/parallel-burgers/parallel-burgers-01.png" class="illustration">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/capture/run.go

    // in two separate conntrack zones to avoid issues with UDP conntrack race conditions.
    // Traffic that goes from istio to DNS servers and vice versa are zone 1 and traffic from
    // DNS client to istio and vice versa goes to zone 2
    func addConntrackZoneDNSUDP(
    	f UDPRuleApplier, proxyUID, proxyGID string, dnsServersV4 []string, dnsServersV6 []string, captureAllDNS bool,
    ) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  5. src/regexp/onepass.go

    			// check no-input paths to InstMatch
    			matchOut := m[inst.Out]
    			matchArg := m[inst.Arg]
    			if matchOut && matchArg {
    				ok = false
    				break
    			}
    			// Match on empty goes in inst.Out
    			if matchArg {
    				inst.Out, inst.Arg = inst.Arg, inst.Out
    				matchOut, matchArg = matchArg, matchOut
    			}
    			if matchOut {
    				m[pc] = true
    				inst.Op = syntax.InstAltMatch
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. common/scripts/kind_provisioner.sh

    # 3. CONFIG: KinD cluster configuration YAML file. If not specified then DEFAULT_CLUSTER_YAML is used
    # 4. NOMETALBINSTALL: Dont install matllb if set.
    # This function returns 0 when everything goes well, or 1 otherwise
    # If Kind cluster was already created then it would be cleaned up in case of errors
    function setup_kind_cluster() {
      local NAME="${1:-istio-testing}"
      local IMAGE="${2:-"${DEFAULT_KIND_IMAGE}"}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. src/internal/profile/graph.go

    		if dw == 0 && w == 0 {
    			continue
    		}
    		for k := range seenNode {
    			delete(seenNode, k)
    		}
    		for k := range seenEdge {
    			delete(seenEdge, k)
    		}
    		var parent *Node
    		// A residual edge goes over one or more nodes that were not kept.
    		residual := false
    
    		// Group the sample frames, based on a global map.
    		// Count only the last two frames as a call edge. Frames higher up
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. internal/grid/muxclient.go

    	err := m.sendLocked(message{Op: OpPing, MuxID: m.MuxID})
    	m.respMu.Unlock()
    	if err != nil {
    		m.addErrorNonBlockingClose(respHandler, err)
    	}
    	return err == nil
    }
    
    // responseCh is the channel to that goes to the requester.
    // internalResp is the channel that comes from the server.
    func (m *muxClient) handleTwowayResponses(responseCh chan<- Response, internalResp <-chan Response) {
    	defer func() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/language/tables.go

    	group    uint8
    	distance uint8
    }
    
    // matchLang holds pairs of langIDs of base languages that are typically
    // mutually intelligible. Each pair is associated with a confidence and
    // whether the intelligibility goes one or both ways.
    var matchLang = []mutualIntelligibility{ // 113 elements
    	0:   {want: 0x1d1, have: 0xb7, distance: 0x4, oneway: false},
    	1:   {want: 0x407, have: 0xb7, distance: 0x4, oneway: false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/block.go

    // Then the indexes tell you whether x is chosen from
    // the if or else branch from b.
    //
    //	b.Succs = [{c,0},{c,1}]
    //	c.Preds = [{b,0},{b,1}]
    //
    // means x is chosen if k is true.
    type Edge struct {
    	// block edge goes to (in a Succs list) or from (in a Preds list)
    	b *Block
    	// index of reverse edge.  Invariant:
    	//   e := x.Succs[idx]
    	//   e.b.Preds[e.i] = Edge{x,idx}
    	// and similarly for predecessors.
    	i int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top