Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 56 for evacuate (0.3 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			},
    		},
    		{
    			name: "expression must evaluate to bool",
    			input: schema.Structural{
    				Generic: schema.Generic{
    					Type: "object",
    				},
    				ValidationExtensions: schema.ValidationExtensions{
    					XValidations: apiextensions.ValidationRules{
    						{Rule: "42"},
    					},
    				},
    			},
    			expectedResults: []validationMatcher{
    				invalidError("must evaluate to a bool"),
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/deadness_analysis.cc

      // If `must_be_true()` is true this SymbolPredicate represents the proposition
      // "tensor_id() is live and evaluates to true".
      //
      // If `must_be_true()` is false then this SymbolPredicate represents the
      // proposition "tensor_id() is live (and may evaluate to any value)"
      TensorId tensor_id() const { return tensor_id_; }
      bool must_be_true() const { return must_be_true_; }
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

            "description": "SelfSubjectRulesReviewSpec defines the specification for SelfSubjectRulesReview.",
            "properties": {
              "namespace": {
                "description": "Namespace to evaluate rules for. Required.",
                "type": "string"
              }
            },
            "type": "object"
          },
          "io.k8s.api.authorization.v1.SubjectAccessReview": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  4. cmd/iam.go

    	}
    
    	// 3. If an inline session-policy is present, evaluate it.
    	hasSessionPolicy, isAllowedSP := isAllowedBySessionPolicyForServiceAccount(args)
    	if hasSessionPolicy {
    		return isAllowedSP && (isOwnerDerived || combinedPolicy.IsAllowed(parentArgs))
    	}
    
    	// Sub policy not set. Evaluate only the parent policies.
    	return (isOwnerDerived || combinedPolicy.IsAllowed(parentArgs))
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

       F_0 = forward(args_0, N_0)
       T_0 = core_tpu(args_0, N_0, F_0)
       // B_0 = backward() is not evaluated here.
    }
    
    args_1 = update_args(args_0, N_0, T_0)
    
    // Start step 1
    C_1 = cond(args_1)
    N_1 = non_tpu(args_1)
    if (C_1) {
       F_1 = forward(args_1, N_1)
       // T_1 = core_tpu() is not evaluated here.
       // B_1 = backward() is not evaluated here.
    }
    
    // Partial update of args. We expect this to be sufficient
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. src/html/template/exec_test.go

    			// pointer error. https://golang.org/issue/15125
    			"MissingFieldOnNil",
    			"{{.MissingField}}",
    			(*T)(nil),
    			"can't evaluate field MissingField in type *template.T",
    		},
    		{
    			"MissingFieldOnNonNil",
    			"{{.MissingField}}",
    			&T{},
    			"can't evaluate field MissingField in type *template.T",
    		},
    		{
    			"ExistingFieldOnNil",
    			"{{.X}}",
    			(*T)(nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. src/text/template/exec_test.go

    			// pointer error. https://golang.org/issue/15125
    			"MissingFieldOnNil",
    			"{{.MissingField}}",
    			(*T)(nil),
    			"can't evaluate field MissingField in type *template.T",
    		},
    		{
    			"MissingFieldOnNonNil",
    			"{{.MissingField}}",
    			&T{},
    			"can't evaluate field MissingField in type *template.T",
    		},
    		{
    			"ExistingFieldOnNil",
    			"{{.X}}",
    			(*T)(nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K 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. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    // formulas:
    //
    //     softmax = div(exp(logits), sum(exp(logits)))
    //     log_softmax = sub(logits, log(sum(exp(logits))))
    //
    // TODO(jpienaar): Evaluate benefit of templating here.
    template <typename OpTy, bool use_log = true>
    class LowerSoftmaxOp : public OpRewritePattern<OpTy> {
     public:
      using OpRewritePattern<OpTy>::OpRewritePattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    //   what the actual value is when it fails, and similarly for the
    //   other comparisons.
    //
    //   4. Do not depend on the order in which {ASSERT|EXPECT}_??()
    //   evaluate their arguments, which is undefined.
    //
    //   5. These macros evaluate their arguments exactly once.
    //
    // Examples:
    //
    //   EXPECT_NE(5, Foo());
    //   EXPECT_EQ(NULL, a_pointer);
    //   ASSERT_LT(i, array_size);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
Back to top