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
1
vote
1 answer

(r-1)'s complement or 9's complement

I have been trying to figure out whether two numbers wud get the same 9's complement value.. I found a general equation for (r-1)'s complement from a text as : (r^n) - (r^-m) - N where r = radix or Base; n= no of digits in the integer part; m= no.…
Abraham Jaison
  • 469
  • 1
  • 6
  • 14
1
vote
3 answers

How do I change the color of this bar when switching apps?

With the addition of Lollipop, it appears you can now change the color of this window when changing apps. I don't know what it is called and therefore can't find any info on it but if you look at the image you can see that the Keep app is now…
CraygL
  • 67
  • 6
1
vote
2 answers

can't switch between activities in android

i am new to android development. i am to switch between activities on my app, i have done the code but when i run the app it doesn't work. when i click on the button which is supposed to take me to the second activity nothing happens. this is the…
balcuh
  • 13
  • 6
1
vote
2 answers

how to show buffer content in real time in other window when focus is in buffer list

I have 2 windows, one is the buffer list, how do I show the buffer in the buffer list in the other windows when I use n and p to naviage in the buffer list? Thanks a lot.
godblessfq
  • 218
  • 1
  • 10
1
vote
3 answers

Check version of opensips

I'm trying to check the version of opensips on a soft switch, and the below are not yielding the results I need. How do I check what version of opensips is running? opensips -v opensips -version
ObiWanShanobi
  • 442
  • 1
  • 5
  • 10
1
vote
2 answers

PHP Switching between two variables equally without using database

i need to switch between two variables so i am able to serve two variables equally for example i have $ad1 $ad2 i want to serve both ads equally using a light method with no database using random method won't serve both equally can you please…
EzzDev
  • 9,900
  • 12
  • 35
  • 35
1
vote
1 answer

How to switch to a existing, non-Navigation Controller-View programmable?

I am trying to switch from a View (a totally normal view) to another view (also normal) programmable. Here is my already existing Code: - (IBAction)login:(id)sender { if([_username.text isEqualToString:name] && [_password.text isEqualToString:pw])…
Kitzng
  • 105
  • 1
  • 9
1
vote
1 answer

Jquery UI sortable portlets: switching the places of two portlets

I am pretty new to the JQuery UI and not very familiar with how to use options, methods, and events. I am using the Jquery UI Sortable portlets (example found here) and what I'm doing is pretty similar to the example, I have 3 columns but I only…
John
  • 7,114
  • 2
  • 37
  • 57
1
vote
1 answer

Scroll view loads a different part of the content inconsistently? (iOS)

This seems kind of odd to me, but I'm new to iOS so something obvious might be going on that I am unaware of (I asterisk the part that is the inconsistency): I have two tabs: Tab1 and Tab2 Tab1 is a basic view. Tab2 is a Master-Detail type design…
giant91
  • 1,153
  • 2
  • 9
  • 18
1
vote
2 answers

iPhone app switching

Is it possible to run an iPhone app from your own app? For example when you press a button in your app, the iPhone switches to another app. If so, how would you do this?
user189564
1
vote
1 answer

Jetty - using symbolic links for different app versions

I'm trying to configure jetty to switch between different apps folders. For example: I have 2 app folders (containing WEB-INF, classes, war etc) App1 and App2. I want to create a symbolic link in linux "myapp" that points to App1 or App2 and to…
Andrei F
  • 4,205
  • 9
  • 35
  • 66
1
vote
1 answer

Android : Switching and update layout

I have the application that contains the game hangman. I have created a separate activity on their responsibility for drawing. Here's the code: public class DrawWisielec extends View { Paint paint; int choose; public DrawWisielec(Context…
1
vote
1 answer

Create plug and play modules in Rails

I want to conditionally switch on/off certain functionality in my Rails app, for example in my current app I have the following functionality "product show case", "product search", "ecommerce", "user management" etc If I implement the same app for…
Anand Shah
  • 14,575
  • 16
  • 72
  • 110
1
vote
3 answers

How does fast user switching affect a windows service?

How does fast user switching affect a windows service? Are the services suspended or do they keep running in the background when a different user logs in?
Jason
  • 13
  • 2
1
vote
1 answer

Switching from UIViewController to UITabBarController

Im trying to show a UIViewController for 2 seconds before the UITabBarController, i know i have to make it fromm my appdelegate. Ive tried by first assigning my self.window.rootviewcontroller to my UIViewController and with a scheduled timer after 2…