Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 552 for newer (0.55 sec)

  1. src/os/os_windows_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	fi, err := os.Lstat(link)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if m := fi.Mode(); m&fs.ModeSymlink != 0 {
    		// This can happen depending on newer WSL versions when running as admin or in developer mode.
    		t.Skip("skipping: WSL created reparse tag IO_REPARSE_TAG_SYMLINK instead of an IO_REPARSE_TAG_LX_SYMLINK")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    func getReplicationAction(oi1 ObjectInfo, oi2 minio.ObjectInfo, opType replication.Type) replicationAction {
    	// Avoid resyncing null versions created prior to enabling replication if target has a newer copy
    	if opType == replication.ExistingObjectReplicationType &&
    		oi1.ModTime.Unix() > oi2.LastModified.Unix() && oi1.VersionID == nullVersionID {
    		return replicateNone
    	}
    	sz, _ := oi1.GetActualSize()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. cmd/bucket-handlers.go

    				// such an intersection means that bucket exists on etcd.
    				// but if we do see a difference with local domain IPs with
    				// hostSlice from etcd then we should update with newer
    				// domainIPs, we proceed to do that here.
    				bucketsToBeUpdated.Add(bucket.Name)
    				continue
    			}
    
    			// No IPs seem to intersect, this means that bucket exists but has
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    //
    // The [Parse] and [ParseLax] functions both parse a go.mod file and return an
    // abstract syntax tree. ParseLax ignores unknown statements and may be used to
    // parse go.mod files that may have been developed with newer versions of Go.
    //
    // The [File] struct returned by Parse and ParseLax represent an abstract
    // go.mod file. File has several methods like [File.AddNewRequire] and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    		return ss[0] + " and " + ss[1]
    	default:
    		return strings.Join(ss[:len(ss)-1], ", ") + ", and " + ss[len(ss)-1]
    	}
    }
    
    // NamespaceNameLabel represents that label added automatically to namespaces is newer Kubernetes clusters
    const NamespaceNameLabel = "kubernetes.io/metadata.name"
    
    // toNamespaceSet converts a set of namespace labels to a Set that can be used to select against.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. src/time/time.go

    //
    // # Timer Resolution
    //
    // [Timer] resolution varies depending on the Go runtime, the operating system
    // and the underlying hardware.
    // On Unix, the resolution is ~1ms.
    // On Windows version 1803 and newer, the resolution is ~0.5ms.
    // On older Windows versions, the default resolution is ~16ms, but
    // a higher resolution may be requested using [golang.org/x/sys/windows.TimeBeginPeriod].
    package time
    
    import (
    	"errors"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/test.go

    	if got, want := issue25143sum(1, 2, 3), C.int(6); got != want {
    		t.Errorf("issue25143sum(1, 2, 3) == %v, expected %v", got, want)
    	}
    }
    
    // issue 26066
    // Wrong type of constant with GCC 8 and newer.
    
    func test26066(t *testing.T) {
    	var i = int64(C.issue26066)
    	if i != -1 {
    		t.Errorf("got %d, want -1", i)
    	}
    }
    
    // issue 26517
    var a C.TypeOne
    var b C.TypeTwo
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. src/crypto/tls/common.go

    	return supportedVersions[0]
    }
    
    // supportedVersionsFromMax returns a list of supported versions derived from a
    // legacy maximum version value. Note that only versions supported by this
    // library are returned. Any newer peer will use supportedVersions anyway.
    func supportedVersionsFromMax(maxVersion uint16) []uint16 {
    	versions := make([]uint16, 0, len(supportedVersions))
    	for _, v := range supportedVersions {
    		if v > maxVersion {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  9. cmd/xl-storage-format-v2.go

    	xlVersionCurrent [4]byte
    )
    
    //go:generate msgp -file=$GOFILE -unexported
    //go:generate stringer -type VersionType,ErasureAlgo -output=xl-storage-format-v2_string.go $GOFILE
    
    const (
    	// Breaking changes.
    	// Newer versions cannot be read by older software.
    	// This will prevent downgrades to incompatible versions.
    	xlVersionMajor = 1
    
    	// Non breaking changes.
    	// Bumping this is informational, but should be done
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. src/runtime/pprof/pprof_test.go

    	t.Logf("Running on Linux %d.%d", major, minor)
    	defer func() {
    		if t.Failed() {
    			t.Logf("Failure of this test may indicate that your system suffers from a known Linux kernel bug fixed on newer kernels. See https://golang.org/issue/49065.")
    		}
    	}()
    
    	// Disable on affected builders to avoid flakiness, but otherwise keep
    	// it enabled to potentially warn users that they are on a broken
    	// kernel.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top