Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 260 for getCond (0.29 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

                }
    
                statement.execute();
                try (ResultSet keys = statement.getGeneratedKeys()) {
                    keys.next();
                    return keys.getLong(1);
                }
            }
        }
    
        private static BigDecimal getMedianInMillis(MeasuredOperationList operations) {
            Amount<Duration> median = operations.getTotalTime().getMedian();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/memorymanager/policy_static_test.go

    					},
    					Cells: []int{},
    				},
    			},
    			systemReserved: systemReservedMemory{
    				0: map[v1.ResourceName]uint64{
    					v1.ResourceMemory: 512 * mb,
    				},
    			},
    			pod:                   getPod("pod1", "container1", requirementsBurstable),
    			expectedTopologyHints: nil,
    			topologyHint:          &topologymanager.TopologyHint{},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/AbstractWritableResultsStore.groovy

                            OperatingSystem os = OperatingSystem.valueOf(experimentTimes.getString(++resultIdx))
                            long avgDuration = experimentTimes.getLong(++resultIdx)
                            if (testProject != null && testClass != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/AbstractInstrumentationProcessor.java

            return annotatedClassElements
                .flatMap(element -> element.getKind() == ElementKind.METHOD ? Stream.of(element) : element.getEnclosedElements().stream())
                .filter(it -> it.getKind() == ElementKind.METHOD)
                .map(it -> (ExecutableElement) it)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyArtifact.java

         * A <code>null</code> value (the default) indicates that this artifact will be published without a conf attribute.
         * @return The value of 'conf' for this artifact.
         */
        @Nullable
        String getConf();
    
        /**
         * Sets a comma separated list of public configurations in which this artifact is published.
         * The '*' wildcard can be used to designate that the artifact is published in all public configurations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/ElementUtils.java

            }
            Set<String> typeNames = new LinkedHashSet<>();
            for (Element element : originatingElements) {
                // TODO: Support for modules
                if (!element.getKind().name().equals("MODULE")) {
                    String topLevelTypeName = getTopLevelTypeName(element);
                    typeNames.add(topLevelTypeName);
                }
            }
            return typeNames;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/modelreader/impl/AnnotationCallInterceptionRequestReaderImpl.java

    public class AnnotationCallInterceptionRequestReaderImpl implements AnnotatedMethodReaderExtension {
    
        @Override
        public Collection<Result> readRequest(ExecutableElement input) {
            if (input.getKind() != ElementKind.METHOD) {
                return emptyList();
            }
    
            if (!input.getModifiers().containsAll(Arrays.asList(Modifier.STATIC, Modifier.PUBLIC))) {
                return emptyList();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 09:48:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/tasks/IvyDescriptorFileGenerator.java

                        .attribute("name", artifact.getName())
                        .attribute("type", artifact.getType())
                        .attribute("ext", artifact.getExtension())
                        .attribute("conf", artifact.getConf())
                        .attribute("m:classifier", artifact.getClassifier())
                        .endElement();
                }
                xmlWriter.endElement();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

     * the License.
     */
    
    package com.google.common.util.concurrent;
    
    import static com.google.common.base.Preconditions.checkNotNull;
    import static com.google.common.util.concurrent.Futures.getDone;
    import static com.google.common.util.concurrent.MoreExecutors.rejectionPropagatingExecutor;
    import static com.google.common.util.concurrent.Platform.restoreInterruptIfIsInterruptedException;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/ListeningExecutorServiceTest.java

        Set<Callable<String>> tasks = Collections.singleton(() -> "invokeAll");
    
        List<Future<String>> result = executorService.invokeAll(tasks, Duration.ofDays(365));
    
        assertThat(result).hasSize(1);
        assertThat(Futures.getDone(result.get(0))).isEqualTo("invokeAll");
        assertThat(recordedTasks).isSameInstanceAs(tasks);
        assertThat(recordedTimeUnit).isEqualTo(NANOSECONDS);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 02 12:45:23 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top