Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,613 for resources_ (0.36 sec)

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

       * this class ({@code Resources}) will be used instead.
       *
       * @throws IllegalArgumentException if the resource is not found
       */
      @CanIgnoreReturnValue // being used to check if a resource exists
      // TODO(cgdecker): maybe add a better way to check if a resource exists
      // e.g. Optional<URL> tryGetResource or boolean resourceExists
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. pkg/scheduler/metrics/resources/resources.go

    	requests: resourceLifecycleDescriptors{
    		total: metrics.NewDesc("kube_pod_resource_request",
    			"Resources requested by workloads on the cluster, broken down by pod. This shows the resource usage the scheduler and kubelet expect per pod for resources along with the unit for the resource if any.",
    			[]string{"namespace", "pod", "node", "scheduler", "priority", "resource", "unit"},
    			nil,
    			metrics.STABLE,
    			""),
    	},
    	limits: resourceLifecycleDescriptors{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 23:15:53 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/windows-resources/groovy/src/hello/rc/resources.rc

    #include "resources.h"
    
    STRINGTABLE
    {
        IDS_HELLO,   "Hello world!"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 73 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/resources.go

    	gvr := schema.GroupVersionResource{Group: crd.Spec.Group, Version: version, Resource: crd.Spec.Names.Plural}
    	if crd.Spec.Scope != apiextensionsv1.ClusterScoped {
    		return dynamicClientSet.Resource(gvr).Namespace(namespace)
    	}
    	return dynamicClientSet.Resource(gvr)
    }
    
    // isWatchCachePrimed returns true if the watch is primed for an specified version of CRD watch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 02:01:40 UTC 2021
    - 21.4K bytes
    - Viewed (0)
  5. maven-core/src/test/projects/lifecycle-executor/project-with-multiple-executions/src/main/mdo/remote-resources.mdo

    -->
    
    <model>
      <id>remoteResourcesBundle</id>
      <name>RemoteResourcesBundle</name>
      <description>
        A bundle of remote resources.
        This is the model specification for remote-resources.xml.
      </description>
      <defaults>
        <default>
          <key>package</key>
          <value>org.apache.maven.plugin.resources.remote</value>
        </default>
      </defaults>
      <classes>
        <class rootElement="true" xml.tagName="remoteResourcesBundle">
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. pkg/test/framework/resourceid.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package framework
    
    type resourceID struct {
    	id string
    }
    
    func (r *resourceID) String() string {
    	return r.id
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 698 bytes
    - Viewed (0)
  7. cluster/gce/list-resources.sh

    fi
    
    # Usage: gcloud-list <group> <resource> <additional parameters to gcloud...>
    # GREP_REGEX is applied to the output of gcloud if set
    GREP_REGEX=""
    function gcloud-list() {
      local -r group=$1
      local -r resource=$2
      local -r filter=${3:-}
      echo -e "\n\n[ ${group} ${resource} ]"
      local attempt=1
      local result=""
      while true; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 15:44:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/rbac/rbac_test.go

    				resourceRequest("verb1").Group("group2").Resource("resource1").New(): true,
    				resourceRequest("verb1").Group("group1").Resource("resource2").New(): true,
    				resourceRequest("verb1").Group("group2").Resource("resource2").New(): true,
    				resourceRequest("verb2").Group("group1").Resource("resource1").New(): true,
    				resourceRequest("verb2").Group("group2").Resource("resource1").New(): true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 21.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/MultiParentClassLoaderTest.groovy

            URL resource1 = new File('res1').toURI().toURL()
            URL resource2 = new File('res2').toURI().toURL()
    
            given:
            _ * parent1.getResource('resource1') >> resource1
            _ * parent1.getResource('resource2') >> null
            _ * parent2.getResource('resource2') >> resource2
    
            expect:
            loader.getResource('resource1') == resource1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. hack/testdata/deployment-multicontainer-resources.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: nginx-deployment-resources
      labels:
        name: nginx-deployment-resources
    spec:
      replicas: 3
      selector:
        matchLabels:
          name: nginx
      template:
        metadata:
          labels:
            name: nginx
        spec:
          containers:
          - name: nginx
            image: registry.k8s.io/nginx:test-cmd
            ports:
            - containerPort: 80
          - name: perl
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 487 bytes
    - Viewed (0)
Back to top