Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for SO (0.03 sec)

  1. pilot/pkg/model/gateway.go

    						}
    						serversByRouteName[routeName] = append(serversByRouteName[routeName], s)
    					} else {
    						// We have duplicate port. Its not in plaintext servers. So, this has to be a TLS server.
    						// Check if this is also a HTTP server and if so, ensure uniqueness of port name.
    						if gateway.IsHTTPServer(s) {
    							if routeName == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. pilot/pkg/model/endpointshards.go

    		// Please note that address is not a unique key. So this may not accurately
    		// identify based on health status and push too many times - which is ok since its an optimization.
    		omap := make(map[string]*IstioEndpoint, len(oldIstioEndpoints))
    		nmap := make(map[string]*IstioEndpoint, len(newIstioEndpoints))
    		// Add new endpoints only if they are ever ready once to shards
    		// so that full push does not send them from shards.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_waypoint.go

    				out = append(out, r)
    			}
    			// This is a catchall route, so we can stop processing the rest of the routes.
    			break
    		}
    		for _, match := range http.Match {
    			if r := lb.translateRoute(virtualService, http, match, listenPort); r != nil {
    				out = append(out, r)
    				// This is a catch all path. Routes are matched in order, so we will never go beyond this match
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. pilot/pkg/xds/delta.go

    		// How scaling works in knative is the first request is the "loading" request. During
    		// loading request, concurrency=1. Once that request is done, concurrency is enabled.
    		// However, the XDS stream is long lived, so the first request would block all others. As a
    		// result, we should exit the first request immediately; clients will retry.
    		firstRequest.Store(false)
    		return status.Error(codes.Unavailable, "server warmup not complete; try again")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  5. cmd/object-multipart-handlers.go

    		metadata[ReservedMetadataPrefixLower+ReplicationStatus] = dsc.PendingStatus()
    	}
    
    	// We need to preserve the encryption headers set in EncryptRequest,
    	// so we do not want to override them, copy them instead.
    	for k, v := range encMetadata {
    		metadata[k] = v
    	}
    
    	// Ensure that metadata does not contain sensitive information
    	crypto.RemoveSensitiveEntries(metadata)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/stream_executor/stream_executor.cc

              std::move(timer_fns)));
      TF_CHECK_OK(
          stream_executor::PlatformManager::RegisterPlatform(std::move(cplatform)));
      // TODO(annarev): Return `use_bfc_allocator` value in some way so that it is
      // available in `PluggableDeviceProcessState` once the latter is checked in.
      return absl::OkStatus();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/analyzers_test.go

    	requestedInputsByAnalyzer := make(map[string]map[config.GroupVersionKind]struct{})
    
    	// For each test case, verify we get the expected messages as output
    	for _, tc := range testGrid {
    		tc := tc // Capture range variable so subtests work correctly
    		t.Run(tc.name, func(t *testing.T) {
    			g := NewWithT(t)
    
    			// Set up a hook to record which collections are accessed by each analyzer
    			analyzerName := tc.analyzer.Metadata().Name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top