Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 696 for Remotes (0.36 sec)

  1. istioctl/pkg/multicluster/remote_secret.go

    }
    
    const (
    	// Use a bearer token for authentication to the remote kubernetes cluster.
    	RemoteSecretAuthTypeBearerToken RemoteSecretAuthType = "bearer-token"
    
    	// Use a custom authentication plugin for the remote kubernetes cluster.
    	RemoteSecretAuthTypePlugin RemoteSecretAuthType = "plugin"
    
    	// Secret generated from remote cluster
    	SecretTypeRemote SecretType = "remote"
    
    	// Secret generated from config cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 01:43:17 UTC 2023
    - 24K bytes
    - Viewed (0)
  2. pilot/pkg/leaderelection/leaderelection_test.go

    		lockName += "-" + revision
    	}
    	l := &LeaderElection{
    		namespace:      "ns",
    		name:           name,
    		electionID:     lockName,
    		client:         client,
    		revision:       revision,
    		remote:         remote,
    		defaultWatcher: watcher,
    		perRevision:    perRevision,
    		ttl:            time.Second,
    		cycle:          atomic.NewInt32(0),
    		enabled:        true,
    	}
    	l.AddRunFunction(func(stop <-chan struct{}) {
    		<-stop
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. docs/bucket/replication/setup_3site_replication.sh

    echo "adding replication rule for a -> b : ${remote_arn}"
    sleep 1
    ./mc replicate add sitea/bucket/ \
    	--remote-bucket http://minio:minio123@127.0.0.1:9004/bucket \
    	--replicate "existing-objects,delete,delete-marker,replica-metadata-sync"
    sleep 1
    
    echo "adding replication rule for b -> a : ${remote_arn}"
    ./mc replicate add siteb/bucket/ \
    	--remote-bucket http://minio:minio123@127.0.0.1:9001/bucket \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. pkg/kube/multicluster/secretcontroller.go

    		t0 := time.Now()
    		log.Info("Starting multicluster remote secrets controller")
    		// we need to start here when local cluster secret watcher enabled
    		if features.LocalClusterSecretWatcher && features.ExternalIstiod {
    			c.secrets.Start(stopCh)
    		}
    		if !kube.WaitForCacheSync("multicluster remote secrets", stopCh, c.secrets.HasSynced) {
    			return
    		}
    		log.Infof("multicluster remote secrets controller cache synced in %v", time.Since(t0))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/DefaultBuildCacheController.java

                Optional<BuildCacheLoadResult> remoteResult;
                try {
                    remoteResult = remote.maybeLoad(key, file, f -> packExecutor.unpack(key, entity, f));
                } catch (Exception e) {
                    throw new BuildCacheOperationException("Could not load from remote cache: " + e.getMessage(), e);
                }
                if (remoteResult.isPresent()) {
                    local.maybeStore(key, file);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    2021-08-12T12:01:50.770+0200 [DEBUG] [org.gradle.internal.remote.internal.inet.InetAddresses] Adding IP addresses for network interface lo
    2021-08-12T12:01:50.771+0200 [DEBUG] [org.gradle.internal.remote.internal.inet.InetAddresses] Is this a loopback interface? true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. internal/grid/connection.go

    			}
    		}
    	}
    }
    
    /*
    var ErrDone = errors.New("done for now")
    
    var ErrRemoteRestart = errors.New("remote restarted")
    
    
    // Stateless connects to the remote handler and return all packets sent back.
    // If the remote is restarted will return ErrRemoteRestart.
    // If nil will be returned remote call sent EOF or ErrDone is returned by the callback.
    // If ErrDone is returned on cb nil will be returned.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  8. pkg/kube/multicluster/secretcontroller_test.go

    				"which will delete remote cluster c0-1 but will not update remote cluster c0",
    			update: secret0DeleteCluster,
    			want:   []result{{"config", 1}, {"c0", 3}},
    		},
    		{
    			name: "Update secret s0 and re-add kubeconfig for cluster c0-1 but keep the kubeconfig of cluster c0 unchanged, " +
    				"which will add remote cluster c0-1 but will not update remote cluster c0",
    			update: secret0ReAddCluster,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

            then:
            withBuildCache().fails("jar")
                .assertHasDescription("Using insecure protocols with remote build cache, without explicit opt-in, is unsupported.")
                .assertHasResolution("Switch remote build cache to a secure protocol (like HTTPS) or allow insecure protocols.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. cmd/object-api-errors.go

    	if e.Bucket != "" {
    		return fmt.Sprintf("Remote service endpoint offline, target bucket: %s or remote service credentials: %s invalid \n\t%s", e.Bucket, e.AccessKey, e.Err.Error())
    	}
    	return fmt.Sprintf("Remote service endpoint %s not available\n\t%s", e.Endpoint, e.Err.Error())
    }
    
    // BucketRemoteIdenticalToSource remote already exists for this target type.
    type BucketRemoteIdenticalToSource struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 22:19:00 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top