Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 155 for getHits (0.14 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/AbstractHeaderExportingDependentSourceSet.java

        private final List<Object> libs = new ArrayList<Object>();
        private String preCompiledHeader;
        private File prefixHeaderFile;
    
        @Override
        public Collection<?> getLibs() {
            return libs;
        }
    
        @Override
        public void lib(Object library) {
            if (library instanceof Iterable<?>) {
                Iterable<?> iterable = (Iterable) library;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/AbstractLinkTask.java

        }
    
        /**
         * The library files to be passed to the linker.
         */
        @PathSensitive(PathSensitivity.RELATIVE)
        @InputFiles
        public ConfigurableFileCollection getLibs() {
            return libs;
        }
    
        public void setLibs(FileCollection libs) {
            this.libs.setFrom(libs);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/descriptor/FlatDirRepositoryDescriptor.java

            this.backingDescriptor = backingDescriptor;
        }
    
        @Override
        public Type getType() {
            return Type.FLAT_DIR;
        }
    
        public ImmutableList<File> getDirs() {
            return dirs;
        }
    
        public IvyRepositoryDescriptor getBackingDescriptor() {
            return backingDescriptor;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/testers/ListHashCodeTester.java

        }
        assertEquals(
            "A List's hashCode() should be computed from those of its elements.",
            expectedHashCode,
            getList().hashCode());
      }
    
      /**
       * Returns the {@link Method} instance for {@link #testHashCode()} so that list tests on
       * unhashable objects can suppress it with {@code FeatureSpecificTestSuiteBuilder.suppressing()}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. hack/get-build.sh

      echo '    - "release/latest"'
      echo '    - "ci/latest"'
      echo '  See the docs on getting builds for more information about version'
      echo '  publication.'
    }
    
    print_version=false
    
    while getopts ":vh" opt; do
      case ${opt} in
        v)
          print_version="true"
          ;;
        h)
          usage
          exit 0
          ;;
        \?)
          echo "Invalid option: -$OPTARG" >&2
          usage
          exit 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeBinarySpecInternal.java

        void setResolver(NativeDependencyResolver resolver);
    
        void setFileCollectionFactory(FileCollectionFactory fileCollectionFactory);
    
        File getPrimaryOutput();
    
        Collection<NativeDependencySet> getLibs(DependentSourceSet sourceSet);
    
        Collection<NativeLibraryBinary> getDependentBinaries();
    
        /**
         * Adds some files to include as input to the link/assemble step of this binary.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/language/nativeplatform/DependentSourceSet.java

     */
    @Incubating
    @HasInternalProtocol
    public interface DependentSourceSet extends LanguageSourceSet {
        /**
         * The libraries that this source set requires.
         */
        Collection<?> getLibs();
    
        /**
         * Adds a library that this source set requires. This method accepts the following types:
         *
         * <ul>
         *     <li>A {@link org.gradle.nativeplatform.NativeLibrarySpec}</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/CrudTestBase.java

        }
    
        protected List<Map<String, Object>> getItemList(final Map<String, Object> body) {
            String response = checkGetMethod(body, getListEndpointSuffix()).asString();
            return JsonPath.from(response).getList(getJsonPath());
        }
    
        protected List<String> getIdList(final Map<String, Object> body) {
            return getPropList(body, getIdKey());
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/InstallExecutable.java

                return null;
            }
        }
    
        /**
         * The library files that should be installed.
         */
        @PathSensitive(PathSensitivity.RELATIVE)
        @InputFiles
        public FileCollection getLibs() {
            return libs;
        }
    
        public void setLibs(FileCollection libs) {
            this.libs.setFrom(libs);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/modelRules/modelDsl/groovy/build.gradle

    @Managed
    interface Address {
        String getCity()
        void setCity(String city)
    }
    
    @Managed
    interface Person {
        String getFirstName()
        void setFirstName(String n)
    
        String getLastName()
        void setLastName(String n)
    
        Address getAddress()
    }
    
    class PersonRules extends RuleSource {
        @Model
        void people(ModelMap<Person> people) {
        }
    }
    
    apply plugin: PersonRules
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top