Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 136 for Ordinary (0.14 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.kt

    interface Intf {
        fun run()
    }
    
    abstract class Ordinary
    
    annotation class Anno
    
    @Anno
    class Generic<T> : Ordinary(), Intf {
        override fun run() {}
    }
    
    enum class Direction {
        NORTH, SOUTH, WEST, EAST
    }
    
    sealed class Operation {
        class Add(val firstValue: Int, val secondValue: Int) : Operation()
        class Subtract(val minuend: Int, val subtrahend: Int) : Operation()
        class Negate(val value: Int) : Operation()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 07 16:22:01 UTC 2023
    - 426 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.ir.txt

            BLOCK_BODY
              DELEGATING_CONSTRUCTOR_CALL 'public constructor <init> () [primary] declared in <root>.Ordinary'
              INSTANCE_INITIALIZER_CALL classDescriptor='CLASS CLASS name:Generic modality:FINAL visibility:public superTypes:[<root>.Ordinary; <root>.Intf]'
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 04 09:35:38 UTC 2024
    - 25K bytes
    - Viewed (0)
  3. src/net/http/routing_index.go

    		// All paths that a dollar pattern matches end in a slash; no paths that
    		// an ordinary pattern matches do. So only other dollar or multi
    		// patterns can conflict with a dollar pattern. Furthermore, conflicting
    		// dollar patterns must have the {$} in the same position.
    		return apply(idx.segments[routingIndexKey{s: "/", pos: len(pat.segments) - 1}])
    	}
    	// For ordinary and multi patterns, the only conflicts can be with a multi,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 19 18:35:22 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/IterationOrderRetainingSetElementSourceTest.groovy

        }
    
        def "can re-add an ordinary value after removal"() {
            when:
            source.add("a")
            source.add("b")
            source.remove("a")
    
            then:
            source.iterator().collect() == ["b"]
    
            when:
            source.add("a")
    
            then:
            source.iterator().collect() == ["b", "a"]
        }
    
        def "can re-add an ordinary value after clear"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 06:43:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/StringModelSource.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.model.building;
    
    import org.apache.maven.building.StringSource;
    
    /**
     * Wraps an ordinary {@link CharSequence} as a model source.
     *
     *
     * @deprecated instead use {@link StringSource}
     */
    @Deprecated
    public class StringModelSource extends StringSource implements ModelSource {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. maven-settings-builder/src/main/java/org/apache/maven/settings/building/UrlSettingsSource.java

     * under the License.
     */
    package org.apache.maven.settings.building;
    
    import java.net.URL;
    
    import org.apache.maven.building.UrlSource;
    
    /**
     * Wraps an ordinary {@link URL} as a settings source.
     *
     *
     * @deprecated instead use {@link UrlSource}
     */
    @Deprecated
    public class UrlSettingsSource extends UrlSource implements SettingsSource {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/building/UrlModelSource.java

     * under the License.
     */
    package org.apache.maven.model.building;
    
    import java.net.URL;
    
    import org.apache.maven.building.UrlSource;
    
    /**
     * Wraps an ordinary {@link URL} as a model source.
     *
     *
     * @deprecated instead use {@link UrlSource}
     */
    @Deprecated
    public class UrlModelSource extends UrlSource implements ModelSource {
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.txt

        public final inner class Operation$Add
        public final inner class Operation$Negate
        public final inner class Operation$Subtract
    }
    
    public abstract class Ordinary {
        // source: 'classKinds.kt'
        public method <init>(): void
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 21 15:34:34 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/cover_list.txt

    # build arguments (such as -cover, -covermode). See issue #57785.
    
    [short] skip
    [!GOEXPERIMENT:coverageredesign] skip
    
    env GOBIN=$WORK/bin
    
    # Install a target and then do an ordinary staleness check on it.
    go install m/example
    ! stale m/example
    
    # Run a second staleness check with "-cover" as a build flag. The
    # installed target should indeed be stale, since we didn't build it
    # with -cover.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 22:47:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. maven-settings-builder/src/main/java/org/apache/maven/settings/building/FileSettingsSource.java

     * under the License.
     */
    package org.apache.maven.settings.building;
    
    import java.io.File;
    
    import org.apache.maven.building.FileSource;
    
    /**
     * Wraps an ordinary {@link File} as a settings source.
     *
     *
     * @deprecated instead use {@link FileSource}
     */
    @Deprecated
    public class FileSettingsSource extends FileSource implements SettingsSource {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top