Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 851 for connectat (0.24 sec)

  1. docs/bigdata/README.md

    ![hdfs-configs](https://github.com/minio/minio/blob/master/docs/bigdata/images/image2.png?raw=true "hdfs advanced configs")
    
    Navigate to **Custom core-site** to configure MinIO parameters for `_s3a_` connector
    
    ![s3a-config](https://github.com/minio/minio/blob/master/docs/bigdata/images/image5.png?raw=true "custom core-site")
    
    ```
    sudo pip install yq
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/credentials-handling/pass-credentials-to-external-tool-via-stdin/common/login.sh

    #!/bin/bash
    
    echo Enter username:
    read username
    echo Enter password:
    if [ -t 0 ] ; then # if connected to a terminal, do not echo the password input
        stty -echo
        read password
        stty echo
        echo
    else
        read password
    fi
    
    if [ "$username" = "secret-user" ] && [ "$password" = "secret-password" ] ; then
        echo "Welcome, $username!"
    else
        echo "Bad credentials!"
        exit 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 391 bytes
    - Viewed (0)
  3. releasenotes/notes/31075.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    issue:
      - 31075
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 25 15:27:20 UTC 2021
    - 184 bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/NotifyDaemonAboutChangedPathsClient.java

    public class NotifyDaemonAboutChangedPathsClient {
        private final DaemonConnector connector;
        private final IdGenerator<UUID> idGenerator;
        private final DaemonRegistry daemonRegistry;
    
        public NotifyDaemonAboutChangedPathsClient(DaemonConnector connector, IdGenerator<UUID> idGenerator, DaemonRegistry daemonRegistry) {
            this.connector = connector;
            this.idGenerator = idGenerator;
            this.daemonRegistry = daemonRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. releasenotes/notes/47617.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 02:45:27 UTC 2023
    - 211 bytes
    - Viewed (0)
  6. pkg/registry/core/node/rest/proxy.go

    type ProxyREST struct {
    	Store          *genericregistry.Store
    	Connection     client.ConnectionInfoGetter
    	ProxyTransport http.RoundTripper
    }
    
    // Implement Connecter
    var _ = rest.Connecter(&ProxyREST{})
    
    var proxyMethods = []string{"GET", "POST", "PUT", "PATCH", "DELETE", "HEAD", "OPTIONS"}
    
    // New returns an empty nodeProxyOptions object.
    func (r *ProxyREST) New() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 19 13:59:13 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features/groovy/producer/build.gradle

            }
        }
    }
    
    java {
        registerFeature('mysqlSupport') {
            usingSourceSet(sourceSets.mysqlSupport)
        }
    }
    
    dependencies {
        mysqlSupportImplementation 'mysql:mysql-connector-java:8.0.14'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 05:15:51 UTC 2023
    - 425 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features/kotlin/producer/build.gradle.kts

            }
        }
    }
    
    java {
        registerFeature("mysqlSupport") {
            usingSourceSet(sourceSets["mysqlSupport"])
        }
    }
    
    dependencies {
        "mysqlSupportImplementation"("mysql:mysql-connector-java:8.0.14")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 05:15:51 UTC 2023
    - 439 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_weights.cc

        auto mutable_quant_method = quant_options_.mutable_quantization_method();
        *mutable_quant_method->add_quantization_component_specs() = quant_spec;
      }
    };
    
    // If a constant is connected to a quantizable op, quantize the constant to have
    // the provided data type.
    class QuantizeConstWeights : public OpRewritePattern<TF::ConstOp> {
     public:
      explicit QuantizeConstWeights(
          MLIRContext* context,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. pilot/pkg/xds/debug_test.go

    )
    
    func TestSyncz(t *testing.T) {
    	t.Run("return the sent and ack status of adsClient connections", func(t *testing.T) {
    		s := xdsfake.NewFakeDiscoveryServer(t, xdsfake.FakeOptions{})
    		ads := s.ConnectADS()
    
    		ads.RequestResponseAck(t, &discovery.DiscoveryRequest{TypeUrl: v3.ClusterType})
    		ads.RequestResponseAck(t, &discovery.DiscoveryRequest{TypeUrl: v3.ListenerType})
    		ads.RequestResponseAck(t, &discovery.DiscoveryRequest{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top