Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for ingr (0.04 sec)

  1. cluster/gce/windows/smoke-test.sh

      local service_port
      service_port=$($kubectl get service --namespace kube-system $service \
        -o jsonpath='{.spec.ports[?(@.protocol=="TCP")].port}')
      echo "curl-ing $service address from Linux pod: $service_ip:$service_port"
    
      # curl-ing the metrics-server service downloads 14 bytes of unprintable binary
      # data and sets a return code of success (0).
      if ! $kubectl exec "$linux_command_pod" -- \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. test/fixedbugs/issue21317.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // As of "Mon 6 Nov 2017", run.go doesn't yet have proper
    // column matching so instead match the output manually
    // by exec-ing
    
    package main
    
    import (
    	"fmt"
    	"io/ioutil"
    	"log"
    	"os"
    	"os/exec"
    	"strings"
    )
    
    func main() {
    	f, err := ioutil.TempFile("", "issue21317.go")
    	if err != nil {
    		log.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/defaults.go

    	}
    
    	if obj.Spec.Type == v1.ServiceTypeLoadBalancer {
    		if utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) {
    			ipMode := v1.LoadBalancerIPModeVIP
    
    			for i, ing := range obj.Status.LoadBalancer.Ingress {
    				if ing.IP != "" && ing.IPMode == nil {
    					obj.Status.LoadBalancer.Ingress[i].IPMode = &ipMode
    				}
    			}
    		}
    	}
    
    }
    func SetDefaults_Pod(obj *v1.Pod) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. src/internal/trace/gc.go

    				if g := r.Scope.Goroutine(); g != NoGoroutine {
    					inGC[g] = true
    				}
    			}
    		case EventRangeEnd:
    			r := ev.Range()
    			if handleSTW(r) {
    				stw--
    			} else if handleSweep(r) {
    				ps[ev.Proc()].gc--
    			} else if handleMarkAssist(r) {
    				ps[ev.Proc()].gc--
    				if g := r.Scope.Goroutine(); g != NoGoroutine {
    					delete(inGC, g)
    				}
    			}
    		case EventStateTransition:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/handling-errors.md

    The benefit of raising an exception over `return`ing a value will be more evident in the section about Dependencies and Security.
    
    In this example, when the client requests an item by an ID that doesn't exist, raise an exception with a status code of `404`:
    
    ```Python hl_lines="11"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. src/net/http/request_test.go

    		Body:   io.NopCloser(strings.NewReader(postData)),
    	}
    
    	initialFormItems := map[string]string{
    		"language": "Go",
    		"name":     "gopher",
    		"skill":    "go-ing",
    		"field2":   "initial-value2",
    	}
    
    	req.Form = make(url.Values)
    	for k, v := range initialFormItems {
    		req.Form.Add(k, v)
    	}
    
    	err := req.ParseMultipartForm(10000)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

            run 'consumer'
            then:
            executedAndNotSkipped(":producer", ":consumer")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/16775")
        def "orElse does not cause error when map-ing a task property"() {
            buildFile """
                abstract class Producer extends DefaultTask {
                    @OutputDirectory
                    abstract DirectoryProperty getOutput()
    
                    @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

          Value z_plus_index_plus_one =
              rewriter.create<AddV2Op>(loc, z_plus_index, one);
          Value incr = rewriter.create<DivOp>(loc, lanczos_coefficient,
                                              z_plus_index_plus_one);
          x = rewriter.create<AddV2Op>(loc, x, incr);
        }
    
        // To improve accuracy on platforms with less-precise log implementations,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  9. src/runtime/runtime2.go

    	_Gcopystack // 8
    
    	// _Gpreempted means this goroutine stopped itself for a
    	// suspendG preemption. It is like _Gwaiting, but nothing is
    	// yet responsible for ready()ing it. Some suspendG must CAS
    	// the status to _Gwaiting to take responsibility for
    	// ready()ing this G.
    	_Gpreempted // 9
    
    	// _Gscan combined with one of the above states other than
    	// _Grunning indicates that GC is scanning the stack. The
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  10. pkg/scheduler/schedule_one.go

    	if forgetErr := sched.Cache.ForgetPod(logger, assumedPod); forgetErr != nil {
    		logger.Error(forgetErr, "scheduler cache ForgetPod failed")
    	} else {
    		// "Forget"ing an assumed Pod in binding cycle should be treated as a PodDelete event,
    		// as the assumed Pod had occupied a certain amount of resources in scheduler cache.
    		//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top