Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for responses (0.41 sec)

  1. security/pkg/server/ca/server.go

    			serverCaLog.Debugf("Append cert chain to response, %s", string(certChainBytes))
    		}
    	}
    	if len(rootCertBytes) != 0 {
    		respCertChain = append(respCertChain, string(rootCertBytes))
    	}
    	response := &pb.IstioCertificateResponse{
    		CertChain: respCertChain,
    	}
    	s.monitoring.Success.Increment()
    	serverCaLog.Debugf("CSR successfully signed, sans %v.", caller.Identities)
    	return response, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. pilot/pkg/xds/xdsgen.go

    	}
    	return g
    }
    
    // Push an XDS resource for the given connection. Configuration will be generated
    // based on the passed in generator. Based on the updates field, generators may
    // choose to send partial or even no response if there are no changes.
    func (s *DiscoveryServer) pushXds(con *Connection, w *model.WatchedResource, req *model.PushRequest) error {
    	if w == nil {
    		return nil
    	}
    	gen := s.findGenerator(w.TypeUrl, con)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. pkg/xds/server_test.go

    				ResourceNames: []string{},
    			},
    			response: false,
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if response, _ := ShouldRespond(tt.proxy, "test", tt.request); response != tt.response {
    				t.Fatalf("Unexpected value for response, expected %v, got %v", tt.response, response)
    			}
    			if tt.name != "reconnect" && tt.response {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/crd/conversion.go

    	}
    
    	return varr, others, nil
    }
    
    // ParseInputs reads multiple documents from `kubectl` output and checks with
    // the schema. It also returns the list of unrecognized kinds as the second
    // response.
    //
    // NOTE: This function only decodes a subset of the complete k8s
    // ObjectMeta as identified by the fields in model.Meta. This
    // would typically only be a problem if a user dumps an configuration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. pkg/test/echo/server/forwarder/http.go

    	// Process the response.
    	err = processHTTPResponse(requestID, httpResp, &outBuffer)
    
    	// Extract the output string.
    	return outBuffer.String(), err
    }
    
    func processHTTPResponse(requestID int, httpResp *http.Response, outBuffer *bytes.Buffer) error {
    	// Make sure we close the body before exiting.
    	defer func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top