Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 120 for getUses (0.14 sec)

  1. guava-testlib/src/com/google/common/collect/testing/testers/AbstractSetTester.java

       * collection in setUp(), but that caused problems when a tester changed the
       * value of set or collection but not both.
       */
      protected final Set<E> getSet() {
        return (Set<E>) collection;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionStats.java

        }
    
        private static long calculateAverageUsage(Collection<GarbageCollectionEvent> events) {
            long sum = 0;
            for (GarbageCollectionEvent event : events) {
                sum += event.getUsage().getUsed();
            }
            return sum / events.size();
        }
    
        private static long findMaxSize(Collection<GarbageCollectionEvent> events) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildInitializer.java

         */
        Set<ModularizationOption> getModularizationOptions();
    
        /**
         * Returns the set of DSLs supported for this type of project, in display order.
         */
        Set<BuildInitDsl> getDsls();
    
        /**
         * The preferred DSL to use for this type of project.
         */
        BuildInitDsl getDefaultDsl();
    
        /**
         * Does a project name make sense for this type of project?
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/UserService.java

                op.rangeSize(fessConfig.getPagingPageRangeSizeAsInteger());
            }).createPageNumberList());
    
            return userList;
        }
    
        public OptionalEntity<User> getUser(final String id) {
            return userBhv.selectByPK(id).map(u -> ComponentUtil.getAuthenticationManager().load(u));
        }
    
        public OptionalEntity<User> getUserByName(final String username) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/testers/NavigableSetNavigationTester.java

      private List<E> values;
      private E a;
      private E b;
      private E c;
    
      @Override
      public void setUp() throws Exception {
        super.setUp();
        navigableSet = (NavigableSet<E>) getSet();
        values =
            Helpers.copyToList(
                getSubjectGenerator()
                    .getSampleElements(getSubjectGenerator().getCollectionSize().getNumElements()));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyJavaInterOpIntegrationTest.groovy

                    @Internal
                    public ListProperty<Integer> getList() {
                        return list;
                    }
    
                    @Internal
                    public SetProperty<Integer> getSet() {
                        return set;
                    }
    
                    @Internal
                    public MapProperty<Integer, Boolean> getMap() {
                        return map;
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/scopeids/DefaultPersistentScopeIdLoader.java

            this.buildTreeScopedCacheBuilderFactory = buildTreeScopedCacheBuilderFactory;
            this.generator = generator;
            this.storeFactory = storeFactory;
        }
    
        @Override
        public UserScopeId getUser() {
            UniqueId uniqueId = get(new ScopeParams(userScopeCacheScopeMarker(), USER_ID_FILENAME, "User ID"));
            return new UserScopeId(uniqueId);
        }
    
        @Override
        public WorkspaceScopeId getWorkspace() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 10 18:14:29 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/device_index_selector.cc

        // future.
        OpBuilder b(op);
        RankedTensorType type = RankedTensorType::get({}, b.getIntegerType(32));
        int index = op.getDeviceNames().size();
        for (auto use : op.getOperation()->getUsers()) {
          // Skip if it doesn't feed into case. Alternatively this could always
          // return the CPU device index if it exists.
          if (!isa<TF::CaseOp>(use)) return;
        }
        DenseElementsAttr attr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultConfigurableFilePermissions.java

            this.other = objectFactory.newInstance(DefaultConfigurableUserClassFilePermissions.class, getOtherPartOf(unixNumeric));
        }
    
        @Override
        public ConfigurableUserClassFilePermissions getUser() {
            return user;
        }
    
        @Override
        public void user(Action<? super ConfigurableUserClassFilePermissions> configureAction) {
            configureAction.execute(user);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/dtyp/SecurityDescriptor.java

        }
    
    
        /**
         * @return the type
         */
        public final int getType () {
            return this.type;
        }
    
    
        /**
         * @return the aces
         */
        public final ACE[] getAces () {
            return this.aces;
        }
    
    
        /**
         * @return the ownerGroupSid
         */
        public final SID getOwnerGroupSid () {
            return this.ownerGroupSid;
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.4K bytes
    - Viewed (0)
Back to top