Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for unsub (0.08 sec)

  1. pkg/adsc/delta.go

    }
    
    func (c *Client) update(t string, sub, unsub set.Set[string], d *discovery.DeltaDiscoveryResponse) {
    	req := &discovery.DeltaDiscoveryRequest{
    		Node: &core.Node{
    			Id: c.nodeID(),
    		},
    		TypeUrl:       t,
    		ResponseNonce: d.Nonce,
    	}
    	if sub != nil {
    		req.ResourceNamesSubscribe = sub.UnsortedList()
    	}
    	if unsub != nil {
    		req.ResourceNamesUnsubscribe = unsub.UnsortedList()
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta.go

    func (s *DiscoveryServer) processDeltaRequest(req *discovery.DeltaDiscoveryRequest, con *Connection) error {
    	stype := v3.GetShortType(req.TypeUrl)
    	deltaLog.Debugf("ADS:%s: REQ %s resources sub:%d unsub:%d nonce:%s", stype,
    		con.ID(), len(req.ResourceNamesSubscribe), len(req.ResourceNamesUnsubscribe), req.ResponseNonce)
    
    	if req.TypeUrl == v3.HealthInfoType {
    		s.handleWorkloadHealthcheck(con.proxy, deltaToSotwRequest(req))
    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. pkg/istio-agent/xds_proxy_delta.go

    				// only send healthcheck probe after LDS request has been sent
    				continue
    			}
    			log.WithLabels(
    				"type", model.GetShortType(req.TypeUrl),
    				"sub", len(req.ResourceNamesSubscribe),
    				"unsub", len(req.ResourceNamesUnsubscribe),
    				"nonce", req.ResponseNonce,
    				"initial", len(req.InitialResourceVersions),
    			).Debugf("delta request")
    			metrics.XdsProxyRequests.Increment()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/preflight.go

    	if err != nil {
    		return err
    	}
    	if len(unsupportedCoreDNS) != 0 {
    		var UnsupportedPlugins []string
    		for _, unsup := range unsupportedCoreDNS {
    			UnsupportedPlugins = append(UnsupportedPlugins, unsup.ToString())
    		}
    		fmt.Println("[preflight] The corefile contains plugins that kubeadm/CoreDNS does not know how to migrate. " +
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 25 13:53:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultFileSystemAccessTest.groovy

            assertIsFileSnapshot(snapshot, regularParent)
        }
    
        def "can read a directory"() {
            TestFile someDir = temporaryFolder.file("some/path/to/dir").create {
                dir("sub") {
                    file("inSub")
                    dir("subsub") {
                        file("inSubSub")
                    }
                }
                file("inDir")
                dir("sibling") {
                    file("inSibling")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. src/math/big/float.go

    // but using the sign of z for rounding the result.
    // x and y must have a non-empty mantissa and valid exponent.
    func (z *Float) usub(x, y *Float) {
    	// This code is symmetric to uadd.
    	// We have not factored the common code out because
    	// eventually uadd (and usub) should be optimized
    	// by special-casing, and the code will diverge.
    
    	if debugFloat {
    		validateBinaryOperands(x, y)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/entity.go

    	"|":                          "\u007c",
    	"|":                            "\u007c",
    	"𝔳":                             "\U0001d533",
    	"⊲":                           "\u22b2",
    	"⊂⃒":                           "\u2282\u20d2",
    	"⊃⃒":                           "\u2283\u20d2",
    	"𝕧":                            "\U0001d567",
    	"∝":                           "\u221d",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  8. src/runtime/symtab.go

    	if datap == nil {
    		return funcInfo{}
    	}
    	const nsub = uintptr(len(findfuncbucket{}.subbuckets))
    
    	pcOff, ok := datap.textOff(pc)
    	if !ok {
    		return funcInfo{}
    	}
    
    	x := uintptr(pcOff) + datap.text - datap.minpc // TODO: are datap.text and datap.minpc always equal?
    	b := x / abi.FuncTabBucketSize
    	i := x % abi.FuncTabBucketSize / (abi.FuncTabBucketSize / nsub)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  9. src/mdo/reader-stax.vm

            entities.put("equiv", "\u2261");
            entities.put("le", "\u2264");
            entities.put("ge", "\u2265");
            entities.put("sub", "\u2282");
            entities.put("sup", "\u2283");
            entities.put("nsub", "\u2284");
            entities.put("sube", "\u2286");
            entities.put("supe", "\u2287");
            entities.put("oplus", "\u2295");
            entities.put("otimes", "\u2297");
            entities.put("perp", "\u22a5");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  10. src/mdo/reader.vm

            entities.put("equiv", "\u2261");
            entities.put("le", "\u2264");
            entities.put("ge", "\u2265");
            entities.put("sub", "\u2282");
            entities.put("sup", "\u2283");
            entities.put("nsub", "\u2284");
            entities.put("sube", "\u2286");
            entities.put("supe", "\u2287");
            entities.put("oplus", "\u2295");
            entities.put("otimes", "\u2297");
            entities.put("perp", "\u22a5");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
Back to top