Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Bush (0.12 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/InvalidManagedModelElementTypeException.java

            Deque<String> descriptions = new LinkedList<>();
            DefaultModelSchemaExtractionContext<?> current = extractionContext;
            while (current != null) {
                descriptions.push(current.getDescription());
                current = current.getParent();
            }
    
            out.append(descriptions.pop());
            out.append('\n');
    
            while (!descriptions.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java

            }
            findAnnotations(typeDeclaration, currentClass);
    
            allClasses.add(currentClass);
            repository.put(className, currentClass);
    
            classStack.push(currentClass);
            action.run();
            classStack.pop();
        }
    
        private ClassMetaData getCurrentClass() {
            return classStack.peek();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 21 13:27:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/RuleContext.java

        @Nullable
        public static ModelRuleDescriptor get() {
            return STACK.get().peek();
        }
    
        public static void run(ModelRuleDescriptor descriptor, Runnable runnable) {
            STACK.get().push(descriptor);
            try {
                runnable.run();
            } finally {
                STACK.get().pop();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/PathVisitor.java

            FileVisitDetails details = getFileVisitDetails(dir, attrs);
            if (directoryDetailsHolder.size() == 0 || shouldVisit(details)) {
                directoryDetailsHolder.push(details);
                if (directoryDetailsHolder.size() > 1 && !postfix) {
                    visitor.visitDir(details);
                }
                return checkStopFlag();
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/EvaluationContext.java

            @Nullable
            private final PerThreadContext parent;
    
            public PerThreadContext(@Nullable PerThreadContext parent) {
                this.parent = parent;
            }
    
            private void push(EvaluationOwner owner) {
                if (objectsInScope.add(owner)) {
                    evaluationStack.add(owner);
                } else {
                    throw prepareException(owner);
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

            methodVisitor.visitVarInsn(ALOAD, 1); // put var #1 ('foo') on the stack
            methodVisitor.visitLdcInsn(boxedType); // push the constant Class onto the stack
            methodVisitor.visitInsn(propertyClass.isPrimitive() ? ICONST_1 : ICONST_0); // push int 1 or 0 (interpreted as true or false) onto the stack
            Label startTry = new Label();
            methodVisitor.visitLabel(startTry);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
Back to top