Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for _run (0.16 sec)

  1. src/cmd/go/alldocs.go

    // module-aware mode or GOPATH mode, depending on the GO111MODULE environment
    // variable and the presence of a go.mod file. See 'go help modules' for details.
    // If module-aware mode is enabled, "go run" runs in the context of the main
    // module.
    //
    // By default, 'go run' runs the compiled binary directly: 'a.out arguments...'.
    // If the -exec flag is given, 'go run' invokes the binary using xprog:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_test.go

    				"outbound|8080||*.example.org": basicSettings,
    				"inbound|10001||":              overrideSettings,
    				"inbound|10002||":              basicSettings,
    			},
    		},
    	}
    	for name, tt := range cases {
    		t.Run(name, func(t *testing.T) {
    			g := NewWithT(t)
    
    			clusters := xdstest.ExtractClusters(buildTestClusters(clusterTest{
    				t:               t,
    				serviceHostname: "*.example.org",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    		// Don't create cgroups for run once pod if it was killed above
    		// The current policy is not to restart the run once pods when
    		// the kubelet is restarted with the new flag as run once pods are
    		// expected to run only once and if the kubelet is restarted then
    		// they are not expected to run again.
    		// We don't create and apply updates to cgroup if its a run once pod and was killed above
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller_test.go

    	// and make sure it hits the sync method for the right job.
    	stopCh := make(chan struct{})
    	defer close(stopCh)
    	go sharedInformerFactory.Core().V1().Pods().Informer().Run(stopCh)
    	go manager.Run(context.TODO(), 1)
    
    	pods := newPodList(1, v1.PodRunning, testJob)
    	testPod := pods[0]
    	testPod.Status.Phase = v1.PodFailed
    	fakeWatch.Add(testPod)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue_test.go

    							// But, the function continues to run other hints because the Pod has PendingPlugins, which can result in queueImmediately.
    							QueueingHintFn: queueHintReturnQueue,
    						},
    						{
    							PluginName: "fooPlugin2",
    							// It's interpreted as queueImmediately.
    							// The function doesn't run other hints because queueImmediately is the highest priority.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_builder_test.go

    				EdsClusterConfig:     &cluster.Cluster_EdsClusterConfig{ServiceName: "outbound|8080|v1|foo.default.svc.cluster.local"},
    			}},
    		},
    	}
    
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    			instances := []*model.ServiceInstance{
    				{
    					Service:     tt.service,
    					ServicePort: tt.port,
    					Endpoint: &model.IstioEndpoint{
    						ServicePortName: tt.port.Name,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    				b.cacheObjdirFile(a, cache.Default(), ba.covMetaFileName)
    			}
    		}
    	}
    
    	// Run SWIG on each .swig and .swigcxx file.
    	// Each run will generate two files, a .go file and a .c or .cxx file.
    	// The .go file will use import "C" and is to be processed by cgo.
    	// For -cover test or build runs, this needs to happen after the cover
    	// tool is run; we don't want to instrument swig-generated Go files,
    	// see issue #64661.
    	if p.UsesSwig() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			m:   matchPodName("foo", "makeMatchSingleReturnFalse"),
    			out: &example.PodList{Items: []example.Pod{*podB}},
    		},
    	}
    
    	for name, item := range table {
    		t.Run(name, func(t *testing.T) {
    			ctx := testContext
    			if item.context != nil {
    				ctx = item.context
    			}
    			destroyFunc, registry := NewTestGenericStoreRegistry(t)
    			defer destroyFunc()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

      gcloud compute instances remove-metadata "${name}" --zone "${zone}" --keys=kube-master-internal-ip
      # We want `ip route` to be run in the cloud and not this host
      run-gcloud-command "${name}" "${zone}" "sudo ip route del to local ${ip}/32 dev \$(ip route | grep default | while read -r _ _ _ _ dev _; do echo \$dev; done)" || true
      return $?
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Inserts TPU layout ops to determine layout at run time.";
      let constructor = "TFTPU::CreateTPUDynamicLayoutPass()";
      let description = [{
        A pass that allows TPU input layout to be determined after JIT compilation.
        This is done by adding run-time ops that interpret compilation result and
        copy the input to device with that layout.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top