Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 308 for Accessible (0.29 sec)

  1. android/guava/src/com/google/common/collect/MutableClassToInstanceMap.java

       * Returns a new {@code MutableClassToInstanceMap} instance backed by a given empty {@code
       * backingMap}. The caller surrenders control of the backing map, and thus should not allow any
       * direct references to it to remain accessible.
       */
      public static <B extends @Nullable Object> MutableClassToInstanceMap<B> create(
          Map<Class<? extends @NonNull B>, B> backingMap) {
        return new MutableClassToInstanceMap<>(backingMap);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java

                         * plugins, yet the components provided by the extension (e.g. artifact handlers) must be
                         * accessible, i.e. we still must import the extension realm into the project realm.
                         */
                        exports = Arrays.asList(extensionRealm.getId());
                    }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    type Encoder struct {
    	scopeMemo map[*types.Scope][]types.Object // memoization of scopeObjects
    }
    
    // For returns the path to an object relative to its package,
    // or an error if the object is not accessible from the package's Scope.
    //
    // The For function guarantees to return a path only for the following objects:
    // - package-level types
    // - exported package-level non-types
    // - methods
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ConfigurationContainer.java

     * or using the {@code configurations} property in your build script.</p>
     *
     * <p>The configurations in a container are accessible as read-only properties of the container, using the name of the
     * configuration as the property name. For example:</p>
     *
     * <pre class='autoTested'>
     * configurations.create('myConfiguration')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/README.md

    ```sh
    ./prometheus --config.file=prometheus.yml
    ```
    
    Here `prometheus.yml` is the name of configuration file. You can now see MinIO metrics in Prometheus dashboard. By default Prometheus dashboard is accessible at `http://localhost:9090`.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 12 15:49:30 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/AbstractDependencyMetadataRulesTest.groovy

            "maven"      | mavenComponentMetadata()
            "ivy"        | ivyComponentMetadata()
            "gradle"     | gradleComponentMetadata()
        }
    
        def "dependencies of selected variant are accessible in dependency metadata rule for #metadataType metadata"() {
            given:
            def rule = { dependencies ->
                if (supportedInMetadata(metadataType)) {
                    assert dependencies.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:39:10 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/Cache.java

       * with a differently behaving {@code loader}. For example, a call that requests a short timeout
       * for an RPC may wait for a similar call that requests a long timeout, or a call by an
       * unprivileged user may return a resource accessible only to a privileged user making a similar
       * call. To prevent this problem, create a key object that includes all values that affect the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderUtils.java

            Package getPackage(ClassLoader classLoader, String name);
        }
    
        /**
         * This class makes it a bit easier to use {@link MethodHandles.Lookup}.
         * In order to access a method, a lookup object which is accessible to this method must be provided.
         * Usually, this class and the target Gradle-managed class loader exist in the same module, so everything works.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/os/OperatingSystemTest.groovy

                    }
                }
                return true
            } catch (Exception e) {
                System.err.println "Unable to make fields accessible on this JVM, error was:\n${e.message}"
                return false
            }
        }
    
        private static void makeFinalFieldAccessibleForTesting(Field field) {
            field.setAccessible(true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultLenientConfiguration.java

            resolutionHost.rethrowFailure("artifacts", visitor.getFailures());
            return visitor.artifacts;
        }
    
        /**
         * Returns a subset of {@code artifactResults} accessible from dependencies matching {@code dependencySpec}.
         */
        private ResolvedArtifactSet resolveFilteredArtifacts(Spec<? super Dependency> dependencySpec, SelectedArtifactResults artifactResults) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top