Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 898 for resources (0.04 sec)

  1. guava/src/com/google/common/io/Resources.java

    /**
     * Provides utility methods for working with resources in the classpath. Note that even though these
     * methods use {@link URL} parameters, they are usually not appropriate for HTTP or other
     * non-classpath resources.
     *
     * @author Chris Nokleberg
     * @author Ben Yu
     * @author Colin Decker
     * @since 1.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    public final class Resources {
      private Resources() {}
    
      /**
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-13 17:27
    - 7.4K bytes
    - Viewed (0)
  2. cmd/api-resources.go

    Harshavardhana <******@****.***> 1686162326 -0700
    Registered: 2025-05-25 19:28
    - Last Modified: 2023-06-07 18:25
    - 4.3K bytes
    - Viewed (0)
  3. cmd/local-locker_test.go

    	if len(l.lockMap) != len(rResources)+len(wResources)*m {
    		t.Fatalf("lockmap len, got %d, want %d + %d", len(l.lockMap), len(rResources), len(wResources)*m)
    	}
    	// A UID is added for every resource.
    	// We removed len(rResources) read sources.
    	if len(l.lockUID) != len(rResources)+len(wResources)*m {
    		t.Fatalf("lockUID len, got %d, want %d + %d", len(l.lockUID), len(rResources), len(wResources)*m)
    	}
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-09 14:28
    - 11.9K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/apidiscovery/v2beta1/generated.proto

    message APIResourceDiscovery {
      // resource is the plural name of the resource.  This is used in the URL path and is the unique identifier
      // for this resource across all versions in the API group.
      // Resources with non-empty groups are located at /apis/<APIGroupDiscovery.objectMeta.name>/<APIVersionDiscovery.version>/<APIResourceDiscovery.Resource>
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-03-11 18:43
    - 7.8K bytes
    - Viewed (0)
  5. manifests/charts/base/files/profile-demo.yaml

            service: jaeger-collector.istio-system.svc.cluster.local        
    
    cni:
      resources:
        requests:
          cpu: 10m
          memory: 40Mi
    
    ztunnel:
      resources:
        requests:
          cpu: 10m
          memory: 40Mi
    
    global:
      proxy:
        resources:
          requests:
            cpu: 10m
            memory: 40Mi
      waypoint:
        resources:
          requests:
            cpu: 10m
            memory: 40Mi
    
    pilot:
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-12-10 01:56
    - 2.4K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-ingress/files/profile-demo.yaml

            service: jaeger-collector.istio-system.svc.cluster.local        
    
    cni:
      resources:
        requests:
          cpu: 10m
          memory: 40Mi
    
    ztunnel:
      resources:
        requests:
          cpu: 10m
          memory: 40Mi
    
    global:
      proxy:
        resources:
          requests:
            cpu: 10m
            memory: 40Mi
      waypoint:
        resources:
          requests:
            cpu: 10m
            memory: 40Mi
    
    pilot:
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-12-10 01:56
    - 2.4K bytes
    - Viewed (0)
  7. architecture/networking/pilot.md

    Istio reads from over 20 different resources types, and aggregates them together to build the proxy configuration. These resources can be sourced from Kubernetes (via watches), files, or over xDS; Kubernetes is by far the most common usage, though.
    
    Primarily for historical reasons, ingestion is split into a few components.
    
    #### ConfigStore
    
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-02-07 17:53
    - 19.1K bytes
    - Viewed (0)
  8. manifests/charts/istio-cni/templates/clusterrole.yaml

        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Cni"
        app.kubernetes.io/name: {{ template "name" . }}
        {{- include "istio.labels" . | nindent 4 }}
    rules:
      - apiGroups: [""]
        resources: ["events"]
        verbs: ["create", "patch"]
      - apiGroups: [""]
        resources: ["pods"]
        verbs: ["watch", "get", "list"]
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-12-19 15:48
    - 2.7K bytes
    - Viewed (0)
  9. cmd/local-locker.go

    	}
    
    	// No locks held on the all resources, so claim write
    	// lock on all resources at once.
    	now := UTCNow()
    	for i, resource := range args.Resources {
    		l.lockMap[resource] = []lockRequesterInfo{
    			{
    				Name:            resource,
    				Writer:          true,
    				Source:          args.Source,
    				Owner:           args.Owner,
    				UID:             args.UID,
    				Timestamp:       now.UnixNano(),
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-01-31 19:54
    - 12K bytes
    - Viewed (0)
  10. manifests/charts/ztunnel/files/profile-demo.yaml

            service: jaeger-collector.istio-system.svc.cluster.local        
    
    cni:
      resources:
        requests:
          cpu: 10m
          memory: 40Mi
    
    ztunnel:
      resources:
        requests:
          cpu: 10m
          memory: 40Mi
    
    global:
      proxy:
        resources:
          requests:
            cpu: 10m
            memory: 40Mi
      waypoint:
        resources:
          requests:
            cpu: 10m
            memory: 40Mi
    
    pilot:
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-12-10 01:56
    - 2.4K bytes
    - Viewed (0)
Back to top