Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 126 for sesame (0.14 sec)

  1. src/cmd/go/internal/work/shell.go

    func (sh *Shell) moveOrCopyFile(dst, src string, perm fs.FileMode, force bool) error {
    	if cfg.BuildN {
    		sh.ShowCmd("", "mv %s %s", src, dst)
    		return nil
    	}
    
    	// If we can update the mode and rename to the dst, do it.
    	// Otherwise fall back to standard copy.
    
    	// If the source is in the build cache, we need to copy it.
    	dir, _ := cache.DefaultDir()
    	if strings.HasPrefix(src, dir) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. cmd/metacache-server-pool.go

    	"os"
    	pathutil "path"
    	"strings"
    	"sync"
    	"time"
    
    	"github.com/minio/minio/internal/grid"
    	xioutil "github.com/minio/minio/internal/ioutil"
    )
    
    func renameAllBucketMetacache(epPath string) error {
    	// Rename all previous `.minio.sys/buckets/<bucketname>/.metacache` to
    	// to `.minio.sys/tmp/` for deletion.
    	return readDirFn(pathJoin(epPath, minioMetaBucket, bucketMetaPrefix), func(name string, typ os.FileMode) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:23 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. 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)
  4. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

                        }
                    }
                }
                from(performanceTest.get().debugArtifactsDirectory) {
                    // Rename the json file specific per task, so we can copy multiple of those files from one build on Teamcity
                    rename(Config.performanceTestResultsJsonName, "perf-results-${performanceTest.name}.json")
                }
                destinationDirectory = project.layout.buildDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  5. tests/integration/telemetry/tracing/tracing.go

    			len(got.ChildSpans), len(want.ChildSpans))
    		return false
    	} else if len(got.ChildSpans) > len(want.ChildSpans) {
    		t.Logf("got %d child spans from, want %d child spans, maybe destination rule has not became effective",
    			len(got.ChildSpans), len(want.ChildSpans))
    		return false
    	}
    	for i := range got.ChildSpans {
    		if !CompareTrace(t, *got.ChildSpans[i], *want.ChildSpans[i]) {
    			return false
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 19:05:09 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. cmd/erasure-multipart.go

    			targetPath := pathJoin(drivePath, minioMetaTmpDeletedBucket, pathUUID)
    
    			// We are not deleting shaDir recursively here, if shaDir is empty
    			// and its older then we can happily delete it.
    			Rename(pathJoin(drivePath, minioMetaMultipartBucket, shaDir), targetPath)
    			wait()
    			return nil
    		})
    	})
    
    	readDirFn(pathJoin(drivePath, minioMetaTmpBucket), func(tmpDir string, typ os.FileMode) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. src/crypto/tls/quic.go

    	QUICRejectedEarlyData
    
    	// QUICHandshakeDone indicates that the TLS handshake has completed.
    	QUICHandshakeDone
    
    	// QUICResumeSession indicates that a client is attempting to resume a previous session.
    	// [QUICEvent.SessionState] is set.
    	//
    	// For client connections, this event occurs when the session ticket is selected.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. pkg/volume/util/atomic_writer.go

    //
    //  8. A symlink to the new timestamped directory ..data_tmp is created that will
    //     become the new data directory.
    //
    //  9. The new data directory symlink is renamed to the data directory; rename is atomic.
    //
    //  10. Symlinks and directory for new user-visible files are created (if needed).
    //
    //     For example, consider the files:
    //     <target-dir>/podName
    //     <target-dir>/user/labels
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go

    // JSON or YAML marshalling and unmarshalling, it produces or consumes the
    // inner type.  This allows you to have, for example, a JSON field that can
    // accept a name or number.
    // TODO: Rename to Int32OrString
    //
    // +protobuf=true
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    // +k8s:openapi-gen=true
    type IntOrString struct {
    	Type   Type   `protobuf:"varint,1,opt,name=type,casttype=Type"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/call.go

    			} else {
    				check.versionErrorf(call, go1_18, "implicit function instantiation")
    			}
    		}
    		// rename type parameters to avoid problems with recursive calls
    		var tmp Type
    		tparams, tmp = check.renameTParams(call.Pos(), sig.TypeParams().list(), sigParams)
    		sigParams = tmp.(*Tuple)
    		// make sure targs and tparams have the same length
    		for len(targs) < len(tparams) {
    			targs = append(targs, nil)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
Back to top