Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 776 for lazily (0.12 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractLazyModuleComponentResolveMetadata.java

    import java.util.Set;
    import java.util.function.Function;
    import java.util.stream.Collectors;
    
    /**
     * Common base class for the lazy versions of {@link ModuleComponentResolveMetadata} implementations.
     *
     * The lazy part is about the application of {@link VariantMetadataRules} which are applied lazily
     * when configuration or variant data is required by consumers.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

                    }
                    project(":a", "test:a:")
                }
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/25579")
        def "can lazily compute dependencies from results of another resolution which resolves current project"() {
            buildFile << """
                configurations {
                    a
                    b
                    create("default")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultScriptClassPathResolver.java

            Gradle gradle
        ) {
            this.instantiator = instantiator;
            // Shared services must be provided lazily, otherwise they are instantiated too early and some cases can fail
            this.instrumentationTransformRegisterer = new InstrumentationTransformRegisterer(agentStatus, Lazy.atomic().of(gradle::getSharedServices));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. pilot/pkg/xds/xdsgen.go

    	Component string
    	// The ID of the component instance
    	ID string
    	// The Istio version
    	Info istioversion.BuildInfo
    }
    
    // Evaluate the controlPlane lazily in order to allow "POD_NAME" env var setting after running the process.
    var controlPlane = lazy.New(func() (*core.ControlPlane, error) {
    	// The Pod Name (instance identity) is in PilotArgs, but not reachable globally nor from DiscoveryServer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Splitter.java

        return new Splitter(strategy, omitEmptyStrings, trimmer, limit);
      }
    
      /**
       * Splits {@code sequence} into string components and makes them available through an {@link
       * Iterator}, which may be lazily evaluated. If you want an eagerly computed {@link List}, use
       * {@link #splitToList(CharSequence)}. Java 8+ users may prefer {@link #splitToStream} instead.
       *
       * @param sequence the sequence of characters to split
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  6. src/internal/filepathlite/path.go

    package filepathlite
    
    import (
    	"errors"
    	"internal/stringslite"
    	"io/fs"
    	"slices"
    )
    
    var errInvalidPath = errors.New("invalid path")
    
    // A lazybuf is a lazily constructed path buffer.
    // It supports append, reading previously appended bytes,
    // and retrieving the final string. It does not allocate a buffer
    // to hold the output until that output diverges from s.
    type lazybuf struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixture.java

        private static Pattern patternForHeader(String header) {
            String pattern = "(?ms)";
            pattern += header;
            // Capture all output, lazily up until two new lines and an END_OF_TASK designation
            pattern += "([\\s\\S]*?(?=[^\\n]*?" + END_OF_GROUPED_OUTPUT + "))";
            return Pattern.compile(pattern);
        }
    
        private final LogContent originalOutput;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/ratcheting.go

    // call to `Validate` is thrown away at the end of the top-level call
    // to `Validate`.
    //
    // `Validate` will create a node in the tree to for each of the explored children.
    // The node's main purpose is to store a lazily computed DeepEqual check between
    // the oldValue and the currently passed value. If the check is performed, it
    // will be stored in the node to be re-used by a parent node during a DeepEqual
    // comparison, if necessary.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 21:17:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/labels.go

    type block struct {
    	parent *block                         // enclosing block
    	lstmt  *syntax.LabeledStmt            // labeled statement to which this block belongs, or nil
    	labels map[string]*syntax.LabeledStmt // allocated lazily
    }
    
    // insert records a new label declaration for the current block.
    // The label must not have been declared before in any block.
    func (b *block) insert(s *syntax.LabeledStmt) {
    	name := s.Label.Value
    	if debug {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. src/compress/gzip/gzip.go

    // compressed bytes are not necessarily flushed until the [Writer] is closed.
    func (z *Writer) Write(p []byte) (int, error) {
    	if z.err != nil {
    		return 0, z.err
    	}
    	var n int
    	// Write the GZIP header lazily.
    	if !z.wroteHeader {
    		z.wroteHeader = true
    		z.buf = [10]byte{0: gzipID1, 1: gzipID2, 2: gzipDeflate}
    		if z.Extra != nil {
    			z.buf[3] |= 0x04
    		}
    		if z.Name != "" {
    			z.buf[3] |= 0x08
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top