Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 549 for getresuid (0.44 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/InMemoryResolutionResultBuilder.java

        }
    
        @Override
        public void visitEdges(DependencyGraphNode node) {
            resolutionResultBuilder.visitOutgoingEdges(node.getOwner().getResultId(), node.getOutgoingEdges());
        }
    
        @Override
        public void finish(RootGraphNode root) {
            Long resultId = root.getOwner().getResultId();
            this.root = resolutionResultBuilder.getRoot(resultId);
            this.requestAttributes = root.getResolveState().getAttributes();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/reduce.h

          auto tf_reduce_op = rewriter.create<BooleanReduce>(
              reduce_op.getLoc(), reduce_op->getResult(0).getType(), operand,
              reduction_indices,
              /*keep_dim=*/rewriter.getBoolAttr(false));
          auto tf_argreduce_op = rewriter.create<ArgReduce>(
              reduce_op.getLoc(), reduce_op->getResult(1).getType(), operand,
              reduction_indices);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/resolver/DefaultComponentArtifactResolver.java

                    try {
                        // probe if the artifact exists
                        result.getResult().getFile();
                    } catch (Exception e) {
                        // Optional artifact is not available
                        continue;
                    }
                }
                resolvedArtifacts.add(result.getResult());
            }
            return resolvedArtifacts.build();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/CompositeDataReporter.java

        }
    
        @Override
        public void report(CrossVersionPerformanceResults results) {
            if (!testIds.add(results.getTestId())) {
                throw new IllegalArgumentException(String.format("Multiple performance test executions with id '%s' found.", results.getTestId()));
            }
            for (DataReporter<CrossVersionPerformanceResults> reporter : reporters) {
                reporter.report(results);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/sources/process/DefaultExecOutput.java

        public DefaultExecOutput(Provider<ExecOutputData> dataProvider) {
            this.dataProvider = dataProvider;
        }
    
        @Override
        public Provider<ExecResult> getResult() {
            return dataProvider.map(transformer(ExecOutputData::getResult));
        }
    
        @Override
        public StandardStreamContent getStandardOutput() {
            return new DefaultStandardStreamContent(dataProvider.map(transformer(ExecOutputData::getOutput)));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/TestThread.java

        assertEquals(null, getResponse(methodName).getResult());
      }
    
      /**
       * Asserts that a prior call that had caused this thread to block or wait has since returned the
       * expected boolean value.
       */
      public void assertPriorCallReturns(boolean expected, @Nullable String methodName)
          throws Exception {
        assertEquals(expected, getResponse(methodName).getResult());
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/TestFinishEvent.java

    package org.gradle.tooling.events.test;
    
    import org.gradle.tooling.events.FinishEvent;
    
    /**
     * An event that informs about a test having finished its execution. You can query the result of the
     * test using {@link #getResult()}.
     *
     * @since 2.4
     */
    public interface TestFinishEvent extends TestProgressEvent, FinishEvent {
    
        /**
         * Returns the result of the finished test operation. Currently, the result will be one of the following
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/plan/ExecutionNodeAccessHierarchy.java

                @Override
                void visit(NodeAccess value) {
                    currentValue = visitor.apply(currentValue, value.getNode());
                }
    
                @Override
                T getResult() {
                    return currentValue;
                }
            });
        }
    
        /**
         * Returns all nodes which access the location, taking into account the filter.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:10:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/post_quantize.cc

                  QuantizedType::getQuantizedElementType(q.getArg().getType())) {
            rewriter.setInsertionPoint(op);
            rewriter.replaceOpWithNewOp<quantfork::DequantizeCastOp>(
                op, op.getResult().getType(), q.getArg());
            return success();
          }
    
          op.replaceAllUsesWith(q.getArg());
          return success();
        }
        return failure();
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractor.java

                if (extractionContext.hasProblems()) {
                    throw new InvalidManagedModelElementTypeException(extractionContext);
                }
                if (extractionContext.getResult() != null) {
                    cache.set(type, extractionContext.getResult());
                    return;
                }
            }
    
            // Should never get here, the last strategy should be a catch all
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top