Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 62 for plans (0.06 sec)

  1. src/vendor/golang.org/x/net/nettest/nettest.go

    		// package net of the standard library.
    		switch runtime.GOOS {
    		case "android", "fuchsia", "hurd", "ios", "js", "nacl", "plan9", "wasip1", "windows":
    			return false
    		}
    	case "ip", "ip4", "ip6":
    		switch runtime.GOOS {
    		case "fuchsia", "hurd", "js", "nacl", "plan9", "wasip1":
    			return false
    		default:
    			if os.Getuid() != 0 {
    				return false
    			}
    		}
    	case "unix", "unixgram":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/dryrun/dryrun.go

    func PrintFilesIfDryRunning(needPrintManifest bool, manifestDir string, outputWriter io.Writer) error {
    	var files []FileToPrint
    	// Print static pod manifests if it is a control plane
    	if needPrintManifest {
    		fmt.Printf("[dryrun] Wrote certificates, kubeconfig files and control plane manifests to the %q directory\n", manifestDir)
    		for _, component := range kubeadmconstants.ControlPlaneComponents {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. pilot/pkg/xds/xdsgen.go

    // limitations under the License.
    
    package xds
    
    import (
    	"encoding/json"
    	"strconv"
    	"strings"
    	"time"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/util"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/env"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. pkg/config/xds/filters.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package xds
    
    import (
    	resource "github.com/envoyproxy/go-control-plane/pkg/resource/v3"
    
    	pm "istio.io/istio/pkg/model"
    )
    
    const (
    	WasmHTTPFilterType    = pm.WasmHTTPFilterType
    	WasmNetworkFilterType = pm.WasmNetworkFilterType
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/retry/retry.go

    // limitations under the License.
    
    package retry
    
    import (
    	"net/http"
    	"strconv"
    	"strings"
    
    	route "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    	previouspriorities "github.com/envoyproxy/go-control-plane/envoy/extensions/retry/priority/previous_priorities/v3"
    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    
    	networking "istio.io/api/networking/v1alpha3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. pkg/test/framework/components/environment/kube/settings.go

    	MCSAPIGroup string
    
    	// MCSAPIVersion the version to use for the MCS API
    	MCSAPIVersion string
    
    	// controlPlaneTopology maps each cluster to the cluster that runs its control plane. For replicated control
    	// plane cases (where each cluster has its own control plane), the cluster will map to itself (e.g. 0->0).
    	controlPlaneTopology clusterTopology
    
    	// networkTopology is used for the initial assignment of networks to each cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/telemetry.txt

    [GOOS:darwin] env userconfig=$HOME'/Library/Application Support'
    [GOOS:ios] env userconfig=$HOME'/Library/Application Support'
    [!GOOS:windows] [!GOOS:darwin] [!GOOS:ios] [!GOOS:plan9] env userconfig=$HOME/.config
    env home=$WORK/userconfig # plan9
    [GOOS:plan9] env userconfig=$home/lib
    
    go telemetry
    stdout 'local'
    
    go telemetry off
    go telemetry
    stdout 'off'
    go env GOTELEMETRY
    stdout 'off'
    
    go telemetry local
    go telemetry
    stdout 'local'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/VintageGradleBuild.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    import org.gradle.api.internal.GradleInternal
    import org.gradle.execution.plan.ScheduledWork
    import org.gradle.internal.build.BuildState
    
    
    interface VintageGradleBuild {
        val isRootBuild: Boolean
        val state: BuildState
        val gradle: GradleInternal
        val hasScheduledWork: Boolean
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 983 bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/extension_config_builder.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package core
    
    import (
    	"strings"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	"k8s.io/apimachinery/pkg/types"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/core/envoyfilter"
    	"istio.io/istio/pilot/pkg/networking/core/extension"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ActionNodeCodec.kt

    import org.gradle.internal.serialize.graph.WriteContext
    import org.gradle.internal.serialize.graph.readNonNull
    import org.gradle.internal.serialize.graph.withCodec
    import org.gradle.execution.plan.ActionNode
    
    
    class ActionNodeCodec(
        private val userTypesCodec: Codec<Any?>,
    ) : Codec<ActionNode> {
        override suspend fun WriteContext.encode(value: ActionNode) {
            withCodec(userTypesCodec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top