Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for Mongo (0.11 sec)

  1. pkg/config/protocol/instance_test.go

    		{"grpc", protocol.GRPC},
    		{"grpc-web", protocol.GRPCWeb},
    		{"gRPC-Web", protocol.GRPCWeb},
    		{"grpc-Web", protocol.GRPCWeb},
    		{"udp", protocol.UDP},
    		{"Mongo", protocol.Mongo},
    		{"mongo", protocol.Mongo},
    		{"MONGO", protocol.Mongo},
    		{"Redis", protocol.Redis},
    		{"redis", protocol.Redis},
    		{"REDIS", protocol.Redis},
    		{"Mysql", protocol.MySQL},
    		{"mysql", protocol.MySQL},
    		{"MYSQL", protocol.MySQL},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 11 16:27:16 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. pkg/config/protocol/instance.go

    	TLS Instance = "TLS"
    	// UDP declares that the port uses UDP.
    	// Note that UDP protocol is not currently supported by the proxy.
    	UDP Instance = "UDP"
    	// Mongo declares that the port carries MongoDB traffic.
    	Mongo Instance = "Mongo"
    	// Redis declares that the port carries Redis traffic.
    	Redis Instance = "Redis"
    	// MySQL declares that the port carries MySQL traffic.
    	MySQL Instance = "MySQL"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 01 02:46:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features-external/tests/requiringFeaturesFromExternalRepo.sample.conf

        execution-subdirectory: project
        executable: gradle
        args: "dependencyInsight --configuration compileClasspath --dependency mongo"
        expected-output-file: compileClasspath.out
    },{
        execution-subdirectory: project
        executable: gradle
        args: "dependencyInsight --configuration runtimeClasspath --dependency mongo"
        expected-output-file: runtimeClasspath.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 396 bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/networkfilter.go

    	// TODO: add a watcher for /var/lib/istio/mongo/certs
    	// if certs are found use, TLS or mTLS clusters for talking to MongoDB.
    	// User is responsible for mounting those certs in the pod.
    	mongoProxy := &mongo.MongoProxy{
    		StatPrefix: statPrefix, // mongo stats are prefixed with mongo.<statPrefix> by Envoy
    		// TODO enable faults in mongo
    	}
    
    	out := &listener.Filter{
    		Name:       wellknown.MongoProxy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/envoy/logging/testdata/logging.txt

      health_checker: warning
      http: warning
      http2: warning
      hystrix: warning
      init: warning
      io: warning
      jwt: warning
      kafka: warning
      lua: warning
      main: warning
      misc: warning
      mongo: warning
      quic: warning
      pool: warning
      rbac: warning
      redis: warning
      router: warning
      runtime: warning
      stats: warning
      secret: warning
      tap: warning
      testing: warning
      thrift: warning
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 02 13:47:26 UTC 2019
    - 715 bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/mock/discovery.go

    				Protocol: protocol.HTTP,
    			}, {
    				Name:     "custom",
    				Port:     90, // target port 1090
    				Protocol: protocol.TCP,
    			}, {
    				Name:     "mongo",
    				Port:     100, // target port 1100
    				Protocol: protocol.Mongo,
    			}, {
    				Name:     "redis",
    				Port:     110, // target port 1110
    				Protocol: protocol.Redis,
    			}, {
    				Name:     "mysql",
    				Port:     120, // target port 1120
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 18:40:05 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/java-feature-variant/incompatible-variants/kotlin/producer/build.gradle.kts

        }
        registerFeature("mongoSupport") {
            usingSourceSet(sourceSets["mongoSupport"])
            capability("org.gradle.demo", "producer-db-support", "1.0")
            capability("org.gradle.demo", "producer-mongo-support", "1.0")
        }
    }
    
    dependencies {
        "mysqlSupportImplementation"("mysql:mysql-connector-java:8.0.14")
        "postgresSupportImplementation"("org.postgresql:postgresql:42.2.5")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 05:16:22 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. samples/bookinfo/src/mongodb/Dockerfile

    #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    #   See the License for the specific language governing permissions and
    #   limitations under the License.
    
    FROM mongo:7.0.5
    WORKDIR /app/data/
    COPY ratings_data.json /app/data/
    COPY script.sh /docker-entrypoint-initdb.d/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 756 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java-feature-variant/incompatible-variants/groovy/producer/build.gradle

        }
        registerFeature('mongoSupport') {
            usingSourceSet(sourceSets.mongoSupport)
            capability('org.gradle.demo', 'producer-db-support', '1.0')
            capability('org.gradle.demo', 'producer-mongo-support', '1.0')
        }
    }
    
    dependencies {
        mysqlSupportImplementation 'mysql:mysql-connector-java:8.0.14'
        postgresSupportImplementation 'org.postgresql:postgresql:42.2.5'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 05:16:22 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/networking.go

    	switch p {
    	case protocol.HTTP, protocol.HTTP2, protocol.HTTP_PROXY, protocol.GRPC, protocol.GRPCWeb:
    		return ListenerProtocolHTTP
    	case protocol.TCP, protocol.HTTPS, protocol.TLS,
    		protocol.Mongo, protocol.Redis, protocol.MySQL:
    		return ListenerProtocolTCP
    	case protocol.UDP:
    		return ListenerProtocolUnknown
    	case protocol.Unsupported:
    		return ListenerProtocolAuto
    	default:
    		// Should not reach here.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 18 09:42:04 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top