Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,243 for meth (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/list_work_estimator.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package request
    
    import (
    	"math"
    	"net/http"
    	"net/url"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	apirequest "k8s.io/apiserver/pkg/endpoints/request"
    	"k8s.io/apiserver/pkg/features"
    	"k8s.io/apiserver/pkg/storage"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. pilot/test/xds/fake.go

    	ConfigString string
    	// If provided, the ConfigString will be treated as a go template, with this as input params
    	ConfigTemplateInput any
    	// If provided, this mesh config will be used
    	MeshConfig      *meshconfig.MeshConfig
    	NetworksWatcher mesh.NetworksWatcher
    
    	// Callback to modify the kube client before it is started
    	KubeClientModifier func(c kubelib.Client)
    
    	// Override the default kube client constructor
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/configcontroller.go

    	return nil
    }
    
    // initConfigSources will process mesh config 'configSources' and initialize
    // associated configs.
    func (s *Server) initConfigSources(args *PilotArgs) (err error) {
    	for _, configSource := range s.environment.Mesh().ConfigSources {
    		srcAddress, err := url.Parse(configSource.Address)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is the list of resource claims.
      repeated ResourceClaim items = 2;
    }
    
    // ResourceClaimParameters defines resource requests for a ResourceClaim in an
    // in-tree format understood by Kubernetes.
    message ResourceClaimParameters {
      // Standard object metadata
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/network.go

    // limitations under the License.
    
    package controller
    
    import (
    	"net"
    	"strconv"
    	"sync"
    
    	"github.com/yl2chen/cidranger"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"sigs.k8s.io/gateway-api/apis/v1beta1"
    
    	"istio.io/api/label"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    */
    
    package fuzzer
    
    import (
    	"fmt"
    	"math/rand"
    	"sort"
    	"strconv"
    	"strings"
    
    	fuzz "github.com/google/gofuzz"
    
    	apitesting "k8s.io/apimachinery/pkg/api/apitesting"
    	"k8s.io/apimachinery/pkg/api/apitesting/fuzzer"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	metav1beta1 "k8s.io/apimachinery/pkg/apis/meta/v1beta1"
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/batch/v1/generated.proto

      // Information when was the last time the job was successfully scheduled.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastScheduleTime = 4;
    
      // Information when was the last time the job successfully completed.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastSuccessfulTime = 5;
    }
    
    // Job represents the configuration of a single job.
    message Job {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1/generated.proto

      // Information when was the last time the job was successfully scheduled.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastScheduleTime = 4;
    
      // Information when was the last time the job successfully completed.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastSuccessfulTime = 5;
    }
    
    // Job represents the configuration of a single job.
    message Job {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  9. pkg/controller/ttl/ttl_controller.go

    // use it and get rid of this controller completely.
    
    package ttl
    
    import (
    	"context"
    	"fmt"
    	"math"
    	"strconv"
    	"sync"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/json"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. istioctl/pkg/authz/authz.go

    // limitations under the License.
    
    package authz
    
    import (
    	"context"
    	"fmt"
    	"io"
    	"os"
    
    	"github.com/spf13/cobra"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/completion"
    	"istio.io/istio/istioctl/pkg/util"
    	"istio.io/istio/istioctl/pkg/util/configdump"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/log"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top