Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 64 of 64 for Shardz (0.43 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // originally tried to generate it via unix/linux/types.go with "type
    // fileHandle C.struct_file_handle" but that generated empty structs
    // for mips64 and mips64le. Instead, hard code it for now (it's the
    // same everywhere else) until the mips64 generator issue is fixed.
    type fileHandle struct {
    	Bytes uint32
    	Type  int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react
    	// by sending a graceful termination signal to the containers in the pod. After that 30 seconds,
    	// the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup,
    	// remove the pod from the API. In the presence of network partitions, this object may still
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    // separate from the loading operation, such as during "go get"
    // upgrades/downgrades or in "go mod" operations.
    // TODO(#40775): It might be nice to make the loader take and return
    // a buildList rather than hard-coding use of the global.
    //
    // Loading is an iterative process. On each iteration, we try to load the
    // requested packages and their transitive imports, then try to resolve modules
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. src/os/os_test.go

    		t.Fatalf("stat %q failed: %v", to, err)
    	}
    	fromstat, err := Stat(from)
    	if err != nil {
    		t.Fatalf("stat %q failed: %v", from, err)
    	}
    	if !SameFile(tostat, fromstat) {
    		t.Errorf("link %q, %q did not create hard link", to, from)
    	}
    	// We should not be able to perform the same Link() a second time
    	err = Link(to, from)
    	switch err := err.(type) {
    	case *LinkError:
    		if err.Op != "link" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top