Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for sesame (0.26 sec)

  1. src/crypto/tls/bogo_shim_test.go

    	_                          = flag.Bool("reverify-on-resume", false, "")
    	onResumeECHConfigListB64   = flag.String("on-resume-ech-config-list", "", "")
    	_                          = flag.Bool("on-resume-expect-reject-early-data", false, "")
    	onResumeExpectECHAccepted  = flag.Bool("on-resume-expect-ech-accept", false, "")
    	_                          = flag.Bool("on-resume-expect-no-ech-name-override", false, "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. src/crypto/tls/bogo_config.json

            "Resume-Server-NoTickets-TLS1-TLS1-TLS": "TODO: first pass, this should be fixed",
            "Resume-Server-NoTickets-TLS11-TLS11-TLS": "TODO: first pass, this should be fixed",
            "Resume-Server-NoTickets-TLS12-TLS12-TLS": "TODO: first pass, this should be fixed",
            "Resume-Server-NoPSKBinder": "TODO: first pass, this should be fixed",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 15:52:42 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. pkg/kubelet/certificate/kubelet_test.go

    		}
    	}
    	if err := os.Rename(writeDir, targetDir); err != nil {
    		return "", "", err
    	}
    
    	return certPath, keyPath, nil
    }
    
    func TestKubeletServerCertificateFromFiles(t *testing.T) {
    	// test two common ways of certificate file updates:
    	// 1. delete and write the cert and key files directly
    	// 2. create the cert and key files under a child dir and perform dir rename during update
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:40 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. cmd/background-newdisks-heal-ops.go

    	h.mu.RLock()
    	defer h.mu.RUnlock()
    	for _, v := range h.HealedBuckets {
    		if v == bucket {
    			return true
    		}
    	}
    	return false
    }
    
    // resume will reset progress to the numbers at the start of the bucket.
    func (h *healingTracker) resume() {
    	h.mu.Lock()
    	defer h.mu.Unlock()
    
    	h.ItemsHealed = h.ResumeItemsHealed
    	h.ItemsFailed = h.ResumeItemsFailed
    	h.BytesDone = h.ResumeBytesDone
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:32 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

        }
    
        @Issue("gradle/gradle#20390")
        def "can deserialize copy task with rename"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            buildFile """
                tasks.register('copyAndRename', Copy) {
                    from('foo') { rename { 'bar' } }
                }
            """
    
            when:
            configurationCacheRun "copyAndRename"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. pilot/pkg/features/telemetry.go

    		"If true, pilot will add metadata exchange filters, which will be consumed by telemetry filter.",
    	).Get()
    
    	// This is an experimental feature flag, can be removed once it became stable, and should introduced to Telemetry API.
    	MetricRotationInterval = env.Register("METRIC_ROTATION_INTERVAL", 0*time.Second,
    		"Metric scope rotation interval, set to 0 to disable the metric scope rotation").Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. cmd/xl-storage.go

    		renameAll(encodeDirObject(filePath), targetPath2, pathutil.Join(s.drivePath, minioMetaBucket))
    	}
    
    	// ENOSPC is a valid error from rename(); remove instead of rename in that case
    	if errors.Is(err, errDiskFull) || isSysErrNoSpace(err) {
    		if recursive {
    			err = removeAll(filePath)
    		} else {
    			err = Remove(filePath)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. cmd/storage-datatypes.go

    	// OldDataDir of the previous object
    	OldDataDir string `msg:"o,omitempty"` // old data dir used only when to revert a rename()
    }
    
    // BaseOptions represents common options for all Storage API calls
    type BaseOptions struct{}
    
    // RenameOptions represents rename API options, currently its same as BaseOptions
    type RenameOptions struct {
    	BaseOptions
    }
    
    // DiskInfoOptions options for requesting custom results.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. cmd/erasure-server-pool-decom.go

    		if pool.Decommission == nil {
    			continue
    		}
    		if pool.Decommission.Complete || pool.Decommission.Canceled {
    			// Do not resume decommission upon startup for
    			// - decommission complete
    			// - decommission canceled
    			continue
    		} // In all other situations we need to resume
    		newPools = append(newPools, pool)
    	}
    	return newPools
    }
    
    func (p *poolMeta) DecommissionComplete(idx int) bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    						// Here is how container log rotation works (see containerLogManager#rotateLatestLog):
    						//
    						// 1. rename current log to rotated log file whose filename contains current timestamp (fmt.Sprintf("%s.%s", log, timestamp))
    						// 2. reopen the container log
    						// 3. if #2 fails, rename rotated log file back to container log
    						//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top