Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for dispatchTo (0.17 sec)

  1. pkg/proxy/nftables/proxier.go

    	filterOutputPostDNATChain = "filter-output-post-dnat"
    	natPreroutingChain        = "nat-prerouting"
    	natOutputChain            = "nat-output"
    	natPostroutingChain       = "nat-postrouting"
    
    	// service dispatch
    	servicesChain       = "services"
    	serviceIPsMap       = "service-ips"
    	serviceNodePortsMap = "service-nodeports"
    
    	// set of IPs that accept NodePort traffic
    	nodePortIPsSet = "nodeport-ips"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. gradle/verification-metadata.xml

                <pgp value="F254B35617DC255D9344BCFA873A8E86B4372146"/>
             </artifact>
          </component>
          <component group="org.codehaus.plexus" name="plexus-sec-dispatcher" version="2.0">
             <artifact name="plexus-sec-dispatcher-2.0.jar">
                <pgp value="F3D15B8FF9902805DE4BE6B18DC6F3D0ABDBD017"/>
             </artifact>
          </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/EventListenerTest.kt

      @BeforeEach
      fun setUp(server: MockWebServer) {
        this.server = server
        platform.assumeNotOpenJSSE()
        listener.forbidLock(get(client.connectionPool))
        listener.forbidLock(client.dispatcher)
      }
    
      @AfterEach
      fun tearDown() {
        if (socksProxy != null) {
          socksProxy!!.shutdown()
        }
        if (cache != null) {
          cache!!.delete()
        }
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  4. configure.py

        # Windows.
        environ_cp['TF_DOWNLOAD_CLANG'] = '0'
        environ_cp['TF_NEED_MPI'] = '0'
    
      if is_macos():
        environ_cp['TF_NEED_TENSORRT'] = '0'
    
      if is_ppc64le():
        # Enable MMA Dynamic Dispatch support if 'gcc' and if linker >= 2.35
        gcc_env = get_gcc_compiler(environ_cp)
        if gcc_env is not None:
    
          # Use gold linker if 'gcc' and if 'ppc64le'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  5. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		// Each request is sent from a separate goroutine, with a client-side timeout of 1m, on
    		// the other hand, the server enforces a timeout of 5s (via the timeout filter).
    		// The first request should get dispatched immediately; execution (a) starts with closing
    		// the channel that triggers the second client goroutine to send its request and then (b)
    		// waits for both client goroutines to have gotten a response (expected to be timeouts).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  6. pkg/proxy/winkernel/proxier.go

    		healthzBindAddress, config)
    	if err != nil {
    		return nil, fmt.Errorf("unable to create ipv6 proxier: %v, hostname: %s, nodeIP:%v", err, hostname, nodeIPs[v1.IPv6Protocol])
    	}
    
    	// Return a meta-proxier that dispatch calls between the two
    	// single-stack proxier instances
    	return metaproxier.NewMetaProxier(ipv4Proxier, ipv6Proxier), nil
    }
    
    // CleanupLeftovers removes all hns rules created by the Proxier
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  7. src/go/types/expr.go

    elements that have no explicit type specification in the source
    (e.g.: []T{{...}, {...}}, the hint is the type T in this case).
    
    All expressions are checked via rawExpr, which dispatches according
    to expression kind. Upon returning, rawExpr is recording the types and
    constant values for all expressions that have an untyped type (those types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/expr.go

    elements that have no explicit type specification in the source
    (e.g.: []T{{...}, {...}}, the hint is the type T in this case).
    
    All expressions are checked via rawExpr, which dispatches according
    to expression kind. Upon returning, rawExpr is recording the types and
    constant values for all expressions that have an untyped type (those types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/proxier.go

    	if err != nil {
    		return nil, fmt.Errorf("unable to create ipv6 proxier: %v", err)
    	}
    	if initOnly {
    		return nil, nil
    	}
    
    	// Return a meta-proxier that dispatch calls between the two
    	// single-stack proxier instances
    	return metaproxier.NewMetaProxier(ipv4Proxier, ipv6Proxier), nil
    }
    
    // Proxier is an ipvs based proxy for connections between a localhost:lport
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers.go

    				status, err = p.podCache.GetNewerThan(update.Options.Pod.UID, lastSyncTime)
    
    				if err != nil {
    					// This is the legacy event thrown by manage pod loop all other events are now dispatched
    					// from syncPodFn
    					p.recorder.Eventf(update.Options.Pod, v1.EventTypeWarning, events.FailedSync, "error determining status: %v", err)
    					return err
    				}
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top