Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 575 for retracted (0.2 sec)

  1. src/cmd/go/testdata/mod/example.com_retract_self_prerelease_v1.9.1-pre.txt

    Module example.com/retract/self/prerelease is a module that retracts its own
    latest version and all other release version.
    
    A pre-release version higher than the highest release version is still
    available, and that should be matched by @latest.
    
    -- .mod --
    module example.com/retract/self/prerelease
    
    go 1.15
    
    -- .info --
    {"Version":"v1.9.1-pre"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 369 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/example.com_retract_self_prerelease_v1.0.0.txt

    Module example.com/retract/self/prerelease is a module that retracts its own
    latest version and all other release version.
    
    A pre-release version higher than the highest release version is still
    available, and that should be matched by @latest.
    
    -- .mod --
    module example.com/retract/self/prerelease
    
    go 1.15
    
    -- .info --
    {"Version":"v1.0.0"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 365 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/vcstest/git/retract-pseudo.txt

    git add go.mod p.go
    git commit -m 'create module retract-pseudo'
    git branch -m main
    git tag v1.0.0
    
    git mv p.go q.go
    git commit -m 'trivial change'
    
    git show-ref --tags --heads
    cmp stdout .git-refs
    
    -- .git-refs --
    713affd19d7b9b6dc876b603017f3dcaab8ba674 refs/heads/main
    64c061ed4371ef372b6bbfd58ee32015d6bfc3e5 refs/tags/v1.0.0
    -- go.mod --
    module vcs-test.golang.org/git/retract-pseudo.git
    
    go 1.16
    
    retract v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 651 bytes
    - Viewed (0)
  4. hack/testdata/pod-restricted-localhost.yaml

    Keita Mochizuki <******@****.***> 1684927009 +0900
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 24 11:16:49 UTC 2023
    - 467 bytes
    - Viewed (0)
  5. hack/testdata/pod-restricted-runtime-default.yaml

    Keita Mochizuki <******@****.***> 1684927009 +0900
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 24 11:16:49 UTC 2023
    - 437 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-configuration/declarative-dsl-core/src/integTest/groovy/org/gradle/internal/declarativedsl/ErrorHandlingOnReflectiveCallsSpec.groovy

                            id = "com.example.restricted"
                            implementationClass = "com.example.restricted.RestrictedPlugin"
                        }
                        create("restrictedEcosystem") {
                            id = "com.example.restricted.ecosystem"
                            implementationClass = "com.example.restricted.SoftwareTypeRegistrationPlugin"
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorTest.groovy

                }
            '''
    
            when:
            def clazz = api.classes.A
            def extracted = api.extractAndLoadApiClassFrom(clazz)
    
            then:
            clazz.clazz.getDeclaredMethod('foo').modifiers == Modifier.PUBLIC
            hasMethod(extracted, 'foo')
    
            when:
            def o = createInstance(extracted)
            o.foo()
    
            then:
            def e = thrown(Exception)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 14.8K bytes
    - Viewed (0)
Back to top