Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 918 for It (0.36 sec)

  1. cni/cmd/istio-cni/main.go

    		// Log sync will send logs to install-cni container via UDS.
    		// We don't need a timeout here because underlying the log pkg already handles it.
    		// this may fail, but it should be safe to ignore according
    		// to https://github.com/uber-go/zap/issues/328
    		_ = log.Sync()
    	}()
    
    	// TODO: implement plugin version
    	funcs := skel.CNIFuncs{
    		Add:   plugin.CmdAdd,
    		Del:   plugin.CmdDelete,
    		Check: plugin.CmdCheck,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/runtime/schema/generated.proto

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    
    // This file was autogenerated by go-to-protobuf. Do not edit it manually!
    
    syntax = "proto2";
    
    package k8s.io.apimachinery.pkg.runtime.schema;
    
    // Package-wide variables from generator "generated".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 829 bytes
    - Viewed (0)
  3. operator/pkg/helmreconciler/apply.go

    			return result, werr
    		}
    		plog.ReportFinished()
    
    	}
    	return result, nil
    }
    
    // ApplyObject creates or updates an object in the API server depending on whether it already exists.
    // It mutates obj.
    func (h *HelmReconciler) ApplyObject(obj *unstructured.Unstructured) error {
    	if obj.GetKind() == "List" {
    		var errs util.Errors
    		list, err := obj.ToList()
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. licenses/github.com/hashicorp/go-version/LICENSE

         under the terms of Section 3.3).
    
    2.5. Representation
    
         Each Contributor represents that the Contributor believes its Contributions
         are its original creation(s) or it has sufficient rights to grant the
         rights to its Contributions conveyed by this License.
    
    2.6. Fair Use
    
         This License is not intended to limit any rights You have under applicable
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. licenses/github.com/hashicorp/golang-lru/v2/LICENSE

         permitted under the terms of Section 3.3).
    
    2.5. Representation
    
         Each Contributor represents that the Contributor believes its
         Contributions are its original creation(s) or it has sufficient rights to
         grant the rights to its Contributions conveyed by this License.
    
    2.6. Fair Use
    
         This License is not intended to limit any rights You have under
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 03 20:21:32 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  6. releasenotes/notes/startupProbe.yaml

          
          If the startup probe does not pass after 10 minutes, the pod will be terminated.
          Previously, the pod would never be terminated even if it was unable to start indefinitely.
          
          If you do not want this feature, it can be disabled. However, you will want to tune the readiness probe with it.
          
          The recommended values with the startup probe enabled (the new defaults):
          
          ```
          readinessInitialDelaySeconds: 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 13 23:27:34 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. pilot/pkg/networking/telemetry/telemetry.go

    	// KubernetesServiceNamespace is the namespace the service is defined in, if it is for a Kubernetes Service.
    	// Note: This is best effort; this may be empty if generated by Sidecar config, and there may be multiple
    	// Services that make up the filter chain.
    	KubernetesServiceNamespace string
    	// KubernetesServiceName is the name of service, if it is for a Kubernetes Service.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 02:38:43 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. pkg/util/smallset/smallset.go

    //
    // *Set construction*: sets is roughly 1kb allocations per 250 items. smallsets is 0.
    // *Contains* sets is O(1). smallsets is O(logn). smallsets is typically faster up to about 5 elements.
    //
    //	At 1000 items, it is roughly 5x slower (30ns vs 5ns).
    type Set[T constraints.Ordered] struct {
    	items []T
    }
    
    // NewPresorted creates a new Set with the given items.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. pkg/hbone/util.go

    	// Duplicated from io
    
    	// This will prevent stats from working.
    	// If the reader has a WriteTo method, use it to do the copy.
    	// Avoids an allocation and a copy.
    	//if wt, ok := src.(io.WriterTo); ok {
    	//	return wt.WriteTo(dst)
    	//}
    	// Similarly, if the writer has a ReadFrom method, use it to do the copy.
    	//if rt, ok := dst.(io.ReaderFrom); ok {
    	//	return rt.ReadFrom(src)
    	//}
    	for {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. releasenotes/notes/exit-if-sds-socket-not-found.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    issue:
    - 45534
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 22:42:46 UTC 2023
    - 313 bytes
    - Viewed (0)
Back to top