Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for getGoal (0.13 sec)

  1. src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java

            this.client = client;
            this.settings = settings;
            this.indexName = indexName;
            this.supportedFields = settings.array().get(SuggestSettings.DefaultKeys.SUPPORTED_FIELDS);
            this.totalDocNum = getTotal();
        }
    
        @Override
        public synchronized Map<String, Object> read() {
            while (!isFinished.get() && queue.isEmpty()) {
                addDocumentToQueue();
            }
    
            return queue.poll();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. 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)
  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. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apiserver/pkg/cel/openapi/extensions.go

    	"k8s.io/kube-openapi/pkg/validation/spec"
    )
    
    var intOrStringFormat = intstr.IntOrString{}.OpenAPISchemaFormat()
    
    func isExtension(schema *spec.Schema, key string) bool {
    	v, ok := schema.Extensions.GetBool(key)
    	return v && ok
    }
    
    func isXIntOrString(schema *spec.Schema) bool {
    	// built-in types have the Format while CRDs use extension
    	// both are valid, checking both
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 21:26:55 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/Lifecycle.java

            Map<String, List<String>> goals = new HashMap<>();
            lifecycle.phases().forEach(phase -> phase.plugins()
                    .forEach(plugin -> plugin.getExecutions().forEach(exec -> exec.getGoals()
                            .forEach(goal -> goals.computeIfAbsent(phase.name(), n -> new ArrayList<>())
                                    .add(plugin.getGroupId() + ":" + plugin.getArtifactId() + ":" + plugin.getVersion()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top