Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 429 for retracted (0.89 sec)

  1. 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)
  2. src/cmd/go/testdata/script/mod_tidy_compat_implicit.txt

    -- lazy/go.mod --
    // Module lazy requires example.com/retract/incompatible v1.0.0.
    //
    // When viewed from the outside it also has a transitive dependency
    // on v2.0.0+incompatible, but in lazy mode that transitive dependency
    // is pruned out.
    module example.net/lazy
    
    go 1.17
    
    exclude example.com/retract/incompatible v2.0.0+incompatible
    
    require (
    	example.com/retract/incompatible v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/go/types/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.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_compat_irrelevant.txt

    -- lazy/go.mod --
    // Module lazy requires example.com/retract/incompatible v1.0.0.
    //
    // When viewed from the outside it also has a transitive dependency
    // on v2.0.0+incompatible, but in lazy mode that transitive dependency
    // is pruned out.
    module example.net/lazy
    
    go 1.17
    
    exclude example.com/retract/incompatible v2.0.0+incompatible
    
    require (
    	example.com/retract/incompatible v1.0.0
    	example.net/requireincompatible v0.1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/topologymanager/policy_restricted.go

    package topologymanager
    
    type restrictedPolicy struct {
    	bestEffortPolicy
    }
    
    var _ Policy = &restrictedPolicy{}
    
    // PolicyRestricted policy name.
    const PolicyRestricted string = "restricted"
    
    // NewRestrictedPolicy returns restricted policy.
    func NewRestrictedPolicy(numaInfo *NUMAInfo, opts PolicyOptions) Policy {
    	return &restrictedPolicy{bestEffortPolicy{numaInfo: numaInfo, opts: opts}}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:08 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/SubtypingTest.kt

        @Adding
        abstract fun addSuperClass(superclass: SuperClass)
    
        @Adding
        abstract fun addSuperInterface(superclass: SuperInterface)
    
        @Restricted
        abstract fun sub(): Subtype
    
        @Restricted
        abstract fun notASub(): NotASubtype
    }
    
    
    private
    abstract class SuperClass
    
    
    private
    interface SuperInterface
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:02 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/initialization/ProjectDescriptor.java

         * Returns the name of this project.
         *
         * @return The name of the project. Never returns null.
         */
        @Restricted
        String getName();
    
        /**
         * Sets the name of this project.
         *
         * @param name The new name for the project. Should not be null
         */
        @Restricted
        void setName(String name);
    
        /**
         * Returns the project directory of this project.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

                import org.gradle.declarative.dsl.model.annotations.Restricted;
                import org.gradle.api.Action;
                import org.gradle.api.model.ObjectFactory;
                import org.gradle.api.provider.ListProperty;
                import org.gradle.api.provider.Property;
    
                import javax.inject.Inject;
    
                @Restricted
                public abstract class TestSoftwareTypeExtension {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/02-pkgsite-removal.yml

        id: retraction-reason
        attributes:
          label: "What is the reason that you could not retract this package instead?"
          description: |
            Requesting we remove a module here only hides the generated documentation on pkg.go.dev.
            It does not affect the behaviour of proxy.golang.org or the go command.
            Instead we recommend using the retract directive which will be processed by all 3 of the above.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomResolutionTest.kt

            @Configuring
            fun nested(configure: NestedReceiver.() -> Unit) = configure(nested)
    
            @Restricted
            fun one(complexValueTwo: ComplexValueTwo): ComplexValueOne = ComplexValueOne()
    
            @Restricted
            fun two(name: String): ComplexValueTwo = ComplexValueTwo()
    
            @get:Restricted
            val utils: Utils = Utils()
    
            @get:Restricted
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top