Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 265 for retracted (0.59 sec)

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

    go list -m -e -f $FMT example.com/retract/self/pseudo
    stdout '^example.com/retract/self/pseudo: "module example.com/retract/self/pseudo: not a known dependency" ""$'
    
    go list -m -e -f $FMT example.com/retract/self/pseudo@latest
    stdout '^example.com/retract/self/pseudo: "module example.com/retract/self/pseudo: no matching versions for query \\"latest\\"" "latest"$'
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 05 16:02:44 UTC 2021
    - 981 bytes
    - Viewed (0)
  2. cmd/dependencycheck/dependencycheck.go

    	}
    	if *restrict == "" {
    		log.Fatalf("Must specify restricted regex pattern")
    	}
    	depsPattern, err := regexp.Compile(*restrict)
    	if err != nil {
    		log.Fatalf("Error compiling restricted dependencies regex: %v", err)
    	}
    	var excludePattern *regexp.Regexp
    	if *exclude != "" {
    		excludePattern, err = regexp.Compile(*exclude)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelRuleCachingIntegrationTest.groovy

                def initialSize = ruleCache.size()
                gradle.buildFinished { println "### extracted new rules: \${ruleCache.size() > initialSize}" }
            """
        }
    
        boolean getNewRulesExtracted() {
            def match = output =~ /.*### extracted new rules: (true|false).*/
            match[0][1] == "true"
        }
    
        def "rules extracted from core plugins are reused across builds"() {
            given:
            buildFile << '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_edit.txt

    cmpenv go.mod $WORK/go.mod.edit1
    go mod edit -droprequire=x.1 -dropexclude=x.1@v1.2.1 -dropexclude=x.1@v2.0.0+incompatible -dropreplace=x.1@v1.3.0 -require=x.3@v1.99.0 -dropretract=v1.0.0 -dropretract=[v1.1.0,v1.2.0]
    cmpenv go.mod $WORK/go.mod.edit2
    
    # -exclude and -retract reject invalid versions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/transformation/OriginReplacementTest.kt

        interface InnerReceiver {
            @Restricted
            fun value(): Value
    
            @Restricted
            fun value(arg: Value): Value
    
            @Adding
            fun addingValue(value: Value): Value
    
            @get:Restricted
            val utils: Utils
    
            @get:Restricted
            var property: Value
        }
    
        interface Utils {
            @Restricted
            fun value(): Value
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:31:36 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_retract_rename_v1.9.0-new.txt

    Module example.com/retract/rename is renamed in this version.
    
    This happens frequently when a repository is renamed or when a go.mod file
    is added for the first time with a custom module path.
    -- .info --
    {"Version":"v1.9.0-new"}
    -- .mod --
    module example.com/retract/newname
    
    go 1.16
    
    // bad
    retract v1.0.0-bad
    -- go.mod --
    module example.com/retract/newname
    
    go 1.16
    
    // bad
    retract v1.0.0-bad
    -- newname.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 17:59:55 UTC 2020
    - 429 bytes
    - Viewed (0)
  7. cni/pkg/install/kubeconfig.go

    		c.CertificateAuthority = "REDACTED"
    	}
    	lrcfg, err := latest.Scheme.ConvertToVersion(kcfg, latest.ExternalVersion)
    	if err != nil {
    		return kubeconfig{}, err
    	}
    	redacted, err := yaml.Marshal(lrcfg)
    	if err != nil {
    		return kubeconfig{}, err
    	}
    
    	return kubeconfig{
    		Full:     string(fullYaml),
    		Redacted: string(redacted),
    	}, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/under.go

    // If t is a type parameter, coreType returns the single underlying
    // type of all types in its type set if it exists, or nil otherwise. If the
    // type set contains only unrestricted and restricted channel types (with
    // identical element types), the single underlying type is the restricted
    // channel type if the restrictions are always the same, or nil otherwise.
    func coreType(t Type) Type {
    	t = Unalias(t)
    	tpar, _ := t.(*TypeParam)
    	if tpar == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 22:34:27 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. callbacks/helper.go

    		selectColumns, restricted = stmt.SelectAndOmitColumns(true, false)
    	)
    
    	for idx, mapValue := range mapValues {
    		for k, v := range mapValue {
    			if stmt.Schema != nil {
    				if field := stmt.Schema.LookUpField(k); field != nil {
    					k = field.DBName
    				}
    			}
    
    			if _, ok := result[k]; !ok {
    				if v, ok := selectColumns[k]; (ok && v) || (!ok && !restricted) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Apr 14 12:32:57 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_retract_ambiguous_other_v1.0.0.txt

    -- .mod --
    module example.com/retract/ambiguous/other
    
    go 1.16
    
    require example.com/retract/ambiguous v1.0.0
    -- .info --
    {"Version":"v1.0.0"}
    -- other.go --
    package other
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 18 15:31:11 UTC 2020
    - 220 bytes
    - Viewed (0)
Back to top