Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 491 for plan (0.04 sec)

  1. src/debug/gosym/symtab.go

    			if s.Value == addr {
    				return s
    			}
    		}
    	}
    	return nil
    }
    
    /*
     * Object files
     */
    
    // This is legacy code for Go 1.1 and earlier, which used the
    // Plan 9 format for pc-line tables. This code was never quite
    // correct. It's probably very close, and it's usually correct, but
    // we never quite found all the corner cases.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    ====
    
    WARNING: Declaring a dependency on an explicit target configuration is _not recommended_.
    If you plan to publish the component which has this dependency, this will likely lead to broken metadata.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/dra/manager.go

    				claimInfo = m.cache.add(newClaimInfoFromClaim(resourceClaim))
    			}
    
    			// Add a reference to the current pod in the claim info.
    			claimInfo.addPodReference(pod.UID)
    
    			// Checkpoint to ensure all claims we plan to prepare are tracked.
    			// If something goes wrong and the newly referenced pod gets
    			// deleted without a successful prepare call, we will catch
    			// that in the reconcile loop and take the appropriate action.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/edit.go

    			// itself out of the bottom of the module graph), or we can try
    			// downgrading it.
    			//
    			// If the version we would be upgrading to is ok to use, we will just plan
    			// to do that and avoid the overhead of trying to find some lower version
    			// to downgrade to.
    			//
    			// However, it is possible that m depends on something that leads to its
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. src/image/color/palette/palette.go

    // covering the rest of the color cube. The advantage is better representation
    // of continuous tones.
    //
    // This palette was used in the Plan 9 Operating System, described at
    // https://9p.io/magic/man2html/6/color
    var Plan9 = []color.Color{
    	color.RGBA{0x00, 0x00, 0x00, 0xff},
    	color.RGBA{0x00, 0x00, 0x44, 0xff},
    	color.RGBA{0x00, 0x00, 0x88, 0xff},
    	color.RGBA{0x00, 0x00, 0xcc, 0xff},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/shell.go

    		}
    	}
    
    	// The perm argument is meant to be adjusted according to umask,
    	// but we don't know what the umask is.
    	// Create a dummy file to find out.
    	// This avoids build tags and works even on systems like Plan 9
    	// where the file mask computation incorporates other information.
    	mode := perm
    	f, err := os.OpenFile(filepath.Clean(dst)+"-go-tmp-umask", os.O_WRONLY|os.O_CREATE|os.O_EXCL, perm)
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. src/syscall/exec_linux.go

    		// mounted with --shared. Systemd mounts / with --shared. For a
    		// long discussion of the pros and cons of this see debian bug 739593.
    		// The Go model of unsharing is more like Plan 9, where you ask
    		// to unshare and the namespaces are unconditionally unshared.
    		// To make this model work we must further mark / as MS_PRIVATE.
    		// This is what the standard unshare command does.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. src/flag/flag_test.go

    			os.Environ(),
    			"GO_CHILD_FLAG="+test.flag,
    			"GO_CHILD_FLAG_HANDLE="+test.flagHandle,
    		)
    		cmd.Run()
    		got := cmd.ProcessState.ExitCode()
    		// ExitCode is either 0 or 1 on Plan 9.
    		if runtime.GOOS == "plan9" && test.expectExit != 0 {
    			test.expectExit = 1
    		}
    		if got != test.expectExit {
    			t.Errorf("unexpected exit code for test case %+v \n: got %d, expect %d",
    				test, got, test.expectExit)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. README.md

    - If you plan to use `mc admin update`, MinIO process must have write access to the parent directory where the binary is present on the host system.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. src/runtime/sema.go

    // Think of them as a way to implement sleep and wakeup
    // such that every sleep is paired with a single wakeup,
    // even if, due to races, the wakeup happens before the sleep.
    //
    // See Mullender and Cox, ``Semaphores in Plan 9,''
    // https://swtch.com/semaphore.pdf
    
    package runtime
    
    import (
    	"internal/cpu"
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    // Asynchronous semaphore for sync.Mutex.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top