Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,359 for measure (0.23 sec)

  1. pkg/kubelet/cm/container_manager_linux.go

    			hasEnsureStateFuncs = true
    			break
    		}
    	}
    	if hasEnsureStateFuncs {
    		// Run ensure state functions every minute.
    		go wait.Until(func() {
    			for _, cont := range cm.systemContainers {
    				if cont.ensureStateFunc != nil {
    					if err := cont.ensureStateFunc(cont.manager); err != nil {
    						klog.InfoS("Failed to ensure state", "containerName", cont.name, "err", err)
    					}
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1/generated.proto

      // a persistent volume defined by a pod's inline VolumeSource. This field
      // is populated only for the CSIMigration feature. It contains
      // translated fields from a pod's inline VolumeSource to a
      // PersistentVolumeSpec. This field is beta-level and is only
      // honored by servers that enabled the CSIMigration feature.
      // +optional
      optional .k8s.io.api.core.v1.PersistentVolumeSpec inlineVolumeSpec = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1beta1/generated.proto

      // a persistent volume defined by a pod's inline VolumeSource. This field
      // is populated only for the CSIMigration feature. It contains
      // translated fields from a pod's inline VolumeSource to a
      // PersistentVolumeSpec. This field is beta-level and is only
      // honored by servers that enabled the CSIMigration feature.
      // +optional
      optional .k8s.io.api.core.v1.PersistentVolumeSpec inlineVolumeSpec = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  4. pkg/registry/core/pod/storage/eviction.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apiserver/pkg/registry/rest"
    	"k8s.io/apiserver/pkg/util/dryrun"
    	"k8s.io/apiserver/pkg/util/feature"
    	policyclient "k8s.io/client-go/kubernetes/typed/policy/v1"
    	"k8s.io/client-go/util/retry"
    	pdbhelper "k8s.io/component-helpers/apps/poddisruptionbudget"
    	podutil "k8s.io/kubernetes/pkg/api/pod"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 11:58:48 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/JavaPlugin.java

            JvmFeatureInternal feature = new DefaultJvmFeature(
                JvmConstants.JAVA_MAIN_FEATURE_NAME,
                sourceSet,
                Collections.emptySet(),
                project,
                false,
                false
            );
    
            // Create a source directories variant for the feature
            feature.withSourceElements();
    
            return feature;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // a persistent volume defined by a pod's inline VolumeSource. This field
      // is populated only for the CSIMigration feature. It contains
      // translated fields from a pod's inline VolumeSource to a
      // PersistentVolumeSpec. This field is beta-level and is only
      // honored by servers that enabled the CSIMigration feature.
      // +optional
      optional k8s.io.api.core.v1.PersistentVolumeSpec inlineVolumeSpec = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. guava-testlib/test/com/google/common/collect/testing/features/FeatureUtilTest.java

        Set<Feature<?>> features = Sets.<Feature<?>>newHashSet(ExampleBaseFeature.BASE_FEATURE_1);
        assertSame(features, FeatureUtil.addImpliedFeatures(features));
      }
    
      public void testAddImpliedFeatures_addsImpliedFeatures() throws Exception {
        Set<Feature<?>> features;
    
        features = Sets.<Feature<?>>newHashSet(ExampleDerivedFeature.DERIVED_FEATURE_1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. src/encoding/base32/base32_test.go

    	{"foobar", "MZXW6YTBOI======"},
    
    	// Wikipedia examples, converted to base32
    	{"sure.", "ON2XEZJO"},
    	{"sure", "ON2XEZI="},
    	{"sur", "ON2XE==="},
    	{"su", "ON2Q===="},
    	{"leasure.", "NRSWC43VOJSS4==="},
    	{"easure.", "MVQXG5LSMUXA===="},
    	{"asure.", "MFZXK4TFFY======"},
    	{"sure.", "ON2XEZJO"},
    }
    
    var bigtest = testpair{
    	"Twas brillig, and the slithy toves",
    	"KR3WC4ZAMJZGS3DMNFTSYIDBNZSCA5DIMUQHG3DJORUHSIDUN53GK4Y=",
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. android/guava-testlib/test/com/google/common/collect/testing/features/FeatureUtilTest.java

        Set<Feature<?>> features = Sets.<Feature<?>>newHashSet(ExampleBaseFeature.BASE_FEATURE_1);
        assertSame(features, FeatureUtil.addImpliedFeatures(features));
      }
    
      public void testAddImpliedFeatures_addsImpliedFeatures() throws Exception {
        Set<Feature<?>> features;
    
        features = Sets.<Feature<?>>newHashSet(ExampleDerivedFeature.DERIVED_FEATURE_1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. cmd/xl-storage-format_test.go

    	if unMarshalXLMeta.Erasure.ParityBlocks != jsoniterXLMeta.Erasure.ParityBlocks {
    		t.Errorf("Expected the erasure parity blocks to be %v, but got %v.", unMarshalXLMeta.Erasure.ParityBlocks, jsoniterXLMeta.Erasure.ParityBlocks)
    	}
    	if unMarshalXLMeta.Erasure.BlockSize != jsoniterXLMeta.Erasure.BlockSize {
    		t.Errorf("Expected the erasure block size to be %v, but got %v.", unMarshalXLMeta.Erasure.BlockSize, jsoniterXLMeta.Erasure.BlockSize)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top