Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 259 for Accessible (0.12 sec)

  1. 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
    - 7.1K bytes
    - Viewed (0)
  2. src/net/fd_windows.go

    // Always returns nil for connected peer address result.
    func (fd *netFD) connect(ctx context.Context, la, ra syscall.Sockaddr) (syscall.Sockaddr, error) {
    	// Do not need to call fd.writeLock here,
    	// because fd is not yet accessible to user,
    	// so no concurrent operations are possible.
    	if err := fd.init(); err != nil {
    		return nil, err
    	}
    
    	if ctx.Done() != nil {
    		// Propagate the Context's deadline and cancellation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 16:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

         * More specifically, use -linkoffline if the external document's package-list file is not accessible or
         * does not exist at the extdocURL location but does exist at a different location,
         * which can be specified by packageListLoc (typically local). Thus, if extdocURL is accessible only on the World Wide Web,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  4. cmd/sftp-server.go

    	}
    
    	privateBytes, err := os.ReadFile(sshPrivateKey)
    	if err != nil {
    		logger.Fatal(fmt.Errorf("invalid arguments passed, private key file is not accessible: %v", err), "unable to start SFTP server")
    	}
    
    	private, err := ssh.ParsePrivateKey(privateBytes)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top