Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 55 for noppad (0.12 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    	// are popped from this heap before the scheduler looks at activeQ
    	podBackoffQ *heap.Heap
    	// unschedulablePods holds pods that have been tried and determined unschedulable.
    	unschedulablePods *UnschedulablePods
    	// schedulingCycle represents sequence number of scheduling cycle and is incremented
    	// when a pod is popped.
    	schedulingCycle int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. src/runtime/mgcstack.go

    // will not keep heap objects live. Unlike the main garbage
    // collection, we can't sweep the dead stack objects; they live on in
    // a moribund state until the stack frame that contains them is
    // popped.
    //
    // A stack can look like this:
    //
    // +----------+
    // | foo()    |
    // | +------+ |
    // | |  A   | | <---\
    // | +------+ |     |
    // |          |     |
    // | +------+ |     |
    // | |  B   | |     |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. pkg/api/pod/util_test.go

    		Spec: api.PodSpec{
    			Containers:          []api.Container{{}},
    			InitContainers:      []api.Container{{}},
    			EphemeralContainers: []api.EphemeralContainer{{}},
    		},
    	}
    
    	var noPod *api.Pod
    
    	testcases := []struct {
    		description string
    		enabled     bool
    		oldPod      *api.Pod
    		newPod      *api.Pod
    		wantPod     *api.Pod
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. src/encoding/base32/base32.go

    	case 1:
    		val |= uint32(src[si+0]) << 24
    		dst[di+1] = enc.encode[val>>22&0x1F]
    		dst[di+0] = enc.encode[val>>27&0x1F]
    	}
    
    	// Pad the final quantum
    	if enc.padChar != NoPadding {
    		nPad := (remain * 8 / 5) + 1
    		for i := nPad; i < 8; i++ {
    			dst[di+i] = byte(enc.padChar)
    		}
    	}
    }
    
    // AppendEncode appends the base32 encoded src to dst
    // and returns the extended buffer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. docs/ru/docs/deployment/docker.md

    ## Запуск нескольких экземпляров приложения - Указание количества процессов
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/wasm/ssa.go

        - restore local SP from global SP
        - pop int32 from top of Wasm stack. If nonzero, exit function immediately.
        - use results from Go stack (starting at SP+sizeof(args))
           - note that the callee will have popped the return address
    
       Prologue:
        - initialize local SP from global SP
        - jump to the location indicated by the block ID argument
          (which appears in local variable 0)
        - at block 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher_test.go

    	go w.processInterval(ctx, intervalFromEvents(initEvents), 0)
    	watchInitializationSignal.Wait()
    
    	// note that we can add three events even though the chanSize is two because
    	// one event has been popped off from the input chan
    	if !w.add(&watchCacheEvent{Object: makePod(5), ResourceVersion: 5}, time.NewTimer(1*time.Second)) {
    		t.Fatal("failed adding an even to the watcher")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  8. docs/en/docs/deployment/docker.md

    ## Replication - Number of Processes
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. docs/pt/docs/deployment/docker.md

    ## Replicação - Número de Processos
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  10. tensorflow/c/c_api_test.cc

        const float const0_val[] = {1.0, 2.0, 3.0, 4.0};
        TF_Operation* const0 = FloatConst2x2(graph_, s_, const0_val, "Const_0");
        TF_Operation* nograd = NoGradientOp(graph_, s_, const0, "NoGrad");
        inputs[0] = TF_Output{const0, 0};
        outputs[0] = TF_Output{nograd, 0};
        EXPECT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      }
    
      void BuildSuccessGraph(TF_Output* inputs, TF_Output* outputs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
Back to top