Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for sec_model (0.2 sec)

  1. pilot/pkg/networking/core/cluster_tls.go

    			Sni:              tls.Sni,
    		}
    
    		tlsContext.CommonTlsContext.TlsCertificateSdsSecretConfigs = append(tlsContext.CommonTlsContext.TlsCertificateSdsSecretConfigs,
    			sec_model.ConstructSdsSecretConfig(sec_model.SDSDefaultResourceName))
    
    		tlsContext.CommonTlsContext.ValidationContextType = &tlsv3.CommonTlsContext_CombinedValidationContext{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/webhook.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package bootstrap
    
    import (
    	"crypto/tls"
    	"log"
    	"net/http"
    	"strings"
    
    	sec_model "istio.io/istio/pilot/pkg/security/model"
    	istiolog "istio.io/istio/pkg/log"
    )
    
    type httpServerErrorLogWriter struct{}
    
    // Webhook http.Server.ErrorLog handler specifically to filter
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. pilot/pkg/grpc/tls.go

    package grpc
    
    import (
    	"crypto/tls"
    	"crypto/x509"
    	"fmt"
    	"net"
    	"os"
    	"strings"
    
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/credentials"
    
    	"istio.io/istio/pkg/log"
    	sec_model "istio.io/istio/pkg/model"
    	"istio.io/istio/security/pkg/pki/util"
    )
    
    // TLSOptions include TLS options that a grpc client uses to connect with server.
    type TLSOptions struct {
    	RootCert      string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_waypoint.go

    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/util"
    	sec_model "istio.io/istio/pilot/pkg/security/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pilot/pkg/xds/endpoints"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/config/host"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/server.go

    	istiogrpc "istio.io/istio/pilot/pkg/grpc"
    	"istio.io/istio/pilot/pkg/keycertbundle"
    	"istio.io/istio/pilot/pkg/leaderelection"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/core"
    	sec_model "istio.io/istio/pilot/pkg/security/model"
    	"istio.io/istio/pilot/pkg/server"
    	"istio.io/istio/pilot/pkg/serviceregistry/aggregate"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            model.setArtifactId(EMPTY_PROJECT_ARTIFACT_ID);
            model.setVersion(EMPTY_PROJECT_VERSION);
    
            setModel(model);
        }
    
        public MavenProject(org.apache.maven.api.model.Model model) {
            this(new Model(model));
        }
    
        public MavenProject(Model model) {
            setModel(model);
        }
    
        public MavenProject(MavenProject project) {
            deepCopy(project);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                        result = new DefaultProjectBuildingResult(
                                e.getModelId(), interimResult.pomFile, convert(e.getProblems()));
                    } else {
                        project.setModel(new org.apache.maven.model.Model(interimResult.result.getEffectiveModel()));
                        result = new DefaultProjectBuildingResult(project, convert(e.getProblems()), null);
                    }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
Back to top