Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,797 for usedBy (0.12 sec)

  1. src/encoding/hex/hex.go

    		return
    	}
    	h.closed = true
    	if h.used == 0 {
    		return
    	}
    	h.buf[0] = ' '
    	h.buf[1] = ' '
    	h.buf[2] = ' '
    	h.buf[3] = ' '
    	h.buf[4] = '|'
    	nBytes := h.used
    	for h.used < 16 {
    		l := 3
    		if h.used == 7 {
    			l = 4
    		} else if h.used == 15 {
    			l = 5
    		}
    		_, err = h.w.Write(h.buf[:l])
    		if err != nil {
    			return
    		}
    		h.used++
    	}
    	h.rightChars[nBytes] = '|'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:30:23 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/PersistentCache.java

         */
        @Override
        File getBaseDir();
    
        /**
         * Creates an indexed cache implementation that is contained within this cache. This method may be used at any time.
         *
         * <p>The returned cache may only be used by an action being run from {@link #useCache(java.util.function.Supplier)}.
         * In this instance, an exclusive lock will be held on the cache.
         *
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 07:59:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. pkg/volume/volume.go

    	// used, available space).
    	MetricsProvider
    }
    
    // MetricsProvider exposes metrics (e.g. used,available space) related to a
    // Volume.
    type MetricsProvider interface {
    	// GetMetrics returns the Metrics for the Volume. Maybe expensive for
    	// some implementations.
    	GetMetrics() (*Metrics, error)
    }
    
    // Metrics represents the used and available bytes of the Volume.
    type Metrics struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/tooling-api-provider/src/main/java/org/gradle/tooling/internal/provider/DefaultConnection.java

        private GradleVersion consumerVersion;
    
        /**
         * This is used by consumers 1.0-milestone-3 and later
         */
        public DefaultConnection() {
            LOGGER.debug("Tooling API provider {} created.", GradleVersion.current().getVersion());
        }
    
        /**
         * This is used by consumers 1.2-rc-1 and later.
         */
        @Override
        public void configure(ConnectionParameters parameters) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProviderConventionMappingIntegrationTest.groovy

        }
    
        def "emits deprecation warning when convention mapping is used with Provider"() {
            buildFile << """
                abstract class MyTask extends DefaultTask {
                    @Inject abstract ProviderFactory getProviderFactory()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 12:27:37 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/builtins0.go

    	close(r /* ERROR "receive-only channel" */)
    	close(c)
    	_ = close /* ERROR "used as value" */ (c)
    
    	var s []chan int
    	close(s... /* ERROR "invalid use of ..." */ )
    }
    
    func close2() {
    	f1 := func() (ch chan int) { return }
    	f2 := func() (ch chan int, x int) { return }
    	close(f0 /* ERROR "used as value" */ ())
    	close(f1())
    	close(f2()) // ERROR "too many arguments"
    }
    
    func complex1() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  7. pilot/docker/Dockerfile.ztunnel

    # BASE_DISTRIBUTION is used to switch between the old base distribution and distroless base images
    ARG BASE_DISTRIBUTION=debug
    
    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 944 bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationValue.kt

    }
    
    public typealias KtKClassAnnotationValue = KaKClassAnnotationValue
    
    /**
     * Some enum entry (enum constant) used as annotation argument. E.g: `@A(Color.RED)`
     */
    public class KaEnumEntryAnnotationValue @KaAnalysisApiInternals constructor(
        /**
         * Fully qualified name of used enum entry.
         */
        callableId: CallableId?,
        sourcePsi: KtElement?,
        token: KaLifetimeToken
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileLockManager.java

         * @param target The file to be locked.
         * @param options The lock options.
         * @param targetDisplayName A display name for the target file. This is used in log and error messages.
         * @param operationDisplayName A display name for the operation being performed on the target file. This is used in log and error messages.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annnotations.kt

    @Target(AnnotationTarget.CLASS, AnnotationTarget.PROPERTY, AnnotationTarget.FUNCTION, AnnotationTarget.TYPEALIAS)
    @RequiresOptIn("Internal Analysis API component which is used from other modules in the Kotlin project and is not supposed to be used anywhere else since it has no compatibility guarantees")
    public annotation class KaAnalysisNonPublicApi
    
    @Suppress("OPT_IN_MARKER_CAN_ONLY_BE_USED_AS_ANNOTATION_OR_ARGUMENT_IN_OPT_IN")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top