Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,951 for happen (0.1 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/StackTraceFilter.java

                if (filterSpec.isSatisfiedBy(element)) {
                    filtered.add(element);
                }
            }
            // If none of the lines match the filter, keep the original stacktrace
            // It might happen when test method was inherited from a base class.
            // In that case, "derived" test class never appears in the stacktrace,
            // and it is better to show the stacktrace as is rather than truncate it completely.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/internal/coverage/cfile/apis.go

    	// inconsistency similar to the one above. Hence the requirement
    	// for atomic counter mode: according to package atomic docs,
    	// "...operations that happen in a specific order on one thread,
    	// will always be observed to happen in exactly that order by
    	// another thread". Thus we can be sure that there will be no
    	// inconsistency when reading the counter array from the thread
    	// running ClearCounters.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/bug_report.yaml

          required: true
    
      - type: textarea
        attributes:
          label: Expected Behavior
          description: What did you expect to happen?
        validations:
          required: true
    
      - type: textarea
        attributes:
          label: Actual Behavior
          description: What actually happened?
        validations:
          required: true
    
      - type: dropdown
        attributes:
          label: Packages
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 27 19:53:41 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/IncompatibleDependencyAttributesMessageBuilder.java

            TreeFormatter fmt = new TreeFormatter();
            fmt.node("Cannot select a variant of '" + module.getId());
            fmt.append("' because different values for attribute '");
            fmt.append(attribute.toString());
            fmt.append("' are requested");
            fmt.startChildren();
            Set<EdgeState> incomingEdges = module.getIncomingEdges();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/BuildCommandOnly.java

            if (!(command instanceof Build)) {
                throw new IllegalStateException(String.format("%1$s command action received a command that isn't Build (command is %2$s), this shouldn't happen", this.getClass(), command.getClass()));
            }
    
            doBuild(execution, (Build)command);
        }
    
        /**
         * Note that the build param is the same object as execution.getCommand(), just “pre casted”.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ResolvedVariantSet.java

         */
        Set<ResolvedVariant> getVariants();
    
        /**
         * The provider may have been selected thanks to a different attribute set than the one from
         * the consuming configuration. This can happen whenever a dependency has additional attributes,
         * in which case it may override attributes from the configuration itself.
         *
         * @return attributes which will override the consumer attributes
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/generators/go122-confuse-seq-across-generations.go

    // event before advancing into the next generation at all.
    // It turns out this situation is pretty rare; the GoStatus
    // event almost always shows up first in practice. But it
    // can and did happen.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g1 := t.Generation(1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. src/crypto/cipher/io.go

    	Err error // unused
    }
    
    func (w StreamWriter) Write(src []byte) (n int, err error) {
    	c := make([]byte, len(src))
    	w.S.XORKeyStream(c, src)
    	n, err = w.W.Write(c)
    	if n != len(src) && err == nil { // should never happen
    		err = io.ErrShortWrite
    	}
    	return
    }
    
    // Close closes the underlying Writer and returns its Close return value, if the Writer
    // is also an io.Closer. Otherwise it returns nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/resolver/OncePerBuildInvocationVcsVersionWorkingDirResolver.java

    import java.io.File;
    import java.util.function.Supplier;
    
    /**
     * Ensures that a given resolution from (repo + selector) -&gt; working dir is performed once per build invocation. Allows resolution for different repos to happen in parallel.
     */
    @ThreadSafe
    public class OncePerBuildInvocationVcsVersionWorkingDirResolver implements VcsVersionWorkingDirResolver {
        private final ProducerGuard<String> perRepoGuard = ProducerGuard.adaptive();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/Result.java

         *
         * <ul>
         *     <li>reused work could have happened on a remote machine with different hardware capabilities,</li>
         *     <li>there might have been more or less load on the machine producing the reused work,</li>
         *     <li>the work reused might have been executed incrementally,</li>
         *     <li>had there been no work to reuse, the local execution might have happened happen incrementally.</li>
         * </ul>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top