Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 120 for getGoal (0.27 sec)

  1. src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsResponse.java

        public long getTookMs() {
            return tookMs;
        }
    
        public List<String> getWords() {
            return words;
        }
    
        public int getNum() {
            return num;
        }
    
        public long getTotal() {
            return total;
        }
    
        public List<SuggestItem> getItems() {
            return items;
        }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. tensorflow/c/eager/abstract_op_attrs.h

          tensorflow::NameAttrList* name_and_attrs) const = 0;
    
      virtual bool GetInt(absl::string_view, int64_t* result) const = 0;
      virtual bool GetFloat(absl::string_view attr_name, float* result) const = 0;
      virtual bool GetBool(absl::string_view attr_name, bool* result) const = 0;
      virtual bool GetType(absl::string_view attr_name, DataType* result) const = 0;
      virtual Status GetTypeList(
          absl::string_view attr_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 26 22:20:27 UTC 2021
    - 2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/internal/DefaultStatusEvent.java

        }
    
        @Override
        public long getProgress() {
            return progress;
        }
    
        @Override
        public long getTotal() {
            return total;
        }
    
        @Override
        public String getUnit() {
            return unit;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/StatusEvent.java

        /**
         * The total amount of work that the build operation is in the progress of performing, or -1 if not known.
         *
         * @return The total amount of work, or -1 if not known.
         */
        long getTotal();
    
        /**
         * The measure used to express the amount of work.
         *
         * @return The measure used to express the amount of work.
         */
        String getUnit();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. cmd/bucket-stats.go

    }
    
    func (rl *ReplicationLastMinute) String() string {
    	t := rl.LastMinute.getTotal()
    	return fmt.Sprintf("ReplicationLastMinute sz= %d, n=%d , dur=%d", t.Size, t.N, t.Total)
    }
    
    func (rl *ReplicationLastMinute) getTotal() AccElem {
    	return rl.LastMinute.getTotal()
    }
    
    // ReplicationLastHour keeps track of replication counts over the last hour
    type ReplicationLastHour struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/DefaultAvailableOsMemoryStatusAspect.java

            this.name = name;
            this.total = total;
            this.free = free;
        }
    
        @Override
        public String getName() {
            return name;
        }
    
        @Override
        public long getTotal() {
            return total;
        }
    
        @Override
        public long getFree() {
            return free;
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/loadbalancer/fuzz_test.go

    		if err != nil {
    			return
    		}
    
    		localityLB := &v1alpha3.LocalityLoadBalancerSetting{}
    		err = ff.GenerateStruct(localityLB)
    		if err != nil {
    			return
    		}
    
    		enableFailover, err := ff.GetBool()
    		if err != nil {
    			return
    		}
    		ApplyLocalityLoadBalancer(loadAssignment, wrappedLocalityLbEndpoints, locality, proxyLabels, localityLB, enableFailover)
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/OsMemoryStatusAspect.java

            /**
             * Get the total memory of this category in bytes.
             *
             * @return the total memory of this category in bytes
             */
            long getTotal();
    
            /**
             * Get the free memory of this category in bytes.
             *
             * @return the free memory of this category in bytes
             */
            long getFree();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/FinalizeBuildCacheConfigurationBuildOperationType.java

        }
    
        public interface Result {
    
            boolean isEnabled();
    
            boolean isLocalEnabled();
    
            boolean isRemoteEnabled();
    
            @Nullable
            BuildCacheDescription getLocal();
    
            @Nullable
            BuildCacheDescription getRemote();
    
            interface BuildCacheDescription {
    
                /**
                 * The class name of the DSL configuration type.
                 *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/project/canonical/CanonicalProjectBuilderTest.java

            List<PluginExecution> executions = plugin.getExecutions();
    
            PluginExecution execution = executions.get(0);
    
            String g0 = execution.getGoals().get(0);
    
            assertEquals("plexus:runtime", g0);
    
            configuration = execution.getDelegate().getConfiguration();
    
            assertEquals(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top