Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 475 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/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)
  3. 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)
  4. manifests/charts/istio-control/istio-discovery/templates/clusterrole.yaml

        verbs: ["*"]
    {{- end}}
      - apiGroups: ["networking.k8s.io"]
        resources: ["ingresses", "ingressclasses"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["networking.k8s.io"]
        resources: ["ingresses/status"]
        verbs: ["*"]
    
      # required for CA's namespace controller
      - apiGroups: [""]
        resources: ["configmaps"]
        verbs: ["create", "get", "list", "watch", "update"]
    
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-04-16 18:07
    - 7.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/reflect/ClassPath.java

      private final ImmutableSet<ResourceInfo> resources;
    
      private ClassPath(ImmutableSet<ResourceInfo> resources) {
        this.resources = resources;
      }
    
      /**
       * Returns a {@code ClassPath} representing all classes and resources loadable from {@code
       * classloader} and its ancestor class loaders.
       *
       * <p><b>Warning:</b> {@code ClassPath} can find classes and resources only from:
       *
       * <ul>
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-13 17:27
    - 24.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/misc/DisposableUtil.java

         *
         * @param disposable
         *            A disposable resource. Must not be {@literal null}.
         */
        public static synchronized void remove(final Disposable disposable) {
            assertArgumentNotNull("disposable", disposable);
            disposables.remove(disposable);
        }
    
        /**
         * Disposes of all registered resources.
         */
        public static synchronized void dispose() {
    Registered: 2025-05-24 08:58
    - Last Modified: 2025-05-10 01:32
    - 2.9K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/templates/reader-clusterrole.yaml

        verbs: [ "get", "watch", "list" ]
        resources: [ "workloadentries" ]
      - apiGroups: ["networking.x-k8s.io", "gateway.networking.k8s.io"]
        resources: ["gateways"]
        verbs: ["get", "watch", "list"]
      - apiGroups: ["apiextensions.k8s.io"]
        resources: ["customresourcedefinitions"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["discovery.k8s.io"]
        resources: ["endpointslices"]
        verbs: ["get", "list", "watch"]
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-04-29 14:29
    - 2.5K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

            memory: "{{ index .ObjectMeta.Annotations `sidecar.istio.io/proxyMemoryLimit` }}"
            {{ end }}
        {{- end }}
      {{- else }}
        {{- if .Values.global.proxy.resources }}
          {{ toYaml .Values.global.proxy.resources | indent 6 }}
        {{- end }}
      {{- end }}
    {{- end }}
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-05-08 02:51
    - 23.3K bytes
    - Viewed (0)
  9. android/guava/pom.xml

      </dependencies>
      <build>
        <resources>
          <resource>
            <directory>..</directory>
            <includes>
              <include>LICENSE</include> <!-- copied from the parent pom because I couldn't figure out a way to make combine.children="append" work -->
              <include>proguard/*</include>
            </includes>
            <targetPath>META-INF</targetPath>
          </resource>
        </resources>
        <plugins>
          <plugin>
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-20 15:34
    - 9.6K bytes
    - Viewed (0)
  10. operator/README.md

    way as galley settings. Supported K8s settings currently include:
    
    - [resources](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container)
    - [readiness probes](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/)
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-02-18 03:29
    - 14.8K bytes
    - Viewed (0)
Back to top