Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 575 for retracted (0.18 sec)

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

    	{49, "SIGCAPI", "signal 49"},
    	{58, "SIGRECONFIG", "signal 58"},
    	{59, "SIGCPUFAIL", "CPU Failure Predicted"},
    	{60, "SIGGRANT", "monitor mode granted"},
    	{61, "SIGRETRACT", "monitor mode retracted"},
    	{62, "SIGSOUND", "sound completed"},
    	{63, "SIGMAX32", "secure attention"},
    	{255, "SIGMAX", "signal 255"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	{49, "SIGCAPI", "signal 49"},
    	{58, "SIGRECONFIG", "signal 58"},
    	{59, "SIGCPUFAIL", "CPU Failure Predicted"},
    	{60, "SIGKAP", "monitor mode granted"},
    	{61, "SIGRETRACT", "monitor mode retracted"},
    	{62, "SIGSOUND", "sound completed"},
    	{63, "SIGSAK", "secure attention"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    			errorf("unexpected token after version: %q", args[0])
    			return
    		}
    		retract := &Retract{
    			VersionInterval: vi,
    			Rationale:       rationale,
    			Syntax:          line,
    		}
    		f.Retract = append(f.Retract, retract)
    	}
    }
    
    func parseReplace(filename string, line *Line, verb string, args []string, fix VersionFixer) (*Replace, *Error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/example.com_retract_self_all_v1.9.0.txt

    Module example.com/retract/self/prev is a module that retracts its own
    latest version.
    
    No unretracted versions are available.
    
    -- .mod --
    module example.com/retract/self/all
    
    go 1.15
    
    retract v1.9.0 // bad
    
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 241 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/example.com_retract_self_pseudo_v1.9.0.txt

    Module example.com/retract/self/pseudo is a module that retracts its own
    latest version, as well as an earlier version.
    
    An unretracted pseudo-version is available.
    
    -- .mod --
    module example.com/retract/self/pseudo
    
    go 1.15
    
    retract v1.0.0-bad // bad
    retract v1.9.0 // self
    
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 310 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_retract_self_prev_v1.9.0.txt

    Module example.com/retract/self/prev is a module that retracts its own
    latest version, as well as an earlier version.
    
    A previous unretracted release version, v1.1.0, is still available.
    
    -- .mod --
    module example.com/retract/self/prev
    
    go 1.15
    
    retract v1.0.0-bad // bad
    retract v1.9.0 // self
    
    -- .info --
    {"Version":"v1.9.0"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:12:37 UTC 2020
    - 351 bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-api/src/main/java/org/gradle/declarative/dsl/model/annotations/Restricted.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    @Target({ElementType.TYPE, ElementType.METHOD})
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 07:57:00 UTC 2024
    - 1005 bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    	for i := range retractions {
    		i := i
    		r.work.Add(func() {
    			err := modload.CheckRetractions(ctx, retractions[i].m)
    			if retractErr := (*modload.ModuleRetractedError)(nil); errors.As(err, &retractErr) {
    				retractions[i].message = err.Error()
    			}
    		})
    	}
    
    	// Load deprecations for modules mentioned on the command line. Only load
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/example.com_retract_incompatible_v1.0.0.txt

    The v1.0.0 release of example.com/retract/incompatible retracts
    v2.0.0+incompatible.
    
    -- .mod --
    module example.com/retract/incompatible
    
    go 1.16
    
    retract v2.0.0+incompatible
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module example.com/retract/incompatible
    
    go 1.16
    
    retract v2.0.0+incompatible
    -- incompatible.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 20 16:23:19 UTC 2020
    - 342 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_retract_incompatible_v2.0.0+incompatible.txt

    The v1.0.0 release of example.com/retract/incompatible retracts
    v2.0.0+incompatible.
    
    -- .mod --
    module example.com/retract/incompatible
    -- .info --
    {"Version":"v2.0.0+incompatible"}
    -- incompatible.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 20 16:23:19 UTC 2020
    - 226 bytes
    - Viewed (0)
Back to top