Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for dying (0.09 sec)

  1. cluster/gce/util.sh

      create-etcd-certs "${MASTER_NAME}"
      create-etcd-apiserver-certs "etcd-${MASTER_NAME}" "${MASTER_NAME}"
    
      if [[ "$(get-num-nodes)" -ge "50" ]]; then
        # We block on master creation for large clusters to avoid doing too much
        # unnecessary work in case master start-up fails (like creation of nodes).
        create-master-instance "${MASTER_RESERVED_IP}" "${MASTER_INTERNAL_IP}"
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier_test.go

    			// came back into the cluster. So it gets routed to all endpoints,
    			// not just local ones. In reality, if the packet actually left
    			// the cluster, it would have to get masqueraded, but since we can
    			// avoid doing that in the short-circuit case, and not masquerading
    			// is more useful, we avoid masquerading.
    			output: "10.180.0.2:80, 10.180.1.2:80",
    			masq:   false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    		case obj.NAME_AUTO,
    			obj.NAME_PARAM:
    			return Yiauto
    		}
    
    		// TODO(rsc): DUFFZERO/DUFFCOPY encoding forgot to set a->index
    		// and got Yi32 in an earlier version of this code.
    		// Keep doing that until we fix yduff etc.
    		if a.Sym != nil && strings.HasPrefix(a.Sym.Name, "runtime.duff") {
    			return Yi32
    		}
    
    		if a.Sym != nil || a.Name != obj.NAME_NONE {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    			t.Fatalf("request %v: Reused=%v (want false), WasIdle=%v (want false)", try, info.Reused, info.WasIdle)
    		}
    	}
    }
    
    // Issue 18447: test that the Server's ReadTimeout is stopped while
    // the server's doing its 1-byte background read between requests,
    // waiting for the connection to maybe close.
    func TestServerCancelsReadTimeoutWhenIdle(t *testing.T) { run(t, testServerCancelsReadTimeoutWhenIdle) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  5. src/reflect/all_test.go

    			cas := &info[helpers[x.Choose(len(helpers))]]
    			helper = cas.helper
    			cas.canSelect = true
    			numCanSelect++
    		}
    
    		// Permute cases and case info.
    		// Doing too much here makes the exhaustive loop
    		// too exhausting, so just do two swaps.
    		for loop := 0; loop < 2; loop++ {
    			i := x.Choose(len(cases))
    			j := x.Choose(len(cases))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top