Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 220 for measure (0.3 sec)

  1. cmd/xl-storage.go

    		Results: make([]int, len(fi.Parts)),
    	}
    
    	erasure := fi.Erasure
    	for i, part := range fi.Parts {
    		checksumInfo := erasure.GetChecksumInfo(part.Number)
    		partPath := pathJoin(volumeDir, path, fi.DataDir, fmt.Sprintf("part.%d", part.Number))
    		err := s.bitrotVerify(ctx, partPath,
    			erasure.ShardFileSize(part.Size),
    			checksumInfo.Algorithm,
    			checksumInfo.Hash, erasure.ShardSize())
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. docs/changelogs/changelog_3x.md

        for DNS offers better security and potentially better performance. This feature is a preview:
        the API is subject to change.
     *  New: `okhttp-sse` is an early preview of Server-Sent Events (SSE). This feature is incomplete
        and is only suitable for experimental use.
     *  New: MockWebServer now supports client authentication (mutual TLS). Call `requestClientAuth()`
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue.go

    	"reflect"
    	"sync"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/wait"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/informers"
    	listersv1 "k8s.io/client-go/listers/core/v1"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  4. pkg/controller/endpointslice/endpointslice_controller_test.go

    	assert.EqualValues(t, []discovery.Endpoint{}, slice.Endpoints)
    	assert.NotEmpty(t, slice.Annotations["endpoints.kubernetes.io/last-change-trigger-time"])
    }
    
    // Ensure SyncService gracefully handles a missing service. This test also
    // populates another existing service to ensure a clean up process doesn't
    // remove too much.
    func TestSyncServiceMissing(t *testing.T) {
    	namespace := metav1.NamespaceDefault
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                expectArtifact("publishTest", "jar", "optional-feature").hasConf(["optionalFeatureRuntimeElements"])
                assertConfigurationDependsOn("optionalFeatureRuntimeElements", "org:foo:4.0")
            }
    
            where:
            optional << [true, false]
        }
    
        def "an optional feature variant can repeat a dependency from a main variant"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  6. pkg/kubelet/status/status_manager_test.go

    	podStatus.Conditions = append(podStatus.Conditions, v1.PodCondition{
    		Type:   v1.PodConditionType("www.example.com/feature"),
    		Status: v1.ConditionTrue,
    	})
    
    	oldPodStatus.Conditions = append(podStatus.Conditions, v1.PodCondition{
    		Type:   v1.PodConditionType("www.example.com/feature"),
    		Status: v1.ConditionFalse,
    	})
    
    	normalizeStatus(&pod, &oldPodStatus)
    	normalizeStatus(&pod, &podStatus)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    		{
    			name:         "config with kmsv1, KMSv1=false",
    			kmsv1Enabled: false,
    			expectedErr:  "KMSv1 is deprecated and will only receive security updates going forward. Use KMSv2 instead.  Set --feature-gates=KMSv1=true to use the deprecated KMSv1 feature.",
    		},
    		{
    			name:         "config with kmsv1, KMSv1=true",
    			kmsv1Enabled: true,
    			expectedErr:  "",
    		},
    	}
    
    	for _, testCase := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            given:
            serviceImplementation()
            adhocTaskUsingUndeclaredService(null)
    
            when:
            succeeds 'broken'
    
            then:
            outputDoesNotContain "'Task#usesService'"
        }
    
        def "does nag when service is used by task without a corresponding usesService call and feature preview is enabled"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  9. src/runtime/mgc.go

    	prepareFreeWorkbufs()
    
    	// Free stack spans. This must be done between GC cycles.
    	systemstack(freeStackSpans)
    
    	// Ensure all mcaches are flushed. Each P will flush its own
    	// mcache before allocating, but idle Ps may not. Since this
    	// is necessary to sweep all spans, we need to ensure all
    	// mcaches are flushed before we start the next GC cycle.
    	//
    	// While we're here, flush the page cache for idle Ps to avoid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. .bazelrc

    #     dynamic_kernels:  Try to link all kernels dynamically (experimental).
    #     dbg:              Build with debug info
    #
    # TF version options;
    #     v2: Build TF v2
    #
    # Feature and Third party library support options:
    #     xla:          Build TF with XLA
    #     tpu:          Build TF with TPU support
    #     cuda:         Build with CUDA support.
    #     cuda_clang    Build with CUDA Clang support.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top