Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for addOption (0.15 sec)

  1. pkg/controller/job/job_controller_test.go

    	pod1 := newPod("pod1", job1)
    	informer.Core().V1().Pods().Informer().GetIndexer().Add(pod1)
    
    	// Remove ControllerRef. Expect all matching to queue for adoption.
    	prev := *pod1
    	pod1.OwnerReferences = nil
    	bumpResourceVersion(pod1)
    	jm.updatePod(logger, &prev, pod1)
    	verifyEmptyQueueAndAwaitForQueueLen(ctx, t, jm, 2)
    }
    
    func TestDeletePod(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/asm6.go

    	0x48, 0x8d, 0x6c, 0x24, 0xf0, // LEAQ -16(SP), BP
    }
    
    var bpduff2 = []byte{
    	0x48, 0x8b, 0x6d, 0x00, // MOVQ 0(BP), BP
    }
    
    // asmevex emits EVEX pregis and opcode byte.
    // In addition to asmvex r/m, vvvv and reg fields also requires optional
    // K-masking register.
    //
    // Expects asmbuf.evex to be properly initialized.
    func (ab *AsmBuf) asmevex(ctxt *obj.Link, p *obj.Prog, rm, v, r, k *obj.Addr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    	if r.FormValue("close") == "true" {
    		w.Header().Set("Connection", "close")
    	}
    	w.Header().Set("X-Saw-Close", fmt.Sprint(r.Close))
    	w.Write([]byte(r.RemoteAddr))
    
    	// Include the address of the net.Conn in addition to the RemoteAddr,
    	// in case kernels reuse source ports quickly (see Issue 52450)
    	if c, ok := ResponseWriterConnForTesting(w); ok {
    		fmt.Fprintf(w, ", %T %p", c, c)
    	}
    })
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top