Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 6,499 for happen (0.12 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentMetadataVersionLister.java

     * returning the list of versions of a module which are available in a specific
     * repository. For this, Gradle is going to call the lister once for each module
     * it needs the list of versions. This will typically happen in case a dynamic
     * version is requested, in which case we need to know the list of versions
     * published for this module. It will not, however, be called for fixed version
     * numbers.
     *
     * @since 4.9
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. .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)
  5. 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)
  6. src/runtime/error.go

    	boundsSliceB    // s[x:y], 0 <= x <= y failed (but boundsSliceA didn't happen)
    
    	boundsSlice3Alen // s[?:?:x], 0 <= x <= len(s) failed
    	boundsSlice3Acap // s[?:?:x], 0 <= x <= cap(s) failed
    	boundsSlice3B    // s[?:x:y], 0 <= x <= y failed (but boundsSlice3A didn't happen)
    	boundsSlice3C    // s[x:y:?], 0 <= x <= y failed (but boundsSlice3A/B didn't happen)
    
    	boundsConvert // (*[x]T)(s), 0 <= x <= len(s) failed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top