Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 414 for Glob (0.19 sec)

  1. arm_compiler.BUILD

    filegroup(
        name = "gcc",
        srcs = glob(["bin/*-gcc"]),
    )
    
    filegroup(
        name = "ar",
        srcs = glob(["bin/*-ar"]),
    )
    
    filegroup(
        name = "ld",
        srcs = glob(["bin/*-ld"]),
    )
    
    filegroup(
        name = "nm",
        srcs = glob(["bin/*-nm"]),
    )
    
    filegroup(
        name = "objcopy",
        srcs = glob(["bin/*-objcopy"]),
    )
    
    filegroup(
        name = "objdump",
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 12 11:17:46 GMT 2021
    - 1.2K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/model/GradleDistribution.kt

            get() = filesIn("lib/agents/*.jar")
    
        @get:Classpath
        val pluginJars: SortedSet<File>
            get() = filesIn("lib/plugins/*.jar")
    
        private
        fun filesIn(glob: String) = gradleHomeDir.asFileTree.matching {
            include(glob)
        }.files.toSortedSet()
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Fri Dec 16 19:35:39 GMT 2022
    - 1.8K bytes
    - Viewed (0)
  3. src/main/resources/log4j2.xml

    			</Policies>
    			<DefaultRolloverStrategy fileIndex="max" min="1"
    				max="${backup.max.history}" compressionLevel="9">
    				<Delete basePath="${log.file.basedir}">
    					<IfFileName glob="${domain.name}*.log.gz" />
    					<IfLastModified age="P${backup.max.age}D" />
    				</Delete>
    			</DefaultRolloverStrategy>
    		</RollingFile>
    		<RollingFile name="AuditFile" fileName="${log.file.basedir}/audit.log"
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Feb 20 13:17:33 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/ExclusionArtifactFilter.java

        }
    
        private static Predicate<Artifact> toPredicate(Exclusion exclusion) {
            PathMatcher groupId = FileSystems.getDefault().getPathMatcher("glob:" + exclusion.getGroupId());
            PathMatcher artifactId = FileSystems.getDefault().getPathMatcher("glob:" + exclusion.getArtifactId());
            Predicate<Artifact> predGroupId = a -> groupId.matches(createPathProxy(a.getGroupId()));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Aug 29 15:25:58 GMT 2023
    - 3K bytes
    - Viewed (0)
  5. models.BUILD

    package(default_visibility = ["//visibility:public"])
    
    licenses(["notice"])  # Apache 2.0
    
    filegroup(
        name = "model_files",
        srcs = glob(
            [
                "**/*",
            ],
            exclude = [
                "**/BUILD",
                "**/WORKSPACE",
                "**/LICENSE",
                "**/*.zip",
            ],
        ),
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Jan 10 22:25:53 GMT 2017
    - 328 bytes
    - Viewed (0)
  6. helm/minio/.helmignore

    # Patterns to ignore when building packages.
    # This supports shell glob matching, relative path matching, and
    # negation (prefixed with !). Only one pattern per line.
    .DS_Store
    # Common VCS dirs
    .git/
    .gitignore
    .bzr/
    .bzrignore
    .hg/
    .hgignore
    .svn/
    # Common backup files
    *.swp
    *.bak
    *.tmp
    *~
    # Various IDEs
    .project
    .idea/
    *.tmproj
    # OWNERS file for Kubernetes
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Aug 20 22:30:54 GMT 2021
    - 368 bytes
    - Viewed (0)
  7. manifests/charts/istio-operator/templates/crds.yaml

    {{- if .Values.enableCRDTemplates -}}
    {{- range $path, $bytes := .Files.Glob "crds/*.yaml" -}}
    ---
    {{ $.Files.Get $path }}
    {{- end -}}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Jun 08 21:55:57 GMT 2020
    - 147 bytes
    - Viewed (0)
  8. kotlin-js-store/yarn.lock

        has "^1.0.3"
        has-symbols "^1.0.3"
    
    glob-parent@~5.1.2:
      version "5.1.2"
      resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
      integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
      dependencies:
        is-glob "^4.0.1"
    
    glob-to-regexp@^0.4.1:
      version "0.4.1"
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Jul 22 12:28:51 GMT 2023
    - 87.4K bytes
    - Viewed (0)
  9. cmd/storage-rest-common.go

    	storageRESTBitrotAlgo    = "bitrot-algo"
    	storageRESTBitrotHash    = "bitrot-hash"
    	storageRESTDiskID        = "disk-id"
    	storageRESTForceDelete   = "force-delete"
    	storageRESTGlob          = "glob"
    	storageRESTMetrics       = "metrics"
    	storageRESTDriveQuorum   = "drive-quorum"
    	storageRESTOrigVolume    = "orig-volume"
    )
    
    type nsScannerOptions struct {
    	DiskID   string          `msg:"id"`
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Feb 12 21:00:20 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  10. ci/official/containers/linux_arm64/devel.usertools/setup_venv_test.sh

    # ==============================================================================
    set -euxo pipefail
    
    # Run this from inside the tensorflow github directory.
    # Usage: setup_venv_test.sh venv_and_symlink_name "glob pattern for one wheel file"
    # Example: setup_venv_test.sh bazel_pip "/tf/pkg/*.whl"
    # 
    # This will create a venv with that wheel file installed in it, and a symlink
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 1.4K bytes
    - Viewed (0)
Back to top