Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NextVersion (0.26 sec)

  1. cluster/images/etcd/migrate/versions.go

    func (sv SupportedVersions) NextVersionPair(current *EtcdVersionPair) *EtcdVersionPair {
    	nextVersion := sv.NextVersion(current.version)
    	if nextVersion == nil {
    		return nil
    	}
    	storageVersion := storageEtcd3
    	if nextVersion.Major == 2 {
    		storageVersion = storageEtcd2
    	}
    	return &EtcdVersionPair{version: nextVersion, storageVersion: storageVersion}
    }
    
    // ParseSupportedVersions parses a list of etcd versions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  2. pilot/pkg/xds/discovery.go

    	// and if it has a different alias we should use that a cluster ID for proxy.
    	ClusterAliases map[cluster.ID]cluster.ID
    
    	// pushVersion stores the numeric push version. This should be accessed via NextVersion()
    	pushVersion atomic.Uint64
    
    	// DiscoveryStartTime is the time since the binary started
    	DiscoveryStartTime time.Time
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. docs/de/docs/tutorial/handling-errors.md

                    "path",
                    "item_id"
                ],
                "msg": "value is not a valid integer",
                "type": "type_error.integer"
            }
        ]
    }
    ```
    
    eine Textversion:
    
    ```
    1 validation error
    path -> item_id
      value is not a valid integer (type=type_error.integer)
    ```
    
    #### `RequestValidationError` vs. `ValidationError`
    
    !!! warning "Achtung"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:28:29 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/status/server.go

    	// nolint: revive, stylecheck
    	FmtOpenMetrics_1_0_0 = expfmt.OpenMetricsType + `; version=` + expfmt.OpenMetricsVersion_1_0_0 + `; charset=utf-8`
    	FmtText              = `text/plain; version=` + expfmt.TextVersion + `; charset=utf-8`
    )
    
    func negotiateMetricsFormat(contentType string) expfmt.Format {
    	mediaType, params, err := mime.ParseMediaType(contentType)
    	if err == nil && mediaType == expfmt.OpenMetricsType {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top