Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 136 for Mysql (0.07 sec)

  1. samples/external/github.yaml

        protocol: HTTPS
    ---
    # For TCP services the IP ranges SHOULD be specified to avoid problems
    # if multiple SEs use the same port number.
    # See https://istio.io/blog/2018/egress-tcp/#mesh-external-service-entry-for-an-external-mysql-instance
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: github-tcp
    spec:
      hosts:
      - dummy.github.com # not used
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 28 20:28:21 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  2. src/test/resources/plugin/repo2/index.html

                              </td>
                <td></td>
              </tr>
                      <tr>
                <td><a href="https://oss.sonatype.org/content/repositories/snapshots/org/codelibs/fess/fess-crawler-db-mysql/">fess-crawler-db-mysql/</a></td>
                <td>Fri Jan 13 13:53:56 UTC 2017</td>
                <td align="right">
                                  &nbsp;
                              </td>
                <td></td>
              </tr>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Aug 13 07:34:14 UTC 2019
    - 10.5K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/mock/discovery.go

    				Protocol: protocol.Mongo,
    			}, {
    				Name:     "redis",
    				Port:     110, // target port 1110
    				Protocol: protocol.Redis,
    			}, {
    				Name:     "mysql",
    				Port:     120, // target port 1120
    				Protocol: protocol.MySQL,
    			},
    		},
    	}
    }
    
    // MakeExternalHTTPService creates memory external service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 18:40:05 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. samples/bookinfo/src/mysql/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 mysql:8.3.0
    # MYSQL_ROOT_PASSWORD must be supplied as an env var
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 714 bytes
    - Viewed (0)
  5. releasenotes/notes/protocol-detection-timeout.yaml

        the proxy will sniff the first few bytes of traffic to determine the protocol used. For certain "server first" protocols, such
        as the protocol used by `MySQL`, there will be no initial bytes to sniff. To mitigate this issue in the past, Istio introduced
        a detection timeout. However, we found this caused frequent telemetry and traffic failures during slow connections, while increasing latency
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 21 00:53:45 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  6. 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.
    		return ListenerProtocolAuto
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 18 09:42:04 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/conversion_test.go

    		{8888, "redis", nil, corev1.ProtocolTCP, protocol.Redis},
    		{8888, "redis-test", nil, corev1.ProtocolTCP, protocol.Redis},
    		{8888, "mysql", nil, corev1.ProtocolTCP, protocol.MySQL},
    		{8888, "mysql-test", nil, corev1.ProtocolTCP, protocol.MySQL},
    		{8888, "tcp", &http, corev1.ProtocolTCP, protocol.HTTP},
    	}
    
    	// Create the list of cases for all of the names in both upper and lowercase.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. tests/tests_all.sh

    #!/bin/bash -e
    
    dialects=("sqlite" "mysql" "postgres" "sqlserver" "tidb")
    
    if [[ $(pwd) == *"gorm/tests"* ]]; then
      cd ..
    fi
    
    if [ -d tests ]
    then
      cd tests
      go get -u -t ./...
      go mod download
      go mod tidy
      cd ..
    fi
    
    # SqlServer for Mac M1
    if [[ -z $GITHUB_ACTION ]]; then
      if [ -d tests ]
      then
        cd tests
        if [[ $(uname -a) == *" arm64" ]]; then
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 08 08:29:09 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. src/database/sql/doc.txt

    Goals of the sql and sql/driver packages:
    
    * Provide a generic database API for a variety of SQL or SQL-like
      databases.  There currently exist Go libraries for SQLite, MySQL,
      and Postgres, but all with a very different feel, and often
      a non-Go-like feel.
    
    * Feel like Go.
    
    * Care mostly about the common cases. Common SQL should be portable.
      SQL edge cases or db-specific extensions can be detected and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 06:48:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/portgen.go

    			protocol.HTTPS:   httpsBase,
    			protocol.TLS:     httpsBase,
    			protocol.TCP:     tcpBase,
    			protocol.GRPCWeb: grpcBase,
    			protocol.GRPC:    grpcBase,
    			protocol.Mongo:   tcpBase,
    			protocol.MySQL:   tcpBase,
    			protocol.Redis:   tcpBase,
    			protocol.UDP:     tcpBase,
    		},
    		used: make(map[int]struct{}),
    	}
    }
    
    // SetUsed marks the given port as used, so that it will not be assigned by the
    // generator.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 04 00:24:04 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top