Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 219 for tzset (0.06 sec)

  1. src/cmd/compile/internal/types2/interface.go

    	tset *_TypeSet // type set described by this interface, computed lazily
    }
    
    // typeSet returns the type set for interface t.
    func (t *Interface) typeSet() *_TypeSet { return computeInterfaceTypeSet(t.check, nopos, t) }
    
    // emptyInterface represents the empty interface
    var emptyInterface = Interface{complete: true, tset: &topTypeSet}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m5/ToolingApiBuildExecutionCrossVersionSpec.groovy

    task c
    '''
    
            when:
            GradleProject project = withConnection { connection -> connection.getModel(GradleProject.class) }
    
            then:
            project.tasks*.name.toSet() == (["a", "b", "c"] + rootProjectImplicitTasksForGradleProjectModel).toSet()
            def taskA = project.tasks.find { it.name == 'a' }
            taskA != null
            taskA.path == ':a'
            taskA.description == 'this is task a'
            taskA.project == project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/PredicatesFile.java

                        .map(name -> PREDICATE_PACKAGE_PREFIX + name)
                        .collect(Collectors.toCollection(TreeSet::new))
                    ).collect(Collectors.toSet());
            } catch (IOException e) {
                throw new RuntimeException("Error parsing resource " + resource, e);
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

            ["settingsPluginManagement", "settingsPlugins", "settingsConventions", "settings"].toSet() == settings.stepResults.keySet().collect { it.stepIdentifier.key }.toSet()
            ["project"].toSet() == project.stepResults.keySet().collect { it.stepIdentifier.key }.toSet()
    
            and: 'conventions get properly applied'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/scopes/KtFe10FileScope.kt

            }
        }
    
        override fun getCallableSymbols(names: Collection<Name>): Sequence<KaCallableSymbol> = withValidityAssertion {
            if (names.isEmpty()) return emptySequence()
            val namesSet = names.toSet()
            return getCallableSymbols { it in namesSet }
        }
    
        override fun getClassifierSymbols(nameFilter: KaScopeNameFilter): Sequence<KaClassifierSymbol> = withValidityAssertion {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/AbstractCppBinaryVisualStudioTargetBinary.java

            String architectureSuffix = Dimensions.createDimensionSuffix(getBinary().getTargetMachine().getArchitecture(), component.getBinaries().get().stream().map(CppBinary::getTargetMachine).map(TargetMachine::getArchitecture).collect(Collectors.toSet()));
    
            return buildType + operatingSystemFamilySuffix + architectureSuffix;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/AbstractInstrumentationProcessor.java

            return getSupportedAnnotations().stream().map(Class::getName).collect(Collectors.toSet());
        }
    
        private Set<Class<? extends Annotation>> getSupportedAnnotations() {
            return getExtensionsByType(ClassLevelAnnotationsContributor.class).stream()
                .flatMap(it -> it.contributeClassLevelAnnotationTypes().stream())
                .collect(Collectors.toSet());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. build-logic/packaging/src/main/kotlin/gradlebuild/instrumentation/tasks/InstrumentedSuperTypesMergeTask.kt

            return instrumentationMetadataDirs
                .map { it.resolve(INSTRUMENTED_CLASSES_FILE) }
                .filter { it.exists() }
                .flatMap { it.readLines() }
                .toSet()
        }
    
        private
        fun mergeSuperTypes(): Map<String, Set<String>> {
            // Merge all super types files into a single map
            val directSuperTypes = mutableMapOf<String, MutableSet<String>>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:00:26 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java

    import java.util.Collections;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.util.function.Predicate;
    
    import static java.util.stream.Collectors.toSet;
    
    /**
     * Container for storing the request from the user to activate or de-activate certain profiles and optionally fail the
     * build if those profiles do not exist.
     */
    public class ProfileActivation {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/AbstractPackageScopeTest.kt

            // Package scope tests may collect symbols from multiple files, so we need to allow all main test files.
            return testServices.ktTestModuleStructure.allMainKtFiles.toSet()
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top