Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for plans (0.04 sec)

  1. pilot/pkg/xds/deltatest.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package xds
    
    import (
    	"fmt"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    
    	"istio.io/istio/pilot/pkg/model"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/slices"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/apis.go

    		APIAudiences:                c.Generic.Authentication.APIAudiences,
    		Informers:                   c.Extra.VersionedInformers,
    	}
    }
    
    // GenericStorageProviders returns a set of APIs for a generic control plane.
    // They ought to be a subset of those served by kube-apiserver.
    func (c *CompletedConfig) GenericStorageProviders(discovery discovery.DiscoveryInterface) ([]RESTStorageProvider, error) {
    	// The order here is preserved in discovery.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/modules.txt

    golang.org/x/mod/sumdb/tlog
    golang.org/x/mod/zip
    # golang.org/x/sync v0.7.0
    ## explicit; go 1.18
    golang.org/x/sync/errgroup
    golang.org/x/sync/semaphore
    # golang.org/x/sys v0.21.0
    ## explicit; go 1.18
    golang.org/x/sys/plan9
    golang.org/x/sys/unix
    golang.org/x/sys/windows
    # golang.org/x/telemetry v0.0.0-20240603224550-f2b69109f79b
    ## explicit; go 1.20
    golang.org/x/telemetry
    golang.org/x/telemetry/counter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/net/main_test.go

    // not to support deadlines, or fails the test otherwise.
    func mustSetDeadline(t testing.TB, m func(time.Time) error, d time.Duration) {
    	err := m(time.Now().Add(d))
    	if err != nil {
    		t.Helper()
    		if runtime.GOOS == "plan9" {
    			t.Skipf("skipping: %s does not support deadlines", runtime.GOOS)
    		}
    		t.Fatal(err)
    	}
    }
    
    type ipv6LinkLocalUnicastTest struct {
    	network, address string
    	nameLookup       bool
    }
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. src/runtime/lock_sema.go

    // Copyright 2011 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.
    
    //go:build aix || darwin || netbsd || openbsd || plan9 || solaris || windows
    
    package runtime
    
    import (
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    // This implementation depends on OS-specific implementations of
    //
    //	func semacreate(mp *m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. cni/pkg/nodeagent/cni-watcher.go

    		podIps = append(podIps, ip)
    	}
    	// Note that we use the IP info from the CNI plugin here - the Pod struct as reported by K8S doesn't have this info
    	// yet (because the K8S control plane doesn't), so it will be empty there.
    	err = s.dataplane.AddPodToMesh(ctx, ambientPod, podIps, addCmd.Netns)
    	if err != nil {
    		return err
    	}
    
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. src/internal/coverage/cfile/testdata/harness.go

    	log.SetPrefix("emitToNonexistentDir: ")
    
    	want := []string{
    		"no such file or directory",             // linux-ish
    		"system cannot find the file specified", // windows
    		"does not exist",                        // plan9
    	}
    
    	checkWant := func(which string, got string) {
    		found := false
    		for _, w := range want {
    			if strings.Contains(got, w) {
    				found = true
    				break
    			}
    		}
    		if !found {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    	if obj.Timeouts == nil {
    		obj.Timeouts = &Timeouts{}
    	}
    	SetDefaults_Timeouts(obj.Timeouts)
    }
    
    // SetDefaults_JoinControlPlane assigns default values for a joining control plane node
    func SetDefaults_JoinControlPlane(obj *JoinControlPlane) {
    	if obj != nil {
    		SetDefaults_APIEndpoint(&obj.LocalAPIEndpoint)
    	}
    }
    
    // SetDefaults_Discovery assigns default values for the discovery process
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/common/deployment/namespace.go

    		}
    	}
    
    	return cfg.Apply(apply.NoCleanup)
    }
    
    func DeployExternalServiceEntry(cfg config.Factory, deployedNamespace, externalNamespace namespace.Instance, manuallyAllocate bool) config.Plan {
    	return cfg.Eval(deployedNamespace.Name(), map[string]any{
    		"Namespace":        externalNamespace.Name(),
    		"Hostname":         ExternalHostname,
    		"Ports":            serviceEntryPorts(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. pilot/pkg/xds/workload.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package xds
    
    import (
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/util/sets"
    )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top