Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 201 for getInner (0.21 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseJavaClassChangeIncrementalCompilationIntegrationTest.groovy

                            System.out.println(new WithInner1().getInner().foo());
                            System.out.println(new WithInner2().getInner().foo());
                        }
                    }
                """
            }
    
            void changeInnerName() {
                source """
                    class WithInner2 {
                        SomeInterface getInner() {
                            return new Inner2();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/rewrite_util.cc

                                                   mlir::OpResult dest) {
      CopyDeviceAndUnderscoredAttributesAdaptor(src.getOwner(), dest.getOwner());
    }
    
    void CopyDeviceAndUnderscoredAttributesAdaptor(mlir::Operation *src,
                                                   mlir::OpResult dest) {
      CopyDeviceAndUnderscoredAttributesAdaptor(src, dest.getOwner());
    }
    
    void CopyDeviceAndUnderscoredAttributesAdaptor(mlir::Operation *src,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/GroovyClassGeneratorUtils.java

                    CallableInfo callable = request.getInterceptedCallable();
                    CallableKindInfo kind = callable.getKind();
                    if (kind == CallableKindInfo.AFTER_CONSTRUCTOR) {
                        Type constructedType = request.getInterceptedCallable().getOwner().getType();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 13:39:36 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/InstantiatingBuildLoader.java

            ProjectState projectState = gradle.getOwner().getProjects().getProject(rootProjectDescriptor.path());
            projectState.createMutableModel(rootProjectClassLoaderScope, baseProjectClassLoaderScope);
            ProjectInternal rootProject = projectState.getMutableModel();
            gradle.setRootProject(rootProject);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 24 13:56:30 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/collection_ops_util.cc

        if (auto while_op = llvm::dyn_cast<TF::WhileOp>(use.getOwner())) {
          auto body = while_op.body_function();
          assert(body);
          auto type_from_body = GetElementTypeFromAccess(
              body.getArgument(use.getOperandNumber()), module, infer_from_op);
          if (type_from_body.has_value()) return type_from_body;
        } else if (auto if_op = llvm::dyn_cast<TF::IfOp>(use.getOwner())) {
          auto then_branch = if_op.then_function();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. 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)
  7. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/IgnoredTestDescriptorProvider.java

                Runner runner = getRunner(testClass);
                final Description runnerDescription = runner.getDescription();
                return runnerDescription.getChildren();
            } catch (Throwable throwable) {
                throw new TestSuiteExecutionException(String.format("Unable to process Ignored class %s.", className), throwable);
            }
        }
    
        private static Runner getRunner(Class<?> testClass) throws Throwable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/types/InstrumentedTypesResourceGenerator.java

            return interceptionRequests.stream()
                .filter(request -> request.getInterceptedCallable().getOwner().isInterceptSubtypes())
                .collect(Collectors.toList());
        }
    
        @Override
        public GenerationResult generateResourceForRequests(Collection<CallInterceptionRequest> filteredRequests) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphPathResolver.java

            List<ComponentIdentifier> rootPath = new ArrayList<>();
            rootPath.add(toNode.getOwner().getComponentId());
            shortestPaths.put(toNode.getOwner(), rootPath);
    
            Set<DependencyGraphComponent> directDependees = new LinkedHashSet<>();
            for (DependencyGraphNode node : fromNodes) {
                directDependees.add(node.getOwner());
            }
    
            Set<DependencyGraphComponent> seen = new HashSet<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. pkg/volume/util/hostutil/hostutil_unsupported.go

    }
    
    // EvalHostSymlinks always returns an error on unsupported platforms
    func (hu *HostUtil) EvalHostSymlinks(pathname string) (string, error) {
    	return "", errUnsupported
    }
    
    // GetOwner always returns an error on unsupported platforms
    func (hu *HostUtil) GetOwner(pathname string) (int64, int64, error) {
    	return -1, -1, errUnsupported
    }
    
    // GetSELinuxSupport always returns an error on unsupported platforms
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 10:17:38 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top