Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,797 for usedBy (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    * types used in super classes or interfaces
    * types used in public method parameters, including generic parameter types (where _public_ is something that is visible to compilers. I.e. , _public_, _protected_ and _package private_ members in the Java world)
    * types used in public fields
    * public annotation types
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  2. subprojects/core/src/testFixtures/groovy/org/gradle/process/ShellScript.groovy

         * The resulting list can be used as an argument for the {@link ProcessBuilder} or Groovy's {@code execute} method.
         * The first element of the list is the command interpreter (sh or cmd depending on the platform).
         * The list also contains a path to the script relative to {@code baseDir}.
         * This means that {@code baseDir} has to be used as a current dir when executing the command,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/project/CrossProjectModelAccess.java

         *
         * @param referrer The project from which the return value will be used.
         * @param path absolute path
         */
        @Nullable
        ProjectInternal findProject(ProjectInternal referrer, ProjectInternal relativeTo, String path);
    
        /**
         * @param referrer The project from which the return value will be used.
         */
        ProjectInternal access(ProjectInternal referrer, ProjectInternal project);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 04:11:36 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtExpressionInfoProvider.kt

        /**
         * Compute if the value of a given expression is possibly used. Or,
         * conversely, compute whether the value of an expression is *not* safe to
         * discard.
         *
         * E.g. `x` in the following examples *are* used (`x.isUsedAsExpression() == true`)
         *   - `if (x) { ... } else { ... }`
         *   - `val a = x`
         *   - `x + 8`
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. pkg/kubelet/server/stats/volume_stat_calculator_test.go

    	capacity := uint64(metric.Capacity.Value())
    	used := uint64(metric.Used.Value())
    	inodes := uint64(metric.Inodes.Value())
    	inodesFree := uint64(metric.InodesFree.Value())
    	inodesUsed := uint64(metric.InodesUsed.Value())
    	return kubestats.FsStats{
    		AvailableBytes: &available,
    		CapacityBytes:  &capacity,
    		UsedBytes:      &used,
    		Inodes:         &inodes,
    		InodesFree:     &inodesFree,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/sha3/shake.go

    // Its generic security strength is 128 bits against all attacks if at
    // least 32 bytes of its output are used.
    func NewShake128() ShakeHash {
    	return newShake128()
    }
    
    // NewShake256 creates a new SHAKE256 variable-output-length ShakeHash.
    // Its generic security strength is 256 bits against all attacks if
    // at least 64 bytes of its output are used.
    func NewShake256() ShakeHash {
    	return newShake256()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. fastapi/applications.py

                    """
                    A list of tags used by OpenAPI, these are the same `tags` you can set
                    in the *path operations*, like:
    
                    * `@app.get("/users/", tags=["users"])`
                    * `@app.get("/items/", tags=["items"])`
    
                    The order of the tags can be used to specify the order shown in
                    tools like Swagger UI, used in the automatic path `/docs`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/component/SoftwareComponentFactory.java

     * plugins a way to create software components. Currently the
     * software factory only allows the creation of adhoc software
     * components which can be used for publishing simple components.
     *
     * This is the case whenever there's no component model to be
     * used and that the plugin can solely rely on outgoing variants
     * to publish variants.
     *
     * @since 5.3
     */
    @ServiceScope(Scope.Global.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/JvmConstants.java

        /**
         * The name of the runtime only dependencies configuration, used to declare dependencies
         * that should only be found at runtime.
         *
         * @since 3.4
         */
        public static final String RUNTIME_ONLY_CONFIGURATION_NAME = "runtimeOnly";
    
        /**
         * The name of the runtime classpath configuration, used by a component to query its own runtime classpath.
         *
         * @since 3.4
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. src/runtime/rand.go

    // For example Linux passes 16 bytes in the auxv vector.
    var startupRand []byte
    
    // globalRand holds the global random state.
    // It is only used at startup and for creating new m's.
    // Otherwise the per-m random state should be used
    // by calling goodrand.
    var globalRand struct {
    	lock  mutex
    	seed  [32]byte
    	state chacha8rand.State
    	init  bool
    }
    
    var readRandomFailed bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top