Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 626 for plans (0.05 sec)

  1. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.plan9-386.txt

    golang.org/toolchain@v0.0.1-go1.999testmod.plan9-386
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.plan9-386"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/rc
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 294 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.plan9-amd64.txt

    golang.org/toolchain@v0.0.1-go1.999testmod.plan9-amd64
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.plan9-amd64"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/rc
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 298 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.plan9-arm.txt

    golang.org/toolchain@v0.0.1-go1.999testmod.plan9-arm
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.plan9-arm"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/rc
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 294 bytes
    - Viewed (0)
  4. src/cmd/internal/objfile/plan9obj.go

    	textStart = f.plan9.LoadAddress + f.plan9.HdrSize
    	if pclntab, err = loadPlan9Table(f.plan9, "runtime.pclntab", "runtime.epclntab"); err != nil {
    		// We didn't find the symbols, so look for the names used in 1.3 and earlier.
    		// TODO: Remove code looking for the old symbols when we no longer care about 1.3.
    		var err2 error
    		if pclntab, err2 = loadPlan9Table(f.plan9, "pclntab", "epclntab"); err2 != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 01:01:44 UTC 2017
    - 3.5K bytes
    - Viewed (0)
  5. src/mime/testdata/test.types.plan9

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 257 bytes
    - Viewed (0)
  6. releasenotes/notes/29372.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 29364
    releaseNotes:
      - |
        **Fixed** Newer control plane installations were removing permissions for `rbac.istio.io` from `istiod`, causing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 09 01:47:01 UTC 2020
    - 287 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/plan9/errors_plan9.go

    	EBUSY        = syscall.NewError("no free devices")
    	ETIMEDOUT    = syscall.NewError("connection timed out")
    	EPLAN9       = syscall.NewError("not supported by plan 9")
    
    	// The following errors do not correspond to any
    	// Plan 9 system messages. Invented to support
    	// what package os and others expect.
    	EACCES       = syscall.NewError("access permission denied")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/plan9/env_plan9.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Plan 9 environment variables.
    
    package plan9
    
    import (
    	"syscall"
    )
    
    func Getenv(key string) (value string, found bool) {
    	return syscall.Getenv(key)
    }
    
    func Setenv(key, value string) error {
    	return syscall.Setenv(key, value)
    }
    
    func Clearenv() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 555 bytes
    - Viewed (0)
  9. src/debug/plan9obj/file_test.go

    	sections []*SectionHeader
    }
    
    var fileTests = []fileTest{
    	{
    		"testdata/386-plan9-exec",
    		FileHeader{Magic386, 0x324, 0x14, 4, 0x1000, 32},
    		[]*SectionHeader{
    			{"text", 0x4c5f, 0x20},
    			{"data", 0x94c, 0x4c7f},
    			{"syms", 0x2c2b, 0x55cb},
    			{"spsz", 0x0, 0x81f6},
    			{"pcsz", 0xf7a, 0x81f6},
    		},
    	},
    	{
    		"testdata/amd64-plan9-exec",
    		FileHeader{MagicAMD64, 0x618, 0x13, 8, 0x200000, 40},
    		[]*SectionHeader{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/plan9/const_plan9.go

    package plan9
    
    // Plan 9 Constants
    
    // Open modes
    const (
    	O_RDONLY  = 0
    	O_WRONLY  = 1
    	O_RDWR    = 2
    	O_TRUNC   = 16
    	O_CLOEXEC = 32
    	O_EXCL    = 0x1000
    )
    
    // Rfork flags
    const (
    	RFNAMEG  = 1 << 0
    	RFENVG   = 1 << 1
    	RFFDG    = 1 << 2
    	RFNOTEG  = 1 << 3
    	RFPROC   = 1 << 4
    	RFMEM    = 1 << 5
    	RFNOWAIT = 1 << 6
    	RFCNAMEG = 1 << 10
    	RFCENVG  = 1 << 11
    	RFCFDG   = 1 << 12
    	RFREND   = 1 << 13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 1004 bytes
    - Viewed (0)
Back to top