Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,097 for Reconfig (0.24 sec)

  1. istioctl/pkg/describe/testdata/describe/http_config.json

          "dynamic_active_clusters": [
            {
              "cluster": {
                "@type": "type.googleapis.com/envoy.config.cluster.v3.Cluster",
                "name": "outbound|9080|v1|productpage.default.svc.cluster.local",
                "type": "EDS",
                "eds_cluster_config": {
                  "eds_config": {
                    "ads": {},
                    "initial_fetch_timeout": "0s",
                    "resource_api_version": "V3"
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 13.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

            this.transportContext = tc;
    
            this.signingEnforced = forceSigning || this.getContext().getConfig().isSigningEnforced();
            this.sessionExpiration = System.currentTimeMillis() + tc.getConfig().getSessionTimeout();
    
            this.address = address;
            this.port = port;
            this.localAddr = localAddr;
            this.localPort = localPort;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbRandomAccessFile.java

                        RequestParam.NO_RETRY);
                }
                else {
                    // this is the original, COM_WRITE allows truncation but no 64 bit offsets
                    SmbComWriteResponse rsp = new SmbComWriteResponse(th.getConfig());
                    th.send(
                        new SmbComWrite(th.getConfig(), fh.getFid(), (int) ( newLength & 0xFFFFFFFFL ), 0, this.tmp, 0, 0),
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed Jan 08 12:01:33 GMT 2020
    - 18.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

                    else {
                        th.send(new SmbComDeleteDirectory(th.getConfig(), fileName), new SmbComBlankResponse(th.getConfig()));
                    }
                }
                else {
    
                    if ( th.isSMB2() ) {
                        Smb2CreateRequest req = new Smb2CreateRequest(th.getConfig(), fileName.substring(1));
                        req.setDesiredAccess(0x10000); // delete
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

            }
    
            if ( !selected.atLeast(getConfig().getMinimumVersion()) || !selected.atMost(getConfig().getMaximumVersion()) ) {
                log.error(
                    String.format(
                        "Server selected an disallowed dialect version %s (min: %s max: %s)",
                        selected,
                        getConfig().getMinimumVersion(),
                        getConfig().getMaximumVersion()));
                return false;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Mar 22 10:09:46 GMT 2020
    - 17.6K bytes
    - Viewed (0)
  6. cmd/ilm-config.go

    package cmd
    
    import (
    	"sync"
    
    	"github.com/minio/minio/internal/config/ilm"
    )
    
    var globalILMConfig = ilmConfig{
    	cfg: ilm.Config{
    		ExpirationWorkers: 100,
    		TransitionWorkers: 100,
    	},
    }
    
    type ilmConfig struct {
    	mu  sync.RWMutex
    	cfg ilm.Config
    }
    
    func (c *ilmConfig) getExpirationWorkers() int {
    	c.mu.RLock()
    	defer c.mu.RUnlock()
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Mar 05 02:50:24 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTreeImpl.java

                Trans2FindFirst2 req = new Trans2FindFirst2(
                    tf.getConfig(),
                    "\\",
                    "*",
                    SmbConstants.ATTR_DIRECTORY,
                    tf.getConfig().getListCount(),
                    tf.getConfig().getListSize());
                Trans2FindFirst2Response resp = new Trans2FindFirst2Response(tf.getConfig());
                try {
                    send(req, resp);
                }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  8. istioctl/pkg/describe/testdata/describe/tls_config.json

        {
          "@type": "type.googleapis.com/envoy.admin.v3.RoutesConfigDump",
          "dynamic_route_configs": [
            {
              "version_info": "2022-03-04T07:18:48Z/22",
              "route_config": {
                "@type": "type.googleapis.com/envoy.config.route.v3.RouteConfiguration",
                "name": "https.443.https.bookinfo-gateway.default",
                "virtual_hosts": [
                  {
                    "name": "*:443",
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 8K bytes
    - Viewed (0)
  9. internal/event/config_test.go

          <Event>s3:ObjectCreated:Put</Event>
       </QueueConfiguration>
    </NotificationConfiguration>
    `)
    	config3 := &Config{}
    	if err := xml.Unmarshal(data, config3); err != nil {
    		panic(err)
    	}
    
    	testCases := []struct {
    		config         *Config
    		region         string
    		expectedResult []ARN
    	}{
    		{config1, "eu-west-1", []ARN{{TargetID{"1", "webhook"}, "eu-west-1"}}},
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Dec 05 10:16:33 GMT 2023
    - 29K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

            return getSmbTransport(tc, address, port, tc.getConfig().getLocalAddr(), tc.getConfig().getLocalPort(), null, nonPooled);
        }
    
    
        @Override
        public SmbTransportImpl getSmbTransport ( CIFSContext tc, Address address, int port, boolean nonPooled, boolean forceSigning ) {
            return getSmbTransport(tc, address, port, tc.getConfig().getLocalAddr(), tc.getConfig().getLocalPort(), null, nonPooled, forceSigning);
        }
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 12.5K bytes
    - Viewed (0)
Back to top