Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 49 for curg (0.04 sec)

  1. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    		return cur, false, false
    	}
    	if curNum > ControllerVersion {
    		// A newer version owns this gateway, let them handle it
    		return cur, false, false
    	}
    	if curNum == ControllerVersion {
    		// We already manage this at this version
    		// We will manage it, but no need to attempt to apply the version annotation, which could race with newer versions
    		return cur, false, true
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crdclient/client.go

    		return false
    	}
    	return config.LabelsInRevision(object.GetLabels(), cl.revision)
    }
    
    func (cl *Client) onEvent(resourceGVK config.GroupVersionKind, old controllers.Object, curr controllers.Object, event model.Event) {
    	currItem := controllers.ExtractObject(curr)
    	if currItem == nil {
    		return
    	}
    
    	currConfig := TranslateObject(currItem, resourceGVK, cl.domainSuffix)
    
    	var oldConfig config.Config
    	if old != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. cluster/images/etcd/Makefile

    	# For each release create a tmp dir 'etcd_release_tmp_dir' and unpack the release tar there.
    ifeq ($(OS),windows)
    	for version in $(BUNDLED_ETCD_VERSIONS); do \
    		etcd_release_tmp_dir=$(shell mktemp -d); \
    		curl -sSL --retry 5 https://github.com/etcd-io/etcd/releases/download/v$$version/etcd-v$$version-windows-amd64.zip -o etcd-v$$version-windows-amd64.zip; \
    		unzip -q -d $$etcd_release_tmp_dir etcd-v$$version-windows-amd64.zip; \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. src/net/http/cookiejar/jar.go

    		// are allowed.
    
    		// RFC 6265 section 5.2.3 mandates to strip an optional leading
    		// dot in the domain-attribute before processing the cookie.
    		//
    		// Most browsers don't do that for IP addresses, only curl
    		// (version 7.54) and IE (version 11) do not reject a
    		//     Set-Cookie: a=1; domain=.127.0.0.1
    		// This leading dot is optional and serves only as hint for
    		// humans to indicate that a cookie with "domain=.bbc.co.uk"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    // to indicate it is relative, or * for the same address.
    func callgrindAddress(prevInfo *graph.NodeInfo, curr uint64) string {
    	abs := fmt.Sprintf("%#x", curr)
    	if prevInfo == nil {
    		return abs
    	}
    
    	prev := prevInfo.Address
    	if prev == curr {
    		return "*"
    	}
    
    	diff := int64(curr - prev)
    	relative := fmt.Sprintf("%+d", diff)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  6. Makefile

    	@grep -E '^[a-zA-Z_-]+:.*?## .*$$' Makefile | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-40s\033[0m %s\n", $$1, $$2}'
    
    getdeps: ## fetch necessary dependencies
    	@mkdir -p ${GOPATH}/bin
    	@echo "Installing golangci-lint" && curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GOLANGCI_DIR)
    	@echo "Installing msgp" && go install -v github.com/tinylib/msgp@v1.1.10-0.20240227114326-6d6f813fff1b
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. src/internal/trace/internal/oldtrace/parser.go

    			bo := batchOffset{offset: raw.batchOffset}
    			p.batchOffsets[raw.batchPid] = append(p.batchOffsets[raw.batchPid], bo)
    			curP = raw.batchPid
    		}
    
    		batches := p.batchOffsets[curP]
    		if len(batches) == 0 {
    			return fmt.Errorf("read event %d with current P of %d, but P has no batches yet",
    				raw.typ, curP)
    		}
    		batches[len(batches)-1].numEvents++
    
    		if raw.typ == EvCPUSample {
    			e := Event{Type: raw.typ}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  8. src/crypto/internal/edwards25519/field/fe.go

    // SqrtRatio sets r to the non-negative square root of the ratio of u and v.
    //
    // If u/v is square, SqrtRatio returns r and 1. If u/v is not square, SqrtRatio
    // sets r according to Section 4.3 of draft-irtf-cfrg-ristretto255-decaf448-00,
    // and returns r and 0.
    func (r *Element) SqrtRatio(u, v *Element) (R *Element, wasSquare int) {
    	t0 := new(Element)
    
    	// r = (u * v3) * (u * v7)^((p-5)/8)
    	v2 := new(Element).Square(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/aggregate/controller_test.go

    		if clusterID == "cluster1" {
    			counter = registry1Counter
    		}
    		if clusterID == "cluster2" {
    			counter = registry2Counter
    		}
    		ctrl.AppendServiceHandlerForCluster(clusterID, func(_, curr *model.Service, event model.Event) {
    			counter.Add(1)
    		})
    		ctrl.AddRegistry(r)
    	}
    	if l := len(ctrl.registries); l != 3 {
    		t.Fatalf("Expected length of the registries slice should be 3, got %d", l)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/apiclient/wait.go

    	)
    
    	fmt.Printf("[kubelet-check] Waiting for a healthy kubelet. This can take up to %v\n", w.timeout)
    
    	formatError := func(cause string) error {
    		return errors.Errorf("The HTTP call equal to 'curl -sSL %s' returned %s\n",
    			healthzEndpoint, cause)
    	}
    
    	err := wait.PollUntilContextTimeout(
    		context.Background(),
    		constants.KubernetesAPICallRetryInterval,
    		w.timeout,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top