Questions tagged [switching]

A switch is a telecommunication device that receives a message from any device connected to it and then transmits the message only to the device for which the message was meant. This makes the switch a more intelligent device than a hub (which receives a message and then transmits it to all the other devices on its network). The network switch plays an integral part in most modern Ethernet local area networks (LANs)

A switch is a telecommunication device that receives a message from any device connected to it and then transmits the message only to the device for which the message was meant. This makes the switch a more intelligent device than a hub (which receives a message and then transmits it to all the other devices on its network). The network switch plays an integral part in most modern Ethernet local area networks (LANs). Mid-to-large sized LANs contain a number of linked managed switches. Small office/home office (SOHO) applications typically use a single switch, or an all-purpose converged device such as a residential gateway to access small office/home broadband services such as DSL or cable Internet. In most of these cases, the end-user device contains a router and components that interface to the particular physical broadband technology. User devices may also include a telephone interface for VoIP. An Ethernet switch operates at the data link layer of the OSI model to create a separate collision domain for each switch port. With 4 computers (e.g., A, B, C, and D) on 4 switch ports, any pair (e.g. A and B) can transfer data back and forth while the other pair (e.g. C and D) also do so simultaneously, and the two conversations will not interfere with one another. In full duplex mode, these pairs can also overlap (e.g. A transmits to B, simultaneously B to C, and so on). In the case of a repeater hub, they would all share the bandwidth and run in half duplex, resulting in collisions, which would then necessitate retransmissions.

http://en.wikipedia.org/wiki/Network_switch

329 questions
2
votes
2 answers

switching between uiviewcontrollers without a UI navigator control

I want to switch between 2 UIViewController classes programmatically without any extra UI control like a UITabBarController that adds a UI to the application. My main loads the first view controller with addSubView. vc1 = new viewc1(); …
angel of code
  • 686
  • 8
  • 25
2
votes
1 answer

JavaFX - Buttons switch to the wrong scenes

In this program, I only use one scene, but change its root nodes. Initially, the program displays the "Welcome" screen (welcomeRoot). But when I press the "Log in" button in there, the screen changes to the "Choose game mode" screen, even though in…
jparkinski
  • 23
  • 3
2
votes
3 answers

How To Switch Between Buffers in vim by number

I'm using vim and i want to switch between buffers by number. (e.g when i press Ctrl+2 vim should go to second buffer) What should i write in .vimrc?
2
votes
6 answers

time-sensitive css stylsheet switching using javascript

I'm trying to switch my css stylesheets depending on the time. One during the day, and one during the night. I'm a newbie when it comes to java, but i've been reading alot on javascript and have generated some code that should let this work. I tried…
Josh Tha CreativeOne
  • 279
  • 2
  • 11
  • 22
2
votes
1 answer

Is mode switch occur switching from user thread to kernel thread?

I'm confused of user/kernel thread and mode/context switch (Platform: Linux) I have two linked questions. (1) Is the below sentence right? If I make a system call, then mode switch (user mode to kernel mode) will occur and eventually switching…
2
votes
2 answers

How to switch beteen Multiple Activities in Android

I am Having 8 Screenns.I have prepared 8 Activities for that. In First Activity I have given this code To Switch from Ist Activity to IInd On Image Button gives On Clickpublic void onClick(View v) { Intent myIntent = new Intent(v.getContext(),…
kites
  • 21
  • 1
  • 2
  • 5
2
votes
2 answers

Python 3, telnet automation

Im doing a project which is to collect certain information from a number of switches. Keep in mind im new to python and programming. What i want to do, is to: have a .txt file with the names of my switches. Then loop through that list, and run a few…
Mikael Hansen
  • 41
  • 1
  • 1
  • 3
2
votes
1 answer

Context Switch TIme

Does context switch between process take equal time for all the Process ( Constant Time ) or the context switch time is dependent on various local factors which varies from process to process ( like process size,stack size etc..) ? EDIT : Assume…
Amol Sharma
  • 1,521
  • 7
  • 20
  • 40
1
vote
0 answers

Switching between two bluetooth headsets in windows 7

I am working on application that requires fast switching between two bluetooth headphones. That would be just a part of larger software/hardware kit meant for improving communication with hearing impaired people. When sound level is below certain…
Dr_Freeman
  • 261
  • 1
  • 5
  • 12
1
vote
2 answers

Mac OS X Fullsreen switch on Cmd-Tab

My game (Mac OS X 10.5 compatible) needs a feature to switch(minimize) from fullscreen mode on Cmd-Tab command and leave focus at this time, so user can use other applications while my game is minimized(browser for example). How to do this? Thank…
Aonir
  • 23
  • 5
1
vote
1 answer

Switching view by changing delegate rootViewContoller

I'm presently trying to switch view from a UIViewController to a SplitViewController. I'm currently doing this in my UIViewController: AppDelegate *delegate = (AppDelegate *)[[UIApplication sharedApplication] delegate]; [UIView…
Titouan de Bailleul
  • 12,920
  • 11
  • 66
  • 121
1
vote
1 answer

Launch an app from within browser within Windows Mango Browser

I'm trying to do what is simple in iOS, redirect from the browser to my app (I am authenticating via a website which then loads the url that switches back to my app via appreferencename:/) in Mango. Is there a way to switch to an app from a browser…
swickblade
  • 4,506
  • 5
  • 21
  • 24
1
vote
3 answers

Linq Where Clause Change based on Parameters

I have a linq statement that returns a list of records based on where clause This where clause checks for two parameter values. Out of which one parameter is optional. so i need a suggestions if i can switch my where clause based on the optional…
HaBo
  • 13,999
  • 36
  • 114
  • 206
1
vote
1 answer

How do I run multiple configuration commands in Dell EMC OS10 with Paramiko?

I am trying to run a series of commands to configure a vlan on a Dell EMC OS10 server using Paramiko. However I am running into a rather frustrating problem. I want to run the following # configure terminal (config)# interface vlan 3 (conf-if-vl-3)#…
1
vote
2 answers

Is there any way to show splashScreen when app is in the background or switching tabs. In ionic 6?

I use privacy-screen plugin to hide content when app is in the background, but it shows just gray background. I need to set splashScreen instead. Any suggestions? I tried splashScreen plugin, but it is not working for me.
Sndir_Ha
  • 11
  • 2
1 2
3
21 22