Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 629 for _lifted (0.12 sec)

  1. docs/extensions/fan-out/README.md

    MinIO implements an S3 extension to perform multiple concurrent fan-out upload operations. A perfect use case scenario for performing fan-out operations of incoming TSB (Time Shift Buffer's). TSBs are a method of facilitating time-shifted playback of television signaling, and media content.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 25 05:51:07 UTC 2023
    - 1.4K bytes
    - Viewed (1)
  2. subprojects/distributions-full/src/toplevel/NOTICE

    HttpClient (https://hc.apache.org/httpcomponents-client-4.5.x/)
    
    For licenses, see the LICENSE file.
    
    If any software distributed with Gradle does not have an Apache 2 License, its license is explicitly listed in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 11 13:09:36 UTC 2021
    - 868 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerIntegrationTest.groovy

                'org:testA:3' {
                    expectResolve()
                }
            }
    
            then:
            succeeds 'checkDeps'
        }
    
        void "falls back to repository listing when no version is listed"() {
            withLister([:])
            given:
            repository {
                'org:testA:1'()
                'org:testA:2'()
                'org:testA:3'()
            }
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. src/io/multi.go

    	}
    	return len(s), nil
    }
    
    // MultiWriter creates a writer that duplicates its writes to all the
    // provided writers, similar to the Unix tee(1) command.
    //
    // Each write is written to each listed writer, one at a time.
    // If a listed writer returns an error, that overall write operation
    // stops and returns the error; it does not continue down the list.
    func MultiWriter(writers ...Writer) Writer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_list_odd_tags.txt

    stdout '^vcs-test.golang.org/git/odd-tags.git v0.1.1-0.20220223184835-9d863d525bbf$'
    
    go list -m -versions vcs-test.golang.org/git/odd-tags.git
    stdout -count=1 '^.'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 392 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionLister.java

            for (ResourcePattern pattern : filteredPatterns) {
                visit(pattern, versionListPatterns, collector, result);
            }
            if (!collector.isEmpty()) {
                result.listed(collector);
            }
        }
    
        private List<ResourcePattern> filterDuplicates(List<ResourcePattern> patterns) {
            if (patterns.size() <= 1) {
                return patterns;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/passes.td

            clEnumValN(mlir::quant::stablehlo::testing::TestQuantizationSpecs::kDisableAllDotGeneral,
              "disable-all-dot-general", "Disables all dot_general ops by matching lifted function names"),
            clEnumValN(mlir::quant::stablehlo::testing::TestQuantizationSpecs::kStaticRangePtqToAll,
              "static-range-ptq-to-all", "Applies `StaticRangePtq` to all quantizable units."),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:21:42 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/help/helpdoc.go

    		be those functions exported using a cgo //export comment.
    		Requires exactly one main package to be listed.
    
    	-buildmode=default
    		Listed main packages are built into executables and listed
    		non-main packages are built into .a files (the default
    		behavior).
    
    	-buildmode=shared
    		Combine all the listed non-main packages into a single shared
    		library that will be used when building with the -linkshared
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/attributes/AttributesSchema.java

        /**
         * Returns true when this schema contains the given attribute.
         */
        boolean hasAttribute(Attribute<?> key);
    
        /**
         * Adds attributes to the precedence order. Attributes listed first have higher precedence.
         * <p>
         * The attributes will be added to any existing precedence order. If an attribute has already been added, adding it again
         * will fail.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 07 20:56:10 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  10. src/go/build/doc.go

    // variable, interpreted as a path list appropriate to the operating system
    // (on Unix, the variable is a colon-separated string;
    // on Windows, a semicolon-separated string;
    // on Plan 9, a list).
    //
    // Each directory listed in the Go path must have a prescribed structure:
    //
    // The src/ directory holds source code. The path below 'src' determines
    // the import path or executable name.
    //
    // The pkg/ directory holds installed package objects.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top