Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 129 for reportSet (0.05 seconds)

  1. guava-testlib/test/com/google/common/testing/anotherpackage/ForwardingWrapperTesterTest.java

          for (String message : expectedMessages) {
            assertThat(expected).hasMessageThat().contains(message);
          }
          return;
        }
        fail("expected failure not reported");
      }
    
      private class ForwardingRunnable implements Runnable {
    
        private final Runnable runnable;
    
        ForwardingRunnable(Runnable runnable) {
          this.runnable = runnable;
        }
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Jul 14 14:44:08 GMT 2025
    - 15.7K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                    problems.add(
                            0,
                            new DefaultModelProblem(
                                    "Too many model problems reported (listed problems are just a subset of reported problems)",
                                    org.apache.maven.model.building.ModelProblem.Severity.WARNING,
                                    null,
                                    null,
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 17:20:31 GMT 2025
    - 51.8K bytes
    - Click Count (0)
  3. cmd/global-heal.go

    				}
    				jt.Take()
    				go healEntry(bucket, *entry)
    			},
    			finished: func(errs []error) {
    				success := countErrs(errs, nil)
    				if success < len(disks)/2+1 {
    					retErr = fmt.Errorf("one or more errors reported during listing: %v", errors.Join(errs...))
    				}
    			},
    		})
    		jt.Wait() // synchronize all the concurrent heal jobs
    		if err != nil {
    			// Set this such that when we return this function
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Apr 04 13:49:12 GMT 2025
    - 16.2K bytes
    - Click Count (0)
  4. src/main/java/jcifs/SmbResource.java

         * <code>SmbResource</code> was modified. The value returned is suitable for
         * constructing a {@link java.util.Date} object (i.e. seconds since Epoch
         * 1970). Times should be the same as those reported using the properties
         * dialog of the Windows Explorer program.
         *
         * @return The number of milliseconds since the 00:00:00 GMT, January 1,
         *         1970 as a <code>long</code> value
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 28K bytes
    - Click Count (1)
  5. cmd/bucket-replication-metrics.go

    func newRateMeasurement(initTime time.Time) *rateMeasurement {
    	return &rateMeasurement{
    		startTime: initTime,
    	}
    }
    
    // incrementBytes add bytes reported for a bucket/target.
    func (m *rateMeasurement) incrementBytes(bytes uint64) {
    	atomic.AddUint64(&m.bytesSinceLastWindow, bytes)
    }
    
    // updateExponentialMovingAverage processes the measurements captured so far.
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Thu Aug 15 12:04:40 GMT 2024
    - 14.2K bytes
    - Click Count (0)
  6. cmd/metacache-stream.go

    		if w.reuseBlocks || o.reusable {
    			metaDataPoolPut(o.metadata)
    		}
    	}
    
    	return nil
    }
    
    // stream entries to the output.
    // The returned channel should be closed when done.
    // Any error is reported when closing the metacacheWriter.
    func (w *metacacheWriter) stream() (chan<- metaCacheEntry, error) {
    	if w.creator != nil {
    		err := w.creator()
    		w.creator = nil
    		if err != nil {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Wed May 07 15:37:12 GMT 2025
    - 19.5K bytes
    - Click Count (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java

         * This means that developer will either have to type groupId or wait for build execution of all modules which
         *   were fine, but they are still before one which reported errors.
         * <p>Then the returned value is {@code groupId:artifactId} when there is a name clash and
         * {@code :artifactId} if there is no conflict.
         * This method is made package-private for testing purposes.
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Sep 11 17:20:46 GMT 2025
    - 28.2K bytes
    - Click Count (0)
  8. impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java

                    .filter(rap -> !allAvailableProfiles.contains(rap))
                    .collect(toSet());
    
            if (!notFoundRequiredProfiles.isEmpty()) {
                // Use SLF4J formatter for consistency with warnings reported by logger
                final String message = MessageFormatter.format(
                                "The requested profiles {} could not be activated or deactivated because they do not"
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Mon May 05 16:58:52 GMT 2025
    - 28.7K bytes
    - Click Count (1)
  9. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/InferenceStrategyTest.java

                // - version should NOT be removed (external parents need version to be located)
                // This prevents the "parent.groupId is missing" error reported in issue #7934
                assertNotNull(parentElement.child("groupId").orElse(null));
                assertNotNull(parentElement.child("artifactId").orElse(null));
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 35.2K bytes
    - Click Count (0)
  10. CHANGELOG/CHANGELOG-1.34.md

      If the `DeclarativeValidation` feature gate was enabled, mismatches with existing validation are reported via metrics.
    Created: Fri Dec 26 09:05:12 GMT 2025
    - Last Modified: Wed Dec 10 01:13:50 GMT 2025
    - 333.3K bytes
    - Click Count (2)
Back to Top