Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 217 for modfile (0.14 sec)

  1. 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)
  2. 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)
  3. platforms/documentation/docs/src/docs/kotlin/Module.md

    # Module gradle
    
    # Kotlin DSL Reference for Gradle
    
    Gradle’s Kotlin DSL provides an enhanced editing experience in supported IDEs, with superior content assistance, refactoring, documentation, and more.
    For an introduction see the <a href="../userguide/kotlin_dsl.html">Kotlin DSL Primer</a>.
    
    The Kotlin DSL is implemented on top of Gradle’s Java API.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 22:09:08 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. okhttp-tls/Module.md

    # Module okhttp-tls
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Apr 02 11:27:49 UTC 2019
    - 68 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/workerApi/md5ProcessIsolation/groovy/buildSrc/src/main/java/CreateMD5.java

            });
    
            for (File sourceFile : getSource().getFiles()) {
                Provider<RegularFile> md5File = getDestinationDirectory().file(sourceFile.getName() + ".md5");
                workQueue.submit(GenerateMD5.class, parameters -> {
                    parameters.getSourceFile().set(sourceFile);
                    parameters.getMD5File().set(md5File);
                });
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. cluster/gce/manifests/cloud-controller-manager.manifest

            {{pv_recycler_mount}}
            { "name": "srvkube",
            "mountPath": "/etc/srv/kubernetes",
            "readOnly": true},
            {{flexvolume_hostpath_mount}}
            { "name": "logfile",
            "mountPath": "/var/log/cloud-controller-manager.log",
            "readOnly": false},
            { "name": "etcssl",
            "mountPath": "/etc/ssl",
            "readOnly": true},
            { "name": "usrsharecacerts",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 08:50:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateAgpVersions.kt

                )
            }
    
        private
        fun updateCompatibilityDoc(latestAgpVersions: List<String>) {
            val docFile = compatibilityDocFile.get().asFile
            val linePrefix = "Gradle is tested with Android Gradle Plugin"
            var lineFound = false
            docFile.writeText(
                docFile.readLines().joinToString(separator = "\n", postfix = "\n") { line ->
                    if (line.startsWith(linePrefix)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 09:17:07 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/groovy/build.gradle

                        }
                        withFiles {
                            removeAllFiles()
                            addFile("guava-$version-${jarName}.jar", "../$version-$jarName/guava-$version-${jarName}.jar")
                        }
                    }
                }
            }
        }
    }
    // end::guava-rule[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  9. cluster/gce/manifests/cluster-autoscaler.manifest

                            "readOnly": true,
                            "mountPath": "/etc/srv/kubernetes/cluster-autoscaler"
                        },
                        {
                            "name": "logfile",
                            "mountPath": "/var/log/cluster-autoscaler.log",
                            "readOnly": false
                        }
                    ],
                    "terminationMessagePath": "/dev/termination-log",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:04:35 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/MutableVariantFilesMetadata.java

         *
         * @param name name and path of the file.
         */
        void addFile(String name);
    
        /**
         * Add a file.
         *
         * @param name name of the file
         * @param url location of the file, if not located next to the metadata in the repository
         */
        void addFile(String name, String url);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 26 14:03:13 UTC 2019
    - 1.4K bytes
    - Viewed (0)
Back to top