Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 167 for doob (0.3 sec)

  1. docs/vendor/fontawesome-free-5.15.2-web/svgs/solid/door-closed.svg

    door-closed.svg...
    SVG Image
    - Registered: 2023-03-14 09:01
    - Last Modified: 2021-01-27 23:30
    - 530 bytes
    - Viewed (0)
  2. docs/vendor/fontawesome-free-5.15.2-web/svgs/solid/door-open.svg

    door-open.svg...
    SVG Image
    - Registered: 2023-03-14 09:01
    - Last Modified: 2021-01-27 23:30
    - 598 bytes
    - Viewed (0)
  3. examples/test-all-keymetrics-features/test-threshold.js

    
    var users = 55
    var battery = 80
    
    var door = 0
    var door_2 = 0
    
    axm.action('tozero', function(reply) {
      door = 0
      reply({ok:true});
    });
    
    
    axm.action('toone', function(reply) {
      door = 1
      reply({ok:true});
    });
    
    axm.metric({
      name : 'door',
      value : function() {
        return door
      }
    });
    
    
    axm.action('tofalse', function(reply) {
      door_2 = false
      reply({ok:true});
    });
    
    
    JavaScript
    - Registered: 2023-03-15 09:50
    - Last Modified: 2020-06-29 09:20
    - 1.2K bytes
    - Viewed (0)
  4. src/data/guides/design-patterns-for-humans.md

    ----------------
    
    Real world example
    > Extending our door example from Simple Factory. Based on your needs you might get a wooden door from a wooden door shop, iron door from an iron shop or a PVC door from the relevant shop. Plus you might need a guy with different kind of specialities to fit the door, for example a carpenter for wooden door, welder for iron door etc. As you can see there is a dependency between the doors now, wooden door needs carpenter, iron door needs a welder etc.
    
    Plain Text
    - Registered: 2023-03-17 02:38
    - Last Modified: 2023-02-21 12:25
    - 64K bytes
    - Viewed (0)
  5. src/guides/design-patterns-for-humans.md

    ----------------
    
    Real world example
    > Extending our door example from Simple Factory. Based on your needs you might get a wooden door from a wooden door shop, iron door from an iron shop or a PVC door from the relevant shop. Plus you might need a guy with different kind of specialities to fit the door, for example a carpenter for wooden door, welder for iron door etc. As you can see there is a dependency between the doors now, wooden door needs carpenter, iron door needs a welder etc.
    
    Plain Text
    - Registered: 2023-02-17 02:38
    - Last Modified: 2023-01-02 15:00
    - 64K bytes
    - Viewed (0)
  6. README.md

    ----------------
    
    Real world example
    > Extending our door example from Simple Factory. Based on your needs you might get a wooden door from a wooden door shop, iron door from an iron shop or a PVC door from the relevant shop. Plus you might need a guy with different kind of specialities to fit the door, for example a carpenter for wooden door, welder for iron door etc. As you can see there is a dependency between the doors now, wooden door needs carpenter, iron door needs a welder etc.
    
    Plain Text
    - Registered: 2023-03-19 02:25
    - Last Modified: 2022-08-27 10:20
    - 64K bytes
    - Viewed (0)
  7. docs/_style/prism-master/tests/languages/inform7/string_feature.test

    		["substitution",...
    Plain Text
    - Registered: 2023-03-16 20:08
    - Last Modified: 2018-12-19 06:09
    - 1.4K bytes
    - Viewed (0)
  8. lang/nl.json

      "Modal Window": "Extra venster",
      "This is a modal window": "Dit is een extra venster",
      "This modal can be closed by pressing the Escape key or activating the close button.": "Dit venster kan worden gesloten door op de Escape-toets te drukken of door de sluiten-knop te activeren.",
      ", opens captions settings dialog": ", opent instellingen-venster voor bijschriften",
      ", opens subtitles settings dialog": ", opent instellingen-venster voor ondertitelingen",
    Json
    - Registered: 2023-03-17 16:13
    - Last Modified: 2018-05-11 18:34
    - 4K bytes
    - Viewed (0)
  9. packages/@ember/-internals/runtime/tests/array/uniqBy-test.js

          { id: 1, value: 'boom' },
          { id: 2, value: 'boom' },
          { id: 1, value: 'doom' },
        ]);
    
        let keyFunction = (val) => {
          this.assert.equal(arguments.length, 1);
          return val.value;
        };
    
        this.assert.deepEqual(numbers.uniqBy(keyFunction), [
          { id: 1, value: 'boom' },
          { id: 1, value: 'doom' },
        ]);
      }
    }
    
    JavaScript
    - Registered: 2023-03-16 07:14
    - Last Modified: 2020-09-30 12:56
    - 944 bytes
    - Viewed (0)
  10. resource-acquisition-is-initialization/src/main/java/com/iluwatar/resource/acquisition/is/initialization/SlidingDoor.java

    /**
     * SlidingDoor resource.
     */
    @Slf4j
    public class SlidingDoor implements AutoCloseable {
    
      public SlidingDoor() {
        LOGGER.info("Sliding door opens.");
      }
    
      @Override
      public void close() {
        LOGGER.info("Sliding door closes.");
      }
    Java
    - Registered: 2023-03-17 18:54
    - Last Modified: 2022-09-14 17:52
    - 1.6K bytes
    - Viewed (0)
Back to top