Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 99 for nominator (0.16 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Combinators.kt

            is ParserResult.Failure -> {
                restore(mark)
                nullSuccess
            }
    
            is ParserResult.Success -> r
        }
    }
    
    
    internal
    open class Combinator(
        val ignoresComments: Boolean,
        val ignoresNewline: Boolean
    ) {
    
        private
        val memoizedTokenParsers = mutableMapOf<KtToken, Parser<Unit>>()
    
        internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/gradients/math_grad_test.cc

          DivNoNanModel, DivNoNanGradModel, immediate_execution_ctx_.get(),
          {x.get(), y.get()}, UseFunction()));
    
      // `DivNoNanGradModel` should return {`0`, `0`} when the denominator is `0`.
      AbstractTensorHandlePtr z;
      {
        AbstractTensorHandle* z_raw = nullptr;
        status_ = TestScalarTensorHandle<float, TF_FLOAT>(
            immediate_execution_ctx_.get(), 0.0f, &z_raw);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 17:32:14 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/regalloc.go

    	// increases the probability that we will stabilize quickly.
    	// TODO: Do a better job yet. Here's one possibility:
    	// Calculate the dominator tree and locate all strongly connected components.
    	// If a value is live in one block of an SCC, it is live in all.
    	// Walk the dominator tree from end to beginning, just once, treating SCC
    	// components as single blocks, duplicated calculated liveness information
    	// out to all of them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/math_ops.cc

      TF_RETURN_IF_ERROR(op_ptr->AddInput(y));
      int num_retvals = 1;
      return op_ptr->Execute(absl::MakeSpan(z, 1), &num_retvals);
    }
    
    // Op: DivNoNan()
    // Summary: Returns 0 if the denominator is zero.
    //
    // Description:
    //
    //   *NOTE*: `DivNoNan` supports broadcasting. More about broadcasting
    //   [here](http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 10 19:11:36 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/runtime/framework_test.go

    	}{
    		{
    			name:            "node has no nominated pod",
    			preFilterPlugin: nil,
    			filterPlugin:    nil,
    			pod:             lowPriorityPod,
    			nominatedPod:    nil,
    			node:            node,
    			nodeInfo:        framework.NewNodeInfo(pod),
    			wantStatus:      nil,
    		},
    		{
    			name: "node has a high-priority nominated pod and all filters succeed",
    			preFilterPlugin: &TestPlugin{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			nominatedNodeStatus: framework.NewStatus(framework.UnschedulableAndUnresolvable, tainttoleration.ErrReasonNotMatch),
    			expected:            true,
    		},
    		{
    			name:                "Pod with nominated node, but without nominated node status",
    			pod:                 st.MakePod().Name("p_without_status").UID("p").Priority(highPriority).NominatedNodeName("node1").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route.go

    		Numerator:   uint32(p.Value * 10000),
    		Denominator: xdstype.FractionalPercent_MILLION,
    	}
    }
    
    // translateIntegerToFractionalPercent translates an int32 instance to an
    // envoy.type.FractionalPercent instance.
    func translateIntegerToFractionalPercent(p int32) *xdstype.FractionalPercent {
    	return &xdstype.FractionalPercent{
    		Numerator:   uint32(p),
    		Denominator: xdstype.FractionalPercent_HUNDRED,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  8. pkg/scheduler/util/utils_test.go

    			currentNominatedNodeName: "node1",
    			expectedPatchRequests:    1,
    			expectedPatchData:        `{"status":{"nominatedNodeName":null}}`,
    		},
    		{
    			name:                     "Should not make patch request if nominated node is already cleared",
    			currentNominatedNodeName: "",
    			expectedPatchRequests:    0,
    		},
    	}
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			actualPatchRequests := 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 21 01:40:44 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    			Help:      "Observations, at the end of every nanosecond, of number of requests (as a fraction of the relevant limit) waiting or in any stage of execution (but only initial stage for WATCHes)",
    			// For executing: the denominator will be seats, so this metric will skew low.
    			// For waiting: total queue capacity is generally quite generous, so this metric will skew low.
    			Buckets:        []float64{0, 0.001, 0.003, 0.01, 0.03, 0.1, 0.25, 0.5, 0.75, 1},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/field/fe_test.go

    		u, v      string
    		wasSquare int
    		r         string
    	}
    	var tests = []test{
    		// If u is 0, the function is defined to return (0, TRUE), even if v
    		// is zero. Note that where used in this package, the denominator v
    		// is never zero.
    		{
    			"0000000000000000000000000000000000000000000000000000000000000000",
    			"0000000000000000000000000000000000000000000000000000000000000000",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top