Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 651 for It (0.02 sec)

  1. common-protos/k8s.io/api/batch/v1beta1/generated.proto

      // - "Forbid": forbids concurrent runs, skipping next run if previous run hasn't finished yet;
      // - "Replace": cancels currently running job and replaces it with a new one
      // +optional
      optional string concurrencyPolicy = 3;
    
      // This flag tells the controller to suspend subsequent executions, it does
      // not apply to already started executions.  Defaults to false.
      // +optional
      optional bool suspend = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. operator/pkg/util/path.go

    // It returns an error if pe is not an index path element.
    func PathN(pe string) (int, error) {
    	if !IsNPathElement(pe) {
    		return -1, fmt.Errorf("%s is not a valid index path element", pe)
    	}
    	v, _ := RemoveBrackets(pe)
    	return strconv.Atoi(v)
    }
    
    // RemoveBrackets removes the [] around pe and returns the resulting string. It returns false if pe is not surrounded
    // by [].
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/pod_cache.go

    	return maps.Clone(p.currentPodCache)
    }
    
    // Remove and return the Netns for the given uid
    // No need to return NetnsCloser here it will be closed automatically on GC.
    // (it may be used in parallel by other parts of the code, so we want it to be used only when not used)
    func (p *podNetnsCache) Take(uid string) Netns {
    	// lock current pod map
    	p.mu.Lock()
    	defer p.mu.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 17:18:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. common-protos/k8s.io/apimachinery/pkg/util/intstr/generated.proto

    // This file was autogenerated by go-to-protobuf. Do not edit it manually!
    
    syntax = "proto2";
    
    package k8s.io.apimachinery.pkg.util.intstr;
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/apimachinery/pkg/util/intstr";
    
    // IntOrString is a type that can hold an int32 or a string.  When used in
    // JSON or YAML marshalling and unmarshalling, it produces or consumes the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/app/fds.go

    //
    // Go already sets this (https://github.com/golang/go/issues/46279).
    // However, it will restore the original limit for subprocesses (Envoy):
    // https://github.com/golang/go/blob/f0d1195e13e06acdf8999188decc63306f9903f5/src/syscall/rlimit.go#L14.
    // By explicitly doing it ourselves, we get the limit passed through to Envoy.
    //
    // This function returns the new limit additionally, for convenience.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. pkg/channels/unbounded.go

    package channels
    
    // Heavily inspired by the private library from gRPC (https://raw.githubusercontent.com/grpc/grpc-go/master/internal/buffer/unbounded.go)
    // Since it cannot be imported directly it is mirror here. Original license:
    /*
     * Copyright 2019 gRPC authors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 31 19:53:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. manifests/charts/gateways/istio-egress/NOTES.txt

    - for 'internal load balancer' you should deploy a separate gateway, in a different
    namespace.
    
    All ingress gateway have a "app:ingressgateway" label, used to identify it as an
    ingress, and an "istio: ingressgateway$SUFFIX" label of Gateway selection.
    
    The Gateways use "istio: ingressgateway$SUFFIX" selectors.
    
    
    # Multiple gateway versions
    
    
    
    # Using different pilot versions
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 15 21:29:06 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  8. pkg/kube/krt/join.go

    	res := []T{}
    	found := sets.New[Key[T]]()
    	for _, c := range j.collections {
    		for _, i := range c.List() {
    			key := GetKey(i)
    			if !found.InsertContains(key) {
    				// Only keep it if it is the first time we saw it, as our merging mechanism is to keep the first one
    				res = append(res, i)
    			}
    		}
    	}
    	return res
    }
    
    func (j *join[T]) Register(f func(o Event[T])) Syncer {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. tools/packaging/packaging.mk

    # where we are just pushing to a local registry (compressed again!), it adds ~1min to builds.
    ifneq ($(FAST_VM_BUILDS),)
    DEB_COMPRESSION=--deb-compression=none
    RPM_COMPRESSION=--rpm-compression=none
    endif
    
    # Base directory for istio binaries. Likely to change !
    ISTIO_DEB_BIN=/usr/local/bin
    
    # Home directory of istio-proxy user. It is symlinked /etc/istio --> /var/lib/istio
    ISTIO_PROXY_HOME=/var/lib/istio
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 19:54:32 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. operator/cmd/mesh/operator-init.go

    	installerScope.Debugf("Using the following manifest to install operator:\n%s\n", mstr)
    
    	opts := &applyOptions{
    		DryRun: args.DryRun,
    	}
    
    	// If CR was passed, we must create a namespace for it and install CR into it.
    	customResource, istioNamespace, err := getCRAndNamespaceFromFile(oiArgs.inFilename, l)
    	if err != nil {
    		l.LogAndFatal(err)
    	}
    	var iop *iopv1alpha1.IstioOperator
    	if oiArgs.common.revision != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top