Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,269 for Result (0.22 sec)

  1. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionRangeResolver.java

            result.setVersionConstraint(versionConstraint);
    
            if (versionConstraint.getRange() == null) {
                result.addVersion(versionConstraint.getVersion());
            } else {
                VersionRange.Bound lowerBound = versionConstraint.getRange().getLowerBound();
                if (lowerBound != null
                        && lowerBound.equals(versionConstraint.getRange().getUpperBound())) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

                            valueOrTransform.apply(
                                value -> results.add(value),
                                transform -> {
                                    final int index = results.size();
                                    results.add(null);
                                    transforms.add(() -> {
                                        results.set(index, unchecked(transform));
                                        return null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsbhv/BsBoostDocumentRuleBhv.java

        }
    
        @Override
        protected <RESULT extends BoostDocumentRule> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) {
            try {
                final RESULT result = entityType.newInstance();
                result.setBoostExpr(DfTypeUtil.toString(source.get("boostExpr")));
                result.setCreatedBy(DfTypeUtil.toString(source.get("createdBy")));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/HealthExpirationStrategyTest.groovy

            )
    
            when:
            DaemonExpirationResult result = underTest.checkExpiration()
    
            then:
            if (unhealthy) {
                assert result.status == GRACEFUL_EXPIRE
                assert result.reason == "after running out of JVM heap space"
            } else {
                assert result == DaemonExpirationResult.NOT_TRIGGERED
            }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

      if (parser.resolveOperands(op_infos, types, loc, result.operands))
        return failure();
    
      // Output result types is a replication `num_outs` times the data input type.
      result.types.append(num_outs.getInt(), types[0]);
      result.types.push_back(control_type);
    
      return parser.parseOptionalAttrDict(result.attributes);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/CrossBuildCachingRuleExecutorTest.groovy

        CrossBuildCachingRuleExecutor.EntryValidator<Result> validator = Mock()
        Transformer<Serializable, Id> keyTransformer = new Transformer<Serializable, Id>() {
            @Override
            Serializable transform(Id id) {
                id.name
            }
        }
        Transformer<Result, Details> detailsToResult = new Transformer<Result, Details>() {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/TreeMultiset.java

            return (result[0] == 0) ? this : rebalance();
          } else if (cmp > 0) {
            AvlNode<E> initRight = right;
            if (initRight == null) {
              result[0] = 0;
              return this;
            }
    
            right = initRight.remove(comparator, e, count, result);
    
            if (result[0] > 0) {
              if (count >= result[0]) {
                this.distinctElements--;
                this.totalCount -= result[0];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/codegen.cc

    }
    
    // Generate shape infos for results.
    Status GenResultShapeInfos(const xla::ProgramShapeProto& ps, string* infos) {
      if (ps.result().element_type() != xla::TUPLE) {
        return absl::InternalError("codegen requires the XLA result to be a tuple");
      }
      for (int i = 0; i < ps.result().tuple_shapes_size(); ++i) {
        const xla::ShapeProto& shape = ps.result().tuple_shapes(i);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilderTest.groovy

    import static org.gradle.api.internal.artifacts.ivyservice.resolveengine.result.ComponentSelectionReasons.of
    import static org.gradle.api.internal.artifacts.ivyservice.resolveengine.result.ComponentSelectionReasons.requested
    import static org.gradle.api.internal.artifacts.ivyservice.resolveengine.result.ComponentSelectionReasons.root
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile_test.go

    						result := compiler.CompileCELExpression(&fakeValidationCondition{
    							Expression: expr,
    						}, options, envType)
    						if result.Error != nil {
    							t.Errorf("Unexpected error: %v", result.Error)
    						}
    					})
    					t.Run("auditAnnotation.valueExpression", func(t *testing.T) {
    						// Test audit annotation compilation by casting the result to a string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top