Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for lidx (0.08 sec)

  1. pkg/test/framework/components/echo/deployment/builder.go

    	b.namespaces[cfg.Namespace.Prefix()] = cfg.Namespace
    
    	targetClusters := b.clusters
    	if cfg.Cluster != nil {
    		targetClusters = cluster.Clusters{cfg.Cluster}
    	}
    
    	deployedTo := 0
    	for idx, c := range targetClusters {
    		ec, ok := c.(echo.Cluster)
    		if !ok {
    			b.errs = multierror.Append(b.errs, fmt.Errorf("attempted to deploy to %s but it does not implement echo.Cluster", c.Name()))
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    		// TODO: handle this in negotiation
    		contentType := req.Header.Get("Content-Type")
    		// Remove "; charset=" if included in header.
    		if idx := strings.Index(contentType, ";"); idx > 0 {
    			contentType = contentType[:idx]
    		}
    		patchType := types.PatchType(contentType)
    
    		// Ensure the patchType is one we support
    		if !sets.NewString(patchTypes...).Has(contentType) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/core.go

    	sortedSizes := func(maskSizeIPv4, maskSizeIPv6 int) []int {
    		nodeMaskCIDRs := make([]int, len(clusterCIDRs))
    
    		for idx, clusterCIDR := range clusterCIDRs {
    			if netutils.IsIPv6CIDR(clusterCIDR) {
    				nodeMaskCIDRs[idx] = maskSizeIPv6
    			} else {
    				nodeMaskCIDRs[idx] = maskSizeIPv4
    			}
    		}
    		return nodeMaskCIDRs
    	}
    
    	// --node-cidr-mask-size flag is incompatible with dual stack clusters.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  4. docs/pt/docs/async.md

    * dados do cliente para serem enviados através da rede
    * dados enviados pelo seu programa para serem recebidos pelo clente através da rede
    * conteúdo de um arquivo no disco pra ser lido pelo sistema e entregar ao seu programa
    * conteúdo que seu programa deu ao sistema para ser escrito no disco
    * uma operação remota API
    * uma operação no banco de dados para finalizar
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  5. cmd/storage-rest-server.go

    	done := keepHTTPResponseAlive(w)
    
    	opts := DeleteOptions{}
    	errs := s.getStorage().DeleteVersions(r.Context(), volume, versions, opts)
    	done(nil)
    	for idx := range versions {
    		if errs[idx] != nil {
    			dErrsResp.Errs[idx] = StorageErr(errs[idx].Error())
    		}
    	}
    	encoder.Encode(dErrsResp)
    }
    
    // RenameDataHandler - renames a meta object and data dir to destination.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. pilot/pkg/autoregistration/controller_test.go

    	found := false
    	idx := 0
    	for i, cond := range stat.Conditions {
    		if cond.Type == "Healthy" {
    			idx = i
    			found = true
    		}
    	}
    	if !found {
    		err = multierror.Append(err, fmt.Errorf("expected condition of type Health on WorkloadEntry %s/%s",
    			name, proxy.Metadata.Namespace))
    	} else {
    		statStr := stat.Conditions[idx].Status
    		if healthy && statStr != "True" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    This operation also returns a tensor `idx` the same size as `x` that contains
    the index of each value of `x` in the unique output `y`. In other words:
    
    `y[idx[i]] = x[i] for i in [0, 1,...,rank(x) - 1]`
    
    Examples:
    
    ```
    # tensor 'x' is [1, 1, 2, 4, 4, 4, 7, 8, 8]
    y, idx = unique(x)
    y ==> [1, 2, 4, 7, 8]
    idx ==> [0, 0, 1, 2, 2, 2, 3, 4, 4]
    ```
    
    ```
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    func printAncestorTraceback(ancestor ancestorInfo) {
    	print("[originating from goroutine ", ancestor.goid, "]:\n")
    	for fidx, pc := range ancestor.pcs {
    		f := findfunc(pc) // f previously validated
    		if showfuncinfo(f.srcFunc(), fidx == 0, abi.FuncIDNormal) {
    			printAncestorTracebackFuncInfo(f, pc)
    		}
    	}
    	if len(ancestor.pcs) == tracebackInnerFrames {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    		// blocks or at the end.
    		length := int64(0)
    		if idx+1 < len(syms) {
    			// Find the next top-level symbol.
    			// Skip over sub symbols so we won't split a container symbol
    			// into two blocks.
    			next := syms[idx+1]
    			for ldr.AttrSubSymbol(next) {
    				idx++
    				next = syms[idx+1]
    			}
    			length = ldr.SymValue(next) - addr
    		}
    		if length == 0 || length > lastAddr-addr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    // the index, which must be less than sid.SubAuthorityCount().
    func (sid *SID) SubAuthority(idx uint32) uint32 {
    	if idx >= uint32(sid.SubAuthorityCount()) {
    		panic("sub-authority index out of range")
    	}
    	return *getSidSubAuthority(sid, idx)
    }
    
    // IsValid returns whether the SID has a valid revision and length.
    func (sid *SID) IsValid() bool {
    	return isValidSid(sid)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top