Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,240 for Supplied (0.15 sec)

  1. src/cmd/compile/internal/types2/context.go

    // that may be supplied by users during instantiation.
    //
    // Contexts serve two purposes:
    //  - reduce the duplication of identical instances
    //  - short-circuit instantiation cycles
    //
    // For the latter purpose, we must always have a context during instantiation,
    // whether or not it is supplied by the user. For both purposes, it must be the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:29:21 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/plugins/ExtensionContainer.java

         *
         * @param type extension type
         * @param action the configure action
         * @throws UnknownDomainObjectException if no extension is found.
         */
        <T> void configure(Class<T> type, Action<? super T> action);
    
        /**
         * Looks for the extension of the specified type and configures it with the supplied action.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 16:56:20 UTC 2019
    - 9.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildLauncher.java

         */
        BuildLauncher forTasks(String... tasks);
    
        /**
         * Sets the tasks to be executed. If no tasks are specified, the project's default tasks are executed.
         *
         * <p>Note that the supplied tasks do not necessarily need to belong to the project which this launcher was created for.
         *
         * @param tasks The tasks to be executed.
         * @return this
         * @since 1.0-milestone-3
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. cmd/sts-errors.go

    		Code:           "MissingParameter",
    		Description:    "A required parameter for the specified action is not supplied.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrSTSInvalidParameterValue: {
    		Code:           "InvalidParameterValue",
    		Description:    "An invalid or out-of-range value was supplied for the input parameter.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrSTSWebIdentityExpiredToken: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/IncomingConnector.java

    public interface IncomingConnector {
        /**
         * Starts listening for incoming connections. Assigns an arbitrary address for the endpoint.
         *
         * @param action the action to execute on incoming connection. The supplied action is not required to be thread-safe.
         * @param allowRemote If true, only allow connections from remote machines. If false, allow only from the local machine.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/PhasedActionResult.java

    import java.io.Serializable;
    
    /**
     * DO NOT CHANGE THIS INTERFACE. It is part of the cross-version protocol.
     *
     * A result of one of the actions of an {@link InternalPhasedAction}.
     * This result will be supplied to {@link PhasedActionResultListener}.
     *
     * @since 4.8
     */
    public interface PhasedActionResult<T> extends InternalProtocolInterface, Serializable {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/compression/URIBuilder.java

            assert GUtil.isTrue(schemePrefix);
            try {
                return new URI(schemePrefix + ":" + uri.toString());
            } catch (Exception e) {
                throw new RuntimeException("Unable to build URI based on supplied URI: " + uri, e);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java

        * client workstation has membership is supplied in the Type-1 message.
        * This is used in the negotation of local authentication. 
        */
        public static final int NTLMSSP_NEGOTIATE_OEM_DOMAIN_SUPPLIED =
                0x00001000;
    
        /**
        * Indicates whether the OEM-formatted workstation name is supplied
        * in the Type-1 message.  This is used in the negotiation of local
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/reader.cc

          }
          return meta_graph_def;
        }
      }
      return Status(
          absl::StatusCode::kNotFound,
          strings::StrCat(
              "Could not find meta graph def matching supplied tags: { ",
              absl::StrJoin(tags, " "),
              " }. To inspect available tag-sets in the SavedModel, please "
              "use the SavedModel CLI: `saved_model_cli`"));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 00:19:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VersionCatalogsExtension.java

        /**
         * Tries to find a catalog with the corresponding name
         * @param name the name of the catalog
         */
        Optional<VersionCatalog> find(String name);
    
        /**
         * Returns the catalog with the supplied name or throws an exception
         * if it doesn't exist.
         */
        default VersionCatalog named(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 27 23:38:43 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top