Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for index (0.04 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    	// waypoint. Must be one of "all", "service", "workload".
    	TrafficType string
    
    	// ServiceAccounts from instances of the waypoint.
    	// This only handles Pods. If we wish to support non-pod waypoints, we'll
    	// want to index ServiceEntry/WorkloadEntry or possibly allow specifying
    	// the ServiceAccounts directly on a Gateway resource.
    	ServiceAccounts []string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. pkg/features/kube_features.go

    	// owner: @mimowo
    	// kep: https://kep.k8s.io/3850
    	// alpha: v1.28
    	// beta: v1.29
    	//
    	// Allows users to specify counting of failed pods per index.
    	JobBackoffLimitPerIndex featuregate.Feature = "JobBackoffLimitPerIndex"
    
    	// owner: @mimowo
    	// kep: https://kep.k8s.io/4368
    	// alpha: v1.30
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_utils.go

    }
    
    // getPodName gets the name of set's child Pod with an ordinal index of ordinal
    func getPodName(set *apps.StatefulSet, ordinal int) string {
    	return fmt.Sprintf("%s-%d", set.Name, ordinal)
    }
    
    // getPersistentVolumeClaimName gets the name of PersistentVolumeClaim for a Pod with an ordinal index of ordinal. claim
    // must be a PersistentVolumeClaim from set's VolumeClaims template.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/deadcode.go

    // method. There are three relocations, one for each of the fields in
    // the reflect.method struct: mtyp, ifn, and tfn.
    type methodref struct {
    	m   methodsig
    	src loader.Sym // receiver type symbol
    	r   int        // the index of R_METHODOFF relocations
    }
    
    func (m methodref) isExported() bool {
    	for _, r := range m.m.name {
    		return unicode.IsUpper(r)
    	}
    	panic("methodref has no signature")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/crdclient/client.go

    	h, f := cl.kind(typ)
    	if !f {
    		cl.logger.Warnf("unknown type: %s", typ)
    		return nil
    	}
    	obj := h.Get(name, namespace)
    	if obj == nil {
    		cl.logger.Debugf("couldn't find %s/%s in informer index", namespace, name)
    		return nil
    	}
    
    	cfg := TranslateObject(obj, typ, cl.domainSuffix)
    	return &cfg
    }
    
    // Create implements store interface
    func (cl *Client) Create(cfg config.Config) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. src/os/exec/exec.go

    			continue
    		}
    
    		i := strings.Index(kv, "=")
    		if i == 0 {
    			// We observe in practice keys with a single leading "=" on Windows.
    			// TODO(#49886): Should we consume only the first leading "=" as part
    			// of the key, or parse through arbitrarily many of them until a non-"="?
    			i = strings.Index(kv[1:], "=") + 1
    		}
    		if i < 0 {
    			if kv != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  7. pilot/pkg/model/telemetry_logging.go

    		var namespaces []string
    		for k := range namespaceToServices {
    			namespaces = append(namespaces, k)
    		}
    		// If namespace is omitted, return successfully if there is only one such host name in the service index.
    		if len(namespaces) == 1 {
    			svc := namespaceToServices[namespaces[0]]
    			hostname = string(svc.Hostname)
    			cluster = BuildSubsetKey(TrafficDirectionOutbound, "", svc.Hostname, port)
    			return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. chainable_api.go

    // [docs] for more depth.
    //
    //	// add a simple limit clause
    //	db.Clauses(clause.Limit{Limit: 1}).Find(&User{})
    //	// tell the optimizer to use the `idx_user_name` index
    //	db.Clauses(hints.UseIndex("idx_user_name")).Find(&User{})
    //	// specify the lock strength to UPDATE
    //	db.Clauses(clause.Locking{Strength: "UPDATE"}).Find(&users)
    //
    // [docs]: https://gorm.io/docs/sql_builder.html#Clauses
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. cmd/encryption-v1.go

    		if len(objects) < BatchSize {
    			N = len(objects)
    		}
    		batch := objects[:N]
    
    		// We have to decrypt only ETags of SSE-S3 single-part
    		// objects.
    		// Therefore, we remember which objects (there index)
    		// in the current batch are single-part SSE-S3 objects.
    		metadata = metadata[:0:N]
    		buckets = buckets[:0:N]
    		names = names[:0:N]
    		SSES3SinglePartObjects := make(map[int]bool)
    		for i, object := range batch {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  10. cmd/storage-datatypes.go

    	// latest version.
    	LatestModTime time.Time `msg:"lm"`
    
    	Versions     []FileInfo `msg:"vs"`
    	FreeVersions []FileInfo `msg:"fvs"`
    }
    
    // findVersionIndex will return the version index where the version
    // was found. Returns -1 if not found.
    func (f *FileInfoVersions) findVersionIndex(v string) int {
    	if f == nil || v == "" {
    		return -1
    	}
    	if v == nullVersionID {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top