Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for plans (0.09 sec)

  1. pilot/pkg/networking/core/listenertest/match.go

    // limitations under the License.
    
    package listenertest
    
    import (
    	"fmt"
    
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    
    	xdsfilters "istio.io/istio/pilot/pkg/xds/filters"
    	"istio.io/istio/pilot/test/xdstest"
    	"istio.io/istio/pkg/test"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. src/crypto/rand/rand_plan9.go

    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Plan9 cryptographically secure pseudorandom number
    // generator.
    
    package rand
    
    import (
    	"crypto/aes"
    	"internal/byteorder"
    	"io"
    	"os"
    	"sync"
    	"time"
    )
    
    const randomDevice = "/dev/random"
    
    func init() {
    	Reader = &reader{}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskInAnotherBuildCodec.kt

    import org.gradle.internal.serialize.graph.ReadContext
    import org.gradle.internal.serialize.graph.WriteContext
    import org.gradle.internal.serialize.graph.readNonNull
    import org.gradle.execution.plan.TaskInAnotherBuild
    
    
    class TaskInAnotherBuildCodec(
        private val includedTaskGraph: BuildTreeWorkGraphController
    ) : Codec<TaskInAnotherBuild> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/reset/cleanupnode.go

    		if !r.DryRun() {
    			klog.V(1).Infoln("[reset] Removing users and groups created for rootless control-plane")
    			if err := users.RemoveUsersAndGroups(); err != nil {
    				klog.Warningf("[reset] Failed to remove users and groups: %v\n", err)
    			}
    		} else {
    			fmt.Println("[reset] Would remove users and groups created for rootless control-plane")
    		}
    	}
    
    	return nil
    }
    
    func removeContainers(criSocketPath string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/retry/retry_test.go

    // limitations under the License.
    
    package retry_test
    
    import (
    	"reflect"
    	"testing"
    	"time"
    
    	envoyroute "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    	previouspriorities "github.com/envoyproxy/go-control-plane/envoy/extensions/retry/priority/previous_priorities/v3"
    	. "github.com/onsi/gomega"
    	"google.golang.org/protobuf/types/known/durationpb"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/init/preflight.go

    		kubeadm init phase preflight --config kubeadm-config.yaml
    		`)
    )
    
    // NewPreflightPhase creates a kubeadm workflow phase that implements preflight checks for a new control-plane node.
    func NewPreflightPhase() workflow.Phase {
    	return workflow.Phase{
    		Name:    "preflight",
    		Short:   "Run pre-flight checks",
    		Long:    "Run pre-flight checks for kubeadm init.",
    		Example: preflightExample,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. manifests/addons/dashboards/pilot.libsonnet

    local queries = (import './queries.libsonnet').queries({
      container: 'discovery',
      pod: 'istiod-.*',
      component: 'pilot',
      app: 'istiod',
    });
    
    dashboard.new('Istio Control Plane Dashboard')
    + g.dashboard.withPanels(
      grid.makeGrid([
        row.new('Deployed Versions')
        + row.withPanels([
          panels.timeSeries.simple('Pilot Versions', queries.istioBuild, 'Version number of each running instance'),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/RelevantProjectsRegistry.kt

    import org.gradle.api.internal.artifacts.configurations.ProjectComponentObservationListener
    import org.gradle.api.internal.project.ProjectState
    import org.gradle.api.internal.project.ProjectStateRegistry
    import org.gradle.execution.plan.Node
    import org.gradle.internal.build.BuildState
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import org.gradle.util.Path
    
    
    @ServiceScope(Scope.Build::class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/webhook.go

    		return
    	}
    
    	tlsConfig := &tls.Config{
    		GetCertificate: s.getIstiodCertificate,
    		MinVersion:     tls.VersionTLS12,
    		CipherSuites:   args.ServerOptions.TLSOptions.CipherSuits,
    	}
    	// Compliance for control plane validation and injection webhook server.
    	sec_model.EnforceGoCompliance(tlsConfig)
    
    	istiolog.Info("initializing secure webhook server for istiod webhooks")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. pilot/test/xdstest/endpoints.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package xdstest
    
    import (
    	"fmt"
    	"sort"
    	"testing"
    
    	endpointv3 "github.com/envoyproxy/go-control-plane/envoy/config/endpoint/v3"
    
    	"istio.io/istio/pilot/pkg/networking/util"
    )
    
    type LbEpInfo struct {
    	Address string
    	// nolint: structcheck
    	Weight uint32
    }
    
    type LocLbEpInfo struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top