Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 152 for measure (0.24 sec)

  1. cmd/object_api_suite_test.go

    func (r *testOneByteReadNoEOF) Read(p []byte) (n int, err error) {
    	if r.eof {
    		return 0, io.EOF
    	}
    	n = copy(p, r.data)
    	r.eof = true
    	return n, nil
    }
    
    // Wrapper for calling testMakeBucket for both Erasure and FS.
    func TestMakeBucket(t *testing.T) {
    	ExecObjectLayerTest(t, testMakeBucket)
    }
    
    // Tests validate bucket creation.
    func testMakeBucket(obj ObjectLayer, instanceType string, t TestErrHandler) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/schedulinggates/scheduling_gates_test.go

    import (
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/stretchr/testify/require"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/feature"
    	st "k8s.io/kubernetes/pkg/scheduler/testing"
    	"k8s.io/kubernetes/test/utils/ktesting"
    )
    
    func TestPreEnqueue(t *testing.T) {
    	tests := []struct {
    		name string
    		pod  *v1.Pod
    		want *framework.Status
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. releasenotes/notes/otel-accesslog-formatter.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 02:59:27 UTC 2024
    - 322 bytes
    - Viewed (0)
  4. releasenotes/notes/51506.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 51506
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 242 bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelModelQueryIntegrationTest.groovy

    class IsolatedProjectsToolingApiParallelModelQueryIntegrationTest extends AbstractIsolatedProjectsToolingApiIntegrationTest {
    
        def "intermediate model is cached and reused for nested concurrent requests"() {
            // Sleep to ensure concurrent requests for the same model catch up before the first one is finished
            withSomeToolingModelBuilderPluginInBuildSrc("""
                Thread.sleep(3000)
            """)
    
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. cmd/test-utils_test.go

    	ErasureSDStr string = "ErasureSD"
    
    	// ErasureTestStr is the string which is used as notation for Erasure ObjectLayer in the unit tests.
    	ErasureTestStr string = "Erasure"
    
    	// ErasureSetsTestStr is the string which is used as notation for Erasure sets object layer in the unit tests.
    	ErasureSetsTestStr string = "ErasureSet"
    )
    
    const letterBytes = "abcdefghijklmnopqrstuvwxyz01234569"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTaskIntegrationTest.groovy

                    public void exec() {
                        ${snippets.body}
                    }
                }
    
                def sneakyTask = tasks.register("sneakyTask", SneakyTask) {}
    
                // Ensure that buildSrc compilation triggers an exec task.
                tasks.named("classes").configure {
                    dependsOn(sneakyTask)
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. settings.gradle.kts

    // Internal utility and verification projects
    unassigned {
        subproject("internal-build-reports")
    }
    
    rootProject.name = "gradle"
    
    FeaturePreviews.Feature.values().forEach { feature ->
        if (feature.isActive) {
            enableFeaturePreview(feature.name)
        }
    }
    
    fun remoteBuildCacheEnabled(settings: Settings) = settings.buildCache.remote?.isEnabled == true
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/help/helpdoc.go

    The defined architecture feature build tags are:
    
    	- For GOARCH=386, GO386=387 and GO386=sse2
    	  set the 386.387 and 386.sse2 build tags, respectively.
    	- For GOARCH=amd64, GOAMD64=v1, v2, and v3
    	  correspond to the amd64.v1, amd64.v2, and amd64.v3 feature build tags.
    	- For GOARCH=arm, GOARM=5, 6, and 7
    	  correspond to the arm.5, arm.6, and arm.7 feature build tags.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    	"k8s.io/apimachinery/pkg/runtime"
    	v1helper "k8s.io/component-helpers/scheduling/corev1"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/feature"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/helper"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/names"
    	"k8s.io/kubernetes/pkg/scheduler/util"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top