Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for waiters (0.19 sec)

  1. CHANGELOG/CHANGELOG-1.3.md

    * network/cni: Bring up the `lo` interface for rkt ([#29310](https://github.com/kubernetes/kubernetes/pull/29310), [@euank](https://github.com/euank))
    * Fixing kube-up for CVM masters. ([#29140](https://github.com/kubernetes/kubernetes/pull/29140), [@maisem](https://github.com/maisem))
    
    
    
    # v1.3.4
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    	ELF32HDRSIZE  = 52
    	ELF32PHDRSIZE = 32
    	ELF32SHDRSIZE = 40
    	ELF32SYMSIZE  = 16
    	ELF32RELSIZE  = 8
    )
    
    /*
     * The interface uses the 64-bit structures always,
     * to avoid code duplication.  The writers know how to
     * marshal a 32-bit representation from the 64-bit structure.
     */
    
    var elfstrdat, elfshstrdat []byte
    
    /*
     * Total amount of space to reserve at the start of the file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller.go

    		// is already pending deletion. Prevent the pod from being a creation observation.
    		jm.deletePod(logger, pod, false)
    		return
    	}
    
    	// If it has a ControllerRef, that's all that matters.
    	if controllerRef := metav1.GetControllerOf(pod); controllerRef != nil {
    		job := jm.resolveControllerRef(pod.Namespace, controllerRef)
    		if job == nil {
    			return
    		}
    		jobKey, err := controller.KeyFunc(job)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

        kube::util::create_client_certkey "${CONTROLPLANE_SUDO}" "${CERT_DIR}" request-header-ca auth-proxy system:auth-proxy
    
        # TODO remove masters and add rolebinding
        kube::util::create_client_certkey "${CONTROLPLANE_SUDO}" "${CERT_DIR}" 'client-ca' kube-aggregator system:kube-aggregator system:masters
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. src/net/http/request.go

    	// come from an attacker (more likely to be a constant in
    	// code).
    
    	// Wrap the writer in a bufio Writer if it's not already buffered.
    	// Don't always call NewWriter, as that forces a bytes.Buffer
    	// and other small bufio Writers to have a minimum 4k buffer
    	// size.
    	var bw *bufio.Writer
    	if _, ok := w.(io.ByteWriter); !ok {
    		bw = bufio.NewWriter(w)
    		w = bw
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

             - We have batched up conflicts
             - root of one conflicted version is also conflicted
             - conflicted root is positioned on the conflicts queue after the conflicted child (the order of declaring dependencies matters)
             - winning root depends on a child that previously was evicted
             - finally, the winning child is an unresolved dependency
            */
            mavenRepo.module("org", "c", '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container.go

    )
    
    // recordContainerEvent should be used by the runtime manager for all container related events.
    // it has sanity checks to ensure that we do not write events that can abuse our masters.
    // in particular, it ensures that a containerID never appears in an event message as that
    // is prone to causing a lot of distinct events that do not count well.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  8. src/cmd/dist/test.go

    		// cmd.Stdout and cmd.Stderr in order to keep the underlying
    		// interleaving of writes, but then it would see even partial writes
    		// interleaved, which would corrupt the JSON. So, we only process
    		// cmd.Stdout. This has another consequence though: if stdout==stderr,
    		// we have to serialize Writes in case the Writer is not concurrent
    		// safe. If we were just passing stdout/stderr through to exec, it would
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. src/encoding/xml/marshal_test.go

    		if got, want := string(data), test.ExpectXML; got != want {
    			t.Errorf("#%d: MarshalIndent:\nGot:%s\nWant:\n%s", i, got, want)
    		}
    	}
    }
    
    type limitedBytesWriter struct {
    	w      io.Writer
    	remain int // until writes fail
    }
    
    func (lw *limitedBytesWriter) Write(p []byte) (n int, err error) {
    	if lw.remain <= 0 {
    		println("error")
    		return 0, errors.New("write limit hit")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/type.go

    // The answers are correct for an optimizer
    // or code generator, but not necessarily typechecking.
    // The order chosen is arbitrary, only consistency and division
    // into equivalence classes (Types that compare CMPeq) matters.
    func (t *Type) Compare(x *Type) Cmp {
    	if x == t {
    		return CMPeq
    	}
    	return t.cmp(x)
    }
    
    func cmpForNe(x bool) Cmp {
    	if x {
    		return CMPlt
    	}
    	return CMPgt
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top