Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,152 for aModule (0.58 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/Module.groovy

     */
    package org.gradle.test.fixtures
    
    import org.gradle.test.fixtures.gradle.VariantMetadataSpec
    
    /**
     * Represents a module in a repository.
     */
    interface Module {
        Module publish()
        Module publishWithChangedContent()
        Module withModuleMetadata()
        Module withSignature(@DelegatesTo(value = File, strategy = Closure.DELEGATE_FIRST) Closure<?> signer)
    
        String getGroup()
        String getModule()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. okhttp-logging-interceptor/Module.md

    # Module okhttp-logging-interceptor
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Apr 02 11:27:49 UTC 2019
    - 102 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/Module.java

    import org.gradle.api.artifacts.component.ProjectComponentIdentifier;
    
    import javax.annotation.Nullable;
    
    /**
     * <p>A {@code Module} represents the meta-information about a project which should be used when publishing the
     * module.</p>
     */
    public interface Module {
        String DEFAULT_STATUS = "integration";
    
        @Nullable
        ProjectComponentIdentifier getProjectId();
    
        String getGroup();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 16 01:39:01 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/Module.java

        /**
         * Returns the modules required by this module.
         */
        Set<Module> getRequiredModules();
    
        /**
         * Returns the transitive closure of all modules required by this module, including the module itself.
         */
        Set<Module> getAllRequiredModules();
    
        /**
         * Returns the implementation + runtime classpath of the transitive closure of all modules required by this module, including the module itself.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. guava/module.json

              "module": "jsr305",
              "version": {
                "requires": "${jsr305.version}"
              }
            },
            {
              "group": "org.checkerframework",
              "module": "checker-qual",
              "version": {
                "requires": "${checker.version}"
              }
            },
            {
              "group": "com.google.errorprone",
              "module": "error_prone_annotations",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 17 18:11:49 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. okhttp-coroutines/Module.md

    # Module okhttp-coroutines
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 06 15:31:31 UTC 2022
    - 55 bytes
    - Viewed (0)
  7. okhttp/Module.md

    # Module okhttp
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Apr 02 11:27:49 UTC 2019
    - 74 bytes
    - Viewed (0)
  8. okhttp-android/Module.md

    # Module okhttp-android
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 20 06:48:45 UTC 2022
    - 49 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/module/module.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package module defines the module.Version type along with support code.
    //
    // The [module.Version] type is a simple Path, Version pair:
    //
    //	type Version struct {
    //		Path string
    //		Version string
    //	}
    //
    // There are no restrictions imposed directly by use of this structure,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. tensorflow/cc/experimental/libtf/module.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/cc/experimental/libtf/module.h"
    
    #include <string>
    
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/protobuf/saved_object_graph.pb.h"
    namespace tf {
    namespace libtf {
    namespace impl {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 02 20:02:30 UTC 2022
    - 4.6K bytes
    - Viewed (0)
Back to top