Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 80 for Usages (0.25 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

            output.contains("Hello!")
    
            when:
            configurationCacheRun "greet"
    
            then:
            configurationCache.assertStateLoaded()
            output.contains("Hello!")
        }
    
        def "#usage property from properties file used as build logic input"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            buildKotlinFile """
    
                import org.gradle.api.provider.*
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    		}
    		estimatedGetCalls := uint64(1)
    		if pageSize != 0 {
    			// We expect that kube-apiserver will be increasing page sizes
    			// if not full pages are received, so we should see significantly less
    			// than 1000 pages (which would be result of talking to etcd with page size
    			// copied from pred.Limit).
    			// The expected number of calls is n+1 where n is the smallest n so that:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/qos_container_manager_linux.go

    // that was attempted to be set in the first Update() and adjusts
    // their memory limit to the usage to prevent further growth.
    func (m *qosContainerManagerImpl) retrySetMemoryReserve(configs map[v1.PodQOSClass]*CgroupConfig, percentReserve int64) {
    	// Unreclaimable memory usage may already exceeded the desired limit
    	// Attempt to set the limit near the current usage to put pressure
    	// on the cgroup and prevent further growth.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	"k8s.io/kubernetes/pkg/kubelet/configmap"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	"k8s.io/kubernetes/pkg/kubelet/events"
    	"k8s.io/kubernetes/pkg/kubelet/eviction"
    	"k8s.io/kubernetes/pkg/kubelet/images"
    	"k8s.io/kubernetes/pkg/kubelet/kuberuntime"
    	"k8s.io/kubernetes/pkg/kubelet/lifecycle"
    	"k8s.io/kubernetes/pkg/kubelet/logs"
    	"k8s.io/kubernetes/pkg/kubelet/metrics"
    	"k8s.io/kubernetes/pkg/kubelet/metrics/collectors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. src/net/http/server.go

    // another pattern that is already registered, those functions panic.
    //
    // As an example of the general rule, "/images/thumbnails/" is more specific than "/images/",
    // so both can be registered.
    // The former matches paths beginning with "/images/thumbnails/"
    // and the latter will match any other path in the "/images/" subtree.
    //
    // As another example, consider the patterns "GET /" and "/index.html":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. pkg/features/kube_features.go

    	// alpha: v1.27
    	//
    	// Enable POD resources API with Get method
    	KubeletPodResourcesGet featuregate.Feature = "KubeletPodResourcesGet"
    
    	// KubeletSeparateDiskGC enables Kubelet to garbage collection images/containers on different filesystems
    	// owner: @kannon92
    	// kep: https://kep.k8s.io/4191
    	// alpha: v1.29
    	KubeletSeparateDiskGC featuregate.Feature = "KubeletSeparateDiskGC"
    
    	// owner: @sallyom
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/session/builder/StandaloneSessionBuilderTest.kt

            val project = contextFile.project
    
            val dummyFile = KtPsiFactory
                .contextual(contextFile, markGenerated = false, eventSystemEnabled = false)
                .createFile("dummy.kt", "fun usage() { test() }")
    
            assert(dummyFile.virtualFile == null)
    
            val dummyModule = ProjectStructureProvider.getModule(project, dummyFile, contextualModule = null)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			name:   "filter returns two items split across multiple pages",
    			prefix: "/pods",
    			pred: storage.SelectionPredicate{
    				Field: fields.OneTermEqualSelector("metadata.name", "foo"),
    				Label: labels.Everything(),
    				Limit: 2,
    			},
    			expectedOut: []example.Pod{*preset[2], *preset[4]},
    		},
    		{
    			name:   "filter returns two items split across multiple pages with current resource version and match=NotOlderThan",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  9. cmd/object_api_suite_test.go

    		}
    		if result.IsTruncated {
    			t.Errorf("%s: Expected IsTruncated to be `false`, but instead found it to be `%v`", instanceType, result.IsTruncated)
    		}
    	}
    
    	// check after paging occurs pages work.
    	for i := 6; i <= 10; i++ {
    		key := "obj" + strconv.Itoa(i)
    		_, err = obj.PutObject(context.Background(), "bucket", key, mustGetPutObjReader(t, bytes.NewBufferString(uploadContent), int64(len(uploadContent)), "", ""), opts)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "imagePullPolicy": {
                "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images",
                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top