Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 159 for responses (0.07 sec)

  1. pkg/adsc/delta.go

    				time.AfterFunc(c.cfg.BackoffPolicy.NextBackOff(), c.reconnect)
    			} else {
    				c.Close()
    			}
    			return
    		}
    		deltaLog.Infof("Received response: %s", msg.TypeUrl)
    		if err := c.handleDeltaResponse(msg); err != nil {
    			deltaLog.Infof("Handle response %s failed: %v", msg.TypeUrl, err)
    			c.Close()
    			return
    		}
    		c.mutex.Lock()
    		c.lastReceived[msg.TypeUrl] = msg
    		c.mutex.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. pilot/pkg/model/test/mockopenidserver.go

    	serverMutex = &sync.Mutex{}
    )
    
    const (
    	// JwtPubKey1 is the response to 1st call for JWT public key returned by mock server.
    	JwtPubKey1 = `{ "keys": [ { "kid": "fakeKey1_1", "alg": "RS256", "kty": "RSA", "n": "abc", "e": "def" },
    			{ "kid": "fakeKey1_2", "alg": "RS256", "kty": "RSA", "n": "123", "e": "456" } ] }`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. pkg/dns/client/monitoring.go

    		"dns_upstream_failures_total",
    		"Total number of DNS failures.",
    	)
    
    	requestDuration = monitoring.NewDistribution(
    		"dns_upstream_request_duration_seconds",
    		"Total time in seconds Istio takes to get DNS response from upstream.",
    		[]float64{.001, .005, 0.01, 0.1, 1, 5},
    	)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 07 15:55:53 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. pkg/xds/server.go

    	// NonceSent is the nonce sent in the last sent response. If it is equal with NonceAcked, the
    	// last message has been processed. If empty: we never sent a message of this type.
    	NonceSent string
    
    	// NonceAcked is the last acked message.
    	NonceAcked string
    
    	// AlwaysRespond, if true, will ensure that even when a request would otherwise be treated as an
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. pilot/pkg/xds/rds_test.go

    		},
    		{
    			"gateway_new",
    			gatewayID(gatewayIP),
    			[]string{"http.80", "https.443.https.my-gateway.testns"},
    		},
    		{
    			// Even if we get a bad route, we should still send Envoy an empty response, rather than
    			// ignore it. If we ignore the route, the listeners can get stuck waiting forever.
    			"sidecar_badroute",
    			sidecarID(app3Ip, "app3"),
    			[]string{"ht&p"},
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. istioctl/pkg/precheck/precheck.go

    				Version:   version,
    				Resource:  resource,
    			},
    		},
    	}
    
    	response, err := c.Kube().AuthorizationV1().SelfSubjectAccessReviews().Create(context.Background(), s, metav1.CreateOptions{})
    	if err != nil {
    		return err
    	}
    
    	if !response.Status.Allowed {
    		if len(response.Status.Reason) > 0 {
    			return errors.New(response.Status.Reason)
    		}
    		return errors.New("permission denied")
    	}
    	return nil
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. pilot/pkg/model/endpointshards.go

    		pushType = FullPush
    	}
    
    	// Clear the cache here. While it would likely be cleared later when we trigger a push, a race
    	// condition is introduced where an XDS response may be generated before the update, but not
    	// completed until after a response after the update. Essentially, we transition from v0 -> v1 ->
    	// v0 -> invalidate -> v1. Reverting a change we pushed violates our contract of monotonically
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. pkg/spiffe/spiffe.go

    		retryBackoffTime := firstRetryBackOffTime
    		startTime := time.Now()
    		var resp *http.Response
    		for {
    			resp, err = httpClient.Get(endpoint)
    			var errMsg string
    			if err != nil {
    				errMsg = fmt.Sprintf("Calling %s failed with error: %v", endpoint, err)
    			} else if resp == nil {
    				errMsg = fmt.Sprintf("Calling %s failed with nil response", endpoint)
    			} else if resp.StatusCode != http.StatusOK {
    				b := make([]byte, 1024)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. operator/cmd/mesh/operator-remove.go

    	"istio.io/istio/pkg/kube"
    )
    
    type operatorRemoveArgs struct {
    	// skipConfirmation determines whether the user is prompted for confirmation.
    	// If set to true, the user is not prompted and a Yes response is assumed in all cases.
    	skipConfirmation bool
    	// force proceeds even if there are validation errors
    	force bool
    	// operatorNamespace is the namespace the operator controller is installed into.
    	operatorNamespace string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/kube/sidecar.go

    			s.podNamespace, s.podName, err, command, stdout+stderr)
    	}
    
    	if err := protomarshal.UnmarshalAllowUnknown([]byte(stdout), out); err != nil {
    		return fmt.Errorf("failed parsing Envoy admin response from '/%s': %v\nResponse JSON: %s", path, err, stdout)
    	}
    	return nil
    }
    
    func (s *sidecar) Logs() (string, error) {
    	return s.cluster.PodLogs(context.TODO(), s.podName, s.podNamespace, proxyContainerName, false)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 03:49:49 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top