Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 530 for plans (0.04 sec)

  1. pkg/test/framework/config.go

    func (c *configFactory) New() config.Plan {
    	return &configPlan{
    		configFactory: c,
    		yamlText:      make(map[string][]string),
    	}
    }
    
    func (c *configFactory) YAML(ns string, yamlText ...string) config.Plan {
    	return c.New().YAML(ns, yamlText...)
    }
    
    func (c *configFactory) Eval(ns string, args any, yamlTemplates ...string) config.Plan {
    	return c.New().Eval(ns, args, yamlTemplates...)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/extension/wasmplugin_test.go

    package extension
    
    import (
    	"testing"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	httpwasm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/wasm/v3"
    	networkwasm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/wasm/v3"
    	wasmextension "github.com/envoyproxy/go-control-plane/envoy/extensions/wasm/v3"
    	"github.com/google/go-cmp/cmp"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/connection/ForceConnectRoutePlanner.kt

     */
    class ForceConnectRoutePlanner(private val delegate: RealRoutePlanner) : RoutePlanner by delegate {
      override fun plan(): RoutePlanner.Plan = delegate.planConnect() // not delegate.plan()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 03 20:39:41 UTC 2024
    - 932 bytes
    - Viewed (0)
  4. src/runtime/crash_cgo_test.go

    	switch runtime.GOOS {
    	case "windows", "plan9":
    		t.Skipf("skipping numgoroutine test on %s", runtime.GOOS)
    	}
    	t.Parallel()
    	got := runTestProg(t, "testprogcgo", "NumGoroutine")
    	want := "OK\n"
    	if got != want {
    		t.Errorf("expected %q got %v", want, got)
    	}
    }
    
    func TestCatchPanic(t *testing.T) {
    	t.Parallel()
    	switch runtime.GOOS {
    	case "plan9", "windows":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 22.2K bytes
    - Viewed (1)
  5. pkg/bootstrap/instance_test.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/compressor/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/router/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/upstreams/http/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/constants/constants.go

    	CertificateKeySize = 32
    
    	// LabelNodeRoleControlPlane specifies that a node hosts control-plane components
    	LabelNodeRoleControlPlane = "node-role.kubernetes.io/control-plane"
    
    	// LabelExcludeFromExternalLB can be set on a node to exclude it from external load balancers.
    	// This is added to control plane nodes to preserve backwards compatibility with a legacy behavior.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/extension/wasmplugin.go

    package extension
    
    import (
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	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"
    	wasmextensions "github.com/envoyproxy/go-control-plane/envoy/extensions/wasm/v3"
    	"google.golang.org/protobuf/types/known/durationpb"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/initialization/DefaultTaskExecutionPreparer.java

        }
    
        @Override
        public void scheduleRequestedTasks(GradleInternal gradle, @Nullable EntryTaskSelector selector, ExecutionPlan plan) {
            gradle.getOwner().getProjects().withMutableStateOfAllProjects(() -> {
                buildTaskScheduler.scheduleRequestedTasks(gradle, selector, plan);
    
                if (buildModelParameters.isConfigureOnDemand() && gradle.isRootBuild()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheAwareBuildModelController.kt

                delegate.prepareToScheduleTasks()
            } // Else, already done
        }
    
        override fun scheduleRequestedTasks(selector: EntryTaskSelector?, plan: ExecutionPlan) {
            if (!maybeLoadFromCache()) {
                delegate.scheduleRequestedTasks(selector, plan)
            } // Else, already scheduled
        }
    
        private
        fun maybeLoadFromCache(): Boolean {
            return configurationCache.isLoaded
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/configgen.go

    // limitations under the License.
    
    package core
    
    import (
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/model"
    	dnsProto "istio.io/istio/pkg/dns/proto"
    )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top