Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 5,609 for Lach (0.35 sec)

  1. platforms/documentation/docs/src/snippets/tutorial/antLoadfileWithMethod/groovy/build.gradle

    tasks.register('checksum') {
        doLast {
            fileList('./antLoadfileResources').each { File file ->
                ant.checksum(file: file, property: "cs_$file.name")
                println "$file.name Checksum: ${ant.properties["cs_$file.name"]}"
            }
        }
    }
    
    tasks.register('loadfile') {
        doLast {
            fileList('./antLoadfileResources').each { File file ->
                ant.loadfile(srcFile: file, property: file.name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 599 bytes
    - Viewed (0)
  2. releasenotes/notes/34086.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 33799
    
    releaseNotes:
    - |
      **Added** `istioctl x remote-clusters` to list the remote clusters each `istiod` instance has API Server credentials for,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 20 22:07:23 UTC 2021
    - 274 bytes
    - Viewed (0)
  3. src/internal/trace/raw/doc.go

    trace parsers.
    
    # Text format specification
    
    The trace text format produced and consumed by this package is a line-oriented
    format.
    
    The first line in each text trace is the header line.
    
    	Trace Go1.XX
    
    Following that is a series of event lines. Each event begins with an
    event name, followed by zero or more named unsigned integer arguments.
    Names are separated from their integer values by an '=' sign. Names can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. test/fixedbugs/bug13343.go

    // license that can be found in the LICENSE file.
    
    package main
    
    var (
    	a, b = f() // ERROR "initialization cycle|depends upon itself|depend upon each other"
    	c    = b   // GCCGO_ERROR "depends upon itself|depend upon each other"
    )
    
    func f() (int, int) {
    	return c, c
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 410 bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishJavaWithDocsAndFeaturesIntegTest.groovy

            true
        }
    
        List<String> features() {
            [MavenJavaModule.MAIN_FEATURE, "feature2", "feature3"]
        }
    
        def "creates separate javadoc artifacts for the features"() {
            features().each { featureName ->
                def sourceSetName = featureName == MavenJavaModule.MAIN_FEATURE ? MavenJavaModule.MAIN_FEATURE : "${featureName}SourceSet"
                def className = classNameForFeature(featureName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/RangeSet.java

      /**
       * Returns {@code true} if for each member range in {@code other} there exists a member range in
       * this range set which {@linkplain Range#encloses encloses} it. It follows that {@code
       * this.contains(value)} whenever {@code other.contains(value)}. Returns {@code true} if {@code
       * other} is empty.
       *
       * <p>This is equivalent to checking if this range set {@link #encloses} each of the ranges in
       * {@code other}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/script.js

                if (!dependency.resolvable) {
                    classes.push('unresolvable');
                }
                if (classes.length > 0) {
                    node.attr['class'] = classes.join(' ');
                }
                $.each(dependency.children, function(index, dependency) {
                    var dependencyNode = createDependencyNode(dependency);
                    node.children.push(dependencyNode);
                });
                return node;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 24 19:38:03 UTC 2020
    - 8.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump.h

    // the TF_QUANT_MLIR_DUMP_PREFIX env variable. The PassManager will dump to a
    // new file for each pass. The file name will have the format
    // {file_name_prefix}_{pass_number}_{pass_name}_{before|after}.mlir.
    // * `file_name_prefix` is from input.
    // * `pass_number` increments from 1 for each pass.
    // * `pass_name` is the name of the pass.
    // * `before|after` indicates whether the dump occurs before or after the pass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 03:17:14 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformTestFixture.groovy

            return module
        }
    
        /**
         * Each project produces 'blue' variants and has a `resolve` task that resolves the 'green' variant. The 'blue' variant will contain
         * whatever is defined by the given closure on the supplied {@link Builder}.
         * By default each variant will contain a single file, this can be configured using the supplied {@link Builder}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 15:06:39 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenJavaModule.groovy

            features.each { feature ->
                assertDependencies(feature, 'apiElements', 'compile', [], expected)
                assert parsedModuleMetadata.variant('runtimeElements').dependencies*.coords.containsAll(expected)
            }
        }
    
        @Override
        void assertRuntimeDependencies(String... expected) {
            features.each { feature ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top