Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,624 for lazily (0.31 sec)

  1. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmPluginServices.java

                    .collect(Collectors.toList());
            });
            return variant;
        }
    
        /**
         * A custom artifact type which allows the getFile call to be done lazily only when the
         * artifact is actually needed.
         */
        private static class LazyJavaDirectoryArtifact extends AbstractPublishArtifact {
            private final String type;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketWriter.kt

      private val messageBuffer = Buffer()
    
      /** The [Buffer] of [sink]. Write to this and then flush/emit [sink]. */
      private val sinkBuffer: Buffer = sink.buffer
      private var writerClosed = false
    
      /** Lazily initialized on first use. */
      private var messageDeflater: MessageDeflater? = null
    
      // Masks are only a concern for client writers.
      private val maskKey: ByteArray? = if (isClient) ByteArray(4) else null
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/common/maplist.go

    type emptyMapList struct{}
    
    func (emptyMapList) Get(interface{}) interface{} {
    	return nil
    }
    
    type mapListImpl struct {
    	sts Schema
    	ks  keyStrategy
    	// keyedItems contains all lazily keyed map items
    	keyedItems map[interface{}]interface{}
    	// unkeyedItems contains all map items that have not yet been keyed
    	unkeyedItems []interface{}
    }
    
    func (a *mapListImpl) Get(obj interface{}) interface{} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 02:56:51 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPsiJavaClassSymbol.kt

    import org.jetbrains.kotlin.name.ClassId
    import org.jetbrains.kotlin.name.Name
    
    /**
     * Implements [KaNamedClassOrObjectSymbol] for a Java class. The underlying [firSymbol] is built lazily and only when needed. Many simple
     * properties are computed from the given [PsiClass] instead of [firSymbol]. This improves performance when "slow" properties don't need to
     * be accessed.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. pkg/proxy/apis/config/v1alpha1/defaults.go

    		// condition that persists as long as the local side keeps the
    		// socket open. The condition is rare as it is typical in most
    		// protocols for both sides to issue a close; this typically
    		// occurs when the local socket is lazily garbage collected.
    		//
    		// If the CLOSE_WAIT conntrack entry expires, then FINs from the
    		// local socket will not be properly SNAT'd and will not reach the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. okhttp/src/main/kotlin/okhttp3/internal/url/-Url.kt

      limit: Int,
      encodeSet: String,
      alreadyEncoded: Boolean,
      strict: Boolean,
      plusIsSpace: Boolean,
      unicodeAllowed: Boolean,
      charset: Charset?,
    ) {
      var encodedCharBuffer: Buffer? = null // Lazily allocated.
      var codePoint: Int
      var i = pos
      while (i < limit) {
        codePoint = input.codePointAt(i)
        if (alreadyEncoded && (
            codePoint == '\t'.code || codePoint == '\n'.code ||
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/cel_validation.go

    	// should only be populated for schema nodes where this is true.
    	withinValidationRuleScope bool
    
    	// typeInfo is lazily loaded for schema nodes withinValidationRuleScope and may be
    	// populated one of two possible ways:
    	//   1. Using a typeInfoAccessor to access it from the parent's type info. This is a cheap operation and should be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  10. cluster/gce/gci/flexvolume_node_setup.sh

      exit 1
    }
    
    if [ -z "${MOUNTER_IMAGE}" ]; then
      echo "ERROR: No Container Registry mounter image is specified."
      echo
      usage
    fi
    
    # Unmounts a mount point lazily. If a mount point does not exist, continue silently,
    # and without error.
    umount_silent() {
      umount -l "$1" &> /dev/null || /bin/true
    }
    
    # Waits for kubelet to restart for 1 minute.
    kubelet_wait() {
      timeout=60
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 13 17:58:51 UTC 2020
    - 5.8K bytes
    - Viewed (0)
Back to top