Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for north (0.61 sec)

  1. test/typeparam/graph.go

    var zork = map[int]mazeRoom{
    	11: {exits: [10]int{north: 11, south: 12, east: 14}}, // west to Troll Room
    	12: {exits: [10]int{south: 11, north: 14, east: 13}},
    	13: {exits: [10]int{west: 12, north: 14, up: 16}},
    	14: {exits: [10]int{west: 13, north: 11, east: 15}},
    	15: {exits: [10]int{south: 14}},                   // Dead End
    	16: {exits: [10]int{east: 17, north: 13, sw: 18}}, // skeleton, etc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtExpressionInfoProvider.kt

         *
         * The missing cases of the when-expression in the following example are Direction.WEST and Direction.EAST:
         *
         * enum class Direction {
         *   NORTH, SOUTH, WEST, EAST
         * }
         * foo = when(direction) {
         *   Direction.NORTH -> 1
         *   Direction.SOUTH -> 2
         *   else -> 3
         * }
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/resources-s3/src/test/groovy/org/gradle/internal/resource/transport/aws/s3/S3RegionalResourceTest.groovy

            new URI("s3://somebucket.au.s3-ap-southeast-2.amazonaws.com/a/b/file.txt")    | Optional.of(getRegion(Regions.AP_SOUTHEAST_2))                      | 'somebucket.au' | 'a/b/file.txt'
            new URI("s3://somebucket.au.s3.cn-north-1.amazonaws.com.cn/a/b/file.txt")     | Optional.of(RegionUtils.getRegion(Region.CN_Beijing.firstRegionId)) | 'somebucket.au' | 'a/b/file.txt'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.txt

        private synthetic final static field $ENTRIES: kotlin.enums.EnumEntries
        private synthetic final static field $VALUES: Direction[]
        public final enum static field EAST: Direction
        public final enum static field NORTH: Direction
        public final enum static field SOUTH: Direction
        public final enum static field WEST: Direction
        private synthetic final static method $values(): Direction[]
        static method <clinit>(): 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)
  6. subprojects/core-api/src/test/groovy/org/gradle/api/internal/provider/views/MapPropertyMapViewTest.groovy

            when:
            mapProperty.putAll(["forth": "value4", "fifth": "value5"])
    
            then:
            map == ["first": "value1", "second": "value2", "third": "value3", "forth": "value4", "fifth": "value5"]
            map.containsKey("first")
            map.containsKey("second")
            map.containsKey("third")
            map.containsKey("forth")
            map.containsKey("forth")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. subprojects/core-api/src/test/groovy/org/gradle/api/internal/provider/views/AbstractHasMultiValuesPropertyCollectionViewTest.groovy

            when:
            collection.removeAll { it in ["first", "third", "forth"] }
    
            then:
            property.get() == cast(["second", "fifth"])
    
            when:
            collection.addAll(["first", "third", "forth"])
            collection.retainAll { it in ["first", "third", "forth"] }
    
            then:
            property.get() == cast(["first", "third", "forth"])
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/test/groovy/org/gradle/api/internal/provider/views/ListPropertyListViewTest.groovy

            list.size() == 5
    
            when:
            list.removeAll(["first", "third", "forth"])
    
            then:
            property.get() == ["second", "fifth"]
            list.size() == 2
    
            when:
            list.addAll(0, ["first", "third", "forth"])
    
            then:
            property.get() == ["first", "third", "forth", "second", "fifth"]
            list.size() == 5
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache-packaging/src/test/groovy/org/gradle/caching/internal/packaging/impl/RelativePathParserTest.groovy

            !parser.root
            !outsideOfRoot
    
            when:
            outsideOfRoot = parser.nextPath("tree-some/second/third/forth/", true, exitHandler)
            then:
            0 * exitHandler.run()
            then:
            parser.name == "forth"
            parser.relativePath == "second/third/forth"
            !parser.root
            !outsideOfRoot
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass_test_helper.cc

            ->mutable_session_metadata()
            ->set_name(options.session_name);
      }
    
      // Call AddDevices to register the XLA devices.
      //
      // It may be worth refactoring out XlaOpRegistry::RegisterCompilationDevice to
      // make this more direct, but probably not worth it solely for this test.
      std::vector<std::unique_ptr<Device>> devices;
      TF_RETURN_IF_ERROR(DeviceFactory::AddDevices(session_options, "", &devices));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 09 19:51:48 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top