Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 182 for retracted (0.44 sec)

  1. src/cmd/go/testdata/script/mod_tidy_compat_incompatible.txt

    
    # There are two ways for the module author to bring the two into alignment.
    # One is to *explicitly* 'exclude' the version that is already *implicitly*
    # pruned out under 1.17.
    
    go mod edit -exclude=example.com/retract/incompatible@v2.0.0+incompatible
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    //
    // Later replace directives take priority.
    //
    // require directives are not de-duplicated. That's left up to higher-level
    // logic (MVS).
    //
    // retract directives are not de-duplicated since comments are
    // meaningful, and versions may be retracted multiple times.
    func (f *WorkFile) removeDups() {
    	removeDups(f.Syntax, nil, &f.Replace)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //
    // The -retracted flag causes list to report information about retracted
    // module versions. When -retracted is used with -f or -json, the Retracted
    // field will be set to a string explaining why the version was retracted.
    // The string is taken from comments on the retract directive in the
    // module's go.mod file. When -retracted is used with -versions, retracted
    // versions are listed together with unretracted versions. The -retracted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/coderepo.go

    	tagPrefix := ""
    	if r.codeDir != "" {
    		tagPrefix = r.codeDir + "/"
    	}
    
    	isRetracted, err := r.retractedVersions(ctx)
    	if err != nil {
    		isRetracted = func(string) bool { return false }
    	}
    
    	// tagToVersion returns the version obtained by trimming tagPrefix from tag.
    	// If the tag is invalid, retracted, or a pseudo-version, tagToVersion returns
    	// an empty version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

    Available software types:
    
    application (com.example.restricted.ApplicationExtension)
            Defined in: com.example.restricted.ApplicationPlugin
            Registered by: com.example.restricted.SoftwareTypeRegistrationPlugin
    library (com.example.restricted.LibraryExtension)
            Defined in: com.example.restricted.LibraryPlugin
            Registered by: com.example.restricted.SoftwareTypeRegistrationPlugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDSLCustomDependenciesExtensionsSpec.groovy

            file("build-logic/src/main/java/com/example/restricted/BaseDependencies.java") << """
                package com.example.restricted;
    
                import org.gradle.api.artifacts.dsl.Dependencies;
                import org.gradle.declarative.dsl.model.annotations.Restricted;
    
                @Restricted
                public interface BaseDependencies extends Dependencies {
                    @Restricted
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDslProjectBuildFileIntegrationSpec.groovy

                            id = "com.example.restricted"
                            implementationClass = "com.example.restricted.RestrictedPlugin"
                        }
                        create("softwareTypeRegistrator") {
                            id = "com.example.restricted.ecosystem"
                            implementationClass = "com.example.restricted.SoftwareTypeRegistrationPlugin"
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top