Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,115 for apiall (0.23 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/ClasspathFactory.java

            ImmutableList.Builder<ClasspathEntry> entries = ImmutableList.builder();
            entries.add(createOutput());
            entries.addAll(createSourceFolders());
            entries.addAll(createContainers());
            entries.addAll(createDependencies());
            entries.addAll(createClassFolders());
            return entries.build();
        }
    
        private ClasspathEntry createOutput() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

            List<File> modulePath = new ArrayList<>();
    
            if (runAsModule) {
                modulePath.addAll(workerMainClassPath);
            } else {
                classpath.addAll(workerMainClassPath);
            }
            modulePath.addAll(applicationModulePath);
            classpath.addAll(applicationClasspath);
    
            if (!modulePath.isEmpty() && implementationModulePath != null && !implementationModulePath.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/RecompilationSpec.java

            resourcesToGenerate.addAll(resources);
        }
    
        public Collection<GeneratedResource> getResourcesToGenerate() {
            return Collections.unmodifiableCollection(resourcesToGenerate);
        }
    
        public void addSourcePath(String sourcePath) {
            sourcePaths.add(sourcePath);
        }
    
        public void addSourcePaths(Set<String> sourcePath) {
            sourcePaths.addAll(sourcePath);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultTestLauncher.java

                    return new DefaultInternalJvmTestRequest(testClass, null, null);
                }
            });
            internalJvmTestRequests.addAll(newRequests);
            testClassNames.addAll(CollectionUtils.toList(testClasses));
            return this;
        }
    
        @Override
        public TestLauncher withJvmTestMethods(String testClass, String... methods) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/PrebuiltLibraryInitializer.java

            this.instantiator = instantiator;
            this.fileCollectionFactory = fileCollectionFactory;
            this.allPlatforms.addAll(allPlatforms);
            this.allPlatforms.addAll(nativePlatforms.defaultPlatformDefinitions());
            this.allBuildTypes.addAll(allBuildTypes);
            this.allFlavors.addAll(allFlavors);
        }
    
        @Override
        public void execute(PrebuiltLibrary prebuiltLibrary) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/google/MultisetAddTester.java

      }
    
      @CollectionFeature.Require(SUPPORTS_ADD)
      public void testAddAll_emptySet() {
        assertFalse(getMultiset().addAll(Collections.<E>emptySet()));
        expectUnchanged();
      }
    
      @CollectionFeature.Require(SUPPORTS_ADD)
      public void testAddAll_emptyMultiset() {
        assertFalse(getMultiset().addAll(getSubjectGenerator().create()));
        expectUnchanged();
      }
    
      @CollectionFeature.Require(SUPPORTS_ADD)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 4.2K bytes
    - Viewed (0)
  7. src/sync/map_test.go

    	opLoad,
    	opStore,
    	opLoadOrStore,
    	opLoadAndDelete,
    	opDelete,
    	opSwap,
    	opCompareAndSwap,
    	opCompareAndDelete,
    	opClear,
    }
    
    // mapCall is a quick.Generator for calls on mapInterface.
    type mapCall struct {
    	op   mapOp
    	k, v any
    }
    
    func (c mapCall) apply(m mapInterface) (any, bool) {
    	switch c.op {
    	case opLoad:
    		return m.Load(c.k)
    	case opStore:
    		m.Store(c.k, c.v)
    		return nil, false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 15:34:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSet.java

          super.addAll(elements);
          return this;
        }
    
        @CanIgnoreReturnValue
        Builder<E> combine(Builder<E> builder) {
          contents.addAll(builder.contents);
          return this;
        }
    
        @Override
        public ImmutableSet<E> build() {
          return copyOf(contents.iterator());
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/buildtree/DefaultBuildTreeFinishExecutor.java

            }
            finishFailures.addAll(finishResult.getFailures());
            boolean failed = reportableFailure != null;
    
            // These should run concurrently
            buildStateRegistry.visitBuilds(buildState -> {
                ExecutionResult<Void> result = buildState.beforeModelDiscarded(failed);
                finishFailures.addAll(result.getFailures());
            });
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 03 03:31:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

        public final void addAll(T... elements) {
            getConfigurer(false).addAll(elements);
        }
    
        @Override
        public void addAll(Iterable<? extends T> elements) {
            getConfigurer(false).addAll(elements);
        }
    
        @Override
        public void addAll(Provider<? extends Iterable<? extends T>> provider) {
            getConfigurer(false).addAll(provider);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top