Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for evacuatedN (0.16 sec)

  1. src/runtime/map.go

    					} else {
    						if hash&newbit != 0 {
    							useY = 1
    						}
    					}
    				}
    
    				if evacuatedX+1 != evacuatedY || evacuatedX^1 != evacuatedY {
    					throw("bad evacuatedN")
    				}
    
    				b.tophash[i] = evacuatedX + useY // evacuatedX + 1 == evacuatedY
    				dst := &xy[useY]                 // evacuation destination
    
    				if dst.i == abi.MapBucketCount {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     *
     * <li>Finally, evaluate each <code>Project</code> by executing its <code>{@value #DEFAULT_BUILD_FILE}</code> file, if
     * present, against the project. The projects are evaluated in breadth-wise order, such that a project is evaluated
     * before its child projects. This order can be overridden by calling <code>{@link #evaluationDependsOnChildren()}</code> or by adding an
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/types.go

    	//'params' - Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind.
    	//'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources.
    	//'variables' - Map of composited variables, from its name to its lazily evaluated value.
    	//  For example, a variable named 'foo' can be accessed as 'variables.foo'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // - 'params' - Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind.
      // - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources.
      // - 'variables' - Map of composited variables, from its name to its lazily evaluated value.
      //   For example, a variable named 'foo' can be accessed as 'variables.foo'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // - 'params' - Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind.
      // - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources.
      // - 'variables' - Map of composited variables, from its name to its lazily evaluated value.
      //   For example, a variable named 'foo' can be accessed as 'variables.foo'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// - 'params' - Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind.
    	// - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources.
    	// - 'variables' - Map of composited variables, from its name to its lazily evaluated value.
    	//   For example, a variable named 'foo' can be accessed as 'variables.foo'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// - 'params' - Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind.
    	// - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources.
    	// - 'variables' - Map of composited variables, from its name to its lazily evaluated value.
    	//   For example, a variable named 'foo' can be accessed as 'variables.foo'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	// is not existing
    	require.ErrorContains(t, err,
    		"no params found for policy binding with `Deny` parameterNotFoundAction")
    	require.Len(t, passedParams, 0)
    }
    
    // Show that policy still gets evaluated with `nil` param if paramRef & namespaceParamRef
    // are both unset
    func TestEmptyParamRef(t *testing.T) {
    	compiler := &fakeCompiler{}
    	matcher := &fakeMatcher{
    		DefaultMatch: true,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                  }
                ],
                "default": {},
                "description": "Spec holds information about the request being evaluated.  spec.namespace must be equal to the namespace you made the request against.  If empty, it is defaulted."
              },
              "status": {
                "allOf": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/math_grad.cc

      // Note that the built-in operator does not return the conjugate of
      // the gradient.
      auto grad = grad_inputs[0];
      // Optimization to avoid calculating conj(y) until the gradient is
      // evaluated.
      Scope grad_scope = scope.WithControlDependencies(grad);
      auto y = ConjugateHelper(grad_scope, op.output(0));
      grad_outputs->push_back(internal::TanhGrad(grad_scope, y, grad));
      return grad_scope.status();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
Back to top