Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 55 for evacuated (0.62 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    //
    // For wide or narrow string objects, you can use the
    // {ASSERT|EXPECT}_??() macros.
    //
    // Don't depend on the order in which the arguments are evaluated,
    // which is undefined.
    //
    // These macros evaluate their arguments exactly once.
    
    #define EXPECT_STREQ(expected, actual) \
      EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, expected, actual)
    #define EXPECT_STRNE(s1, s2) \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //
    // For wide or narrow string objects, you can use the
    // {ASSERT|EXPECT}_??() macros.
    //
    // Don't depend on the order in which the arguments are evaluated,
    // which is undefined.
    //
    // These macros evaluate their arguments exactly once.
    
    #define EXPECT_STREQ(expected, actual) \
      EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, expected, actual)
    #define EXPECT_STRNE(s1, s2) \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

            dep.selector == moduleId('group-two', 'artifact-two', '1.2')
            dep.scope == MavenScope.Compile
            hasDefaultDependencyArtifact(dep)
        }
    
        def "parent pom properties are evaluated lazily"() {
            given:
            def parent = tmpDir.file("parent.xml") << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>group-one</groupId>
        <artifactId>parent</artifactId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "string"
            },
            "jsonPath": {
              "description": "jsonPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.",
              "type": "string",
              "default": ""
            },
            "name": {
              "description": "name is a human readable name for the column.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

     | foo.bar
     | ^`,
    		},
    		{
    			name: "expression does not evaluate to bool",
    			in: []api.ClaimValidationRule{
    				{Expression: "claims.foo"},
    			},
    			structuredAuthnFeatureEnabled: true,
    			want:                          `issuer.claimValidationRules[0].expression: Invalid value: "claims.foo": must evaluate to bool`,
    		},
    		{
    			name: "valid claim validation rule with expression",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    				filter: perNodeResult{
    					workerNode.Name: {
    						status: framework.NewStatus(framework.UnschedulableAndUnresolvable, `checking structured parameters failed: checking node "worker" and resources of driver "some-driver": evaluate request CEL expression: no such key: no-such-attribute`),
    					},
    				},
    				postfilter: result{
    					status: framework.NewStatus(framework.Unschedulable, `still not schedulable`),
    				},
    			},
    		},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		gp21sp  = regInfo{inputs: []regMask{gpsp, gp}, outputs: gponly}
    		gp21tmp = regInfo{inputs: []regMask{gp &^ tmp, gp &^ tmp}, outputs: []regMask{gp &^ tmp}, clobbers: tmp}
    
    		// R0 evaluates to 0 when used as the number of bits to shift
    		// so we need to exclude it from that operand.
    		sh21 = regInfo{inputs: []regMask{gp, ptr}, outputs: gponly}
    
    		addr    = regInfo{inputs: []regMask{sp | sb}, outputs: gponly}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        rewriter.setInsertionPointAfter(op->getParentOfType<func::FuncOp>());
        SymbolTable manager(op->getParentOfType<ModuleOp>());
    
        // Constructs `then_branch`, which is executed when `if_cond` evaluates to
        // true.
        auto then_branch_op =
            rewriter.create<func::FuncOp>(loc, "cond_true", func_type);
        CreateCondTrueBranch(op, shape_dtype, result_type, then_branch_op,
                             &rewriter);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/get.go

    // matching) a wildcard query depend only on the initial build list, but the set
    // of modules may be expanded by other queries, so wildcard queries need to be
    // re-evaluated whenever a potentially-matching module path is added to the
    // build list.
    func (r *resolver) performWildcardQueries(ctx context.Context) {
    	for _, q := range r.wildcardQueries {
    		q := q
    		r.work.Add(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top