Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for createBar (0.92 sec)

  1. cmd/site-replication.go

    	if opts.VersioningEnabled {
    		optsMap["versioningEnabled"] = "true"
    	}
    	if opts.ForceCreate {
    		optsMap["forceCreate"] = "true"
    	}
    	createdAt, _ := globalBucketMetadataSys.CreatedAt(bucket)
    	optsMap["createdAt"] = createdAt.UTC().Format(time.RFC3339Nano)
    	opts.CreatedAt = createdAt
    
    	// Create bucket and enable versioning on all peers.
    	makeBucketConcErr := c.concDo(
    		func() error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    // be held during all calls into the Conn. (including any calls onto
    // interfaces returned via that Conn, such as calls on Tx, Stmt,
    // Result, Rows)
    type driverConn struct {
    	db        *DB
    	createdAt time.Time
    
    	sync.Mutex  // guards following
    	ci          driver.Conn
    	needReset   bool // The connection session should be reset before use if true.
    	closed      bool
    	finalClosed bool // ci.Close has been called
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerCachingSmokeTest.groovy

            given:
            AGP_VERSIONS.assumeCurrentJavaVersionIsSupportedBy(agpVersion)
    
            and:
            def originalDir = temporaryFolder.createDir("original")
            def relocatedDir = temporaryFolder.createDir("relocated")
    
            and:
            setupCopyOfSantaTracker(originalDir)
            setupCopyOfSantaTracker(relocatedDir)
    
            when: 'clean build'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 13:45:43 UTC 2024
    - 209.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            // a transform workspace.
            def includedBuild = new BuildTestFile(file("lib-project"), "lib-project")
            includedBuild.with {
                it.createDir("producer")
                settingsFile << """
                    include(":producer")
                """
                file("project-artifact.jar").text = "project artifact"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods_test.go

    	criStatus := &kubecontainer.PodStatus{
    		ID:        pod.UID,
    		Name:      pod.Name,
    		Namespace: pod.Namespace,
    		ContainerStatuses: []*kubecontainer.Status{
    			{Name: "containerA", CreatedAt: testTimestamp},
    			{Name: "containerB", CreatedAt: testTimestamp.Add(1)},
    		},
    	}
    
    	testKubelet := newTestKubelet(t, false)
    	defer testKubelet.Cleanup()
    	kl := testKubelet.kubelet
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top