Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 912 for regular (0.1 sec)

  1. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/README.adoc

    this is the simplest way to start out as you can use one of Gradle's DSLs directly to implement the build logic, just as if the plugin was
    a regular build script.
    
    [.multi-language-text.lang-kotlin]
    In order for precompiled script plugins to be discovered, the `convention-plugins` project needs to apply the `kotlin-dsl` plugin
    in its `build.gradle.kts` file:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/README.adoc

    this is the simplest way to start out as you can use one of Gradle's DSLs directly to implement the build logic, just as if the plugin was
    a regular build script.
    
    [.multi-language-text.lang-groovy]
    In order for precompiled script plugins to be discovered, the `convention-plugins` project needs to apply the `groovy-gradle-plugin` plugin
    in its `build.gradle` file:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/RequestBody.kt

       * in the **API contract** between OkHttp and the application.
       *
       * This method returns false unless it is overridden by a subclass.
       *
       * ### Duplex Transmission
       *
       * With regular HTTP calls the request always completes sending before the response may begin
       * receiving. With duplex the request and response may be interleaved! That is, request body bytes
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Jan 25 14:41:37 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/SortedMapTestSuiteBuilder.java

       * Creates a suite whose map has some elements filtered out of view.
       *
       * <p>Because the map may be ascending or descending, this test must derive the relative order of
       * these extreme values rather than relying on their regular sort ordering.
       */
      final TestSuite createSubmapSuite(
          FeatureSpecificTestSuiteBuilder<
                  ?, ? extends OneSizeTestContainerGenerator<Map<K, V>, Entry<K, V>>>
              parentBuilder,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. src/regexp/syntax/simplify_test.go

    	{`(?i)[k]`, "[Kk\u212A]"},
    	{`(?i)[\x{212a}]`, "[Kk\u212A]"},
    	{`(?i)[a-z]`, "[A-Za-z\u017F\u212A]"},
    	{`(?i)[\x00-\x{FFFD}]`, "[\\x00-\uFFFD]"},
    	{`(?i)[\x00-\x{10FFFF}]`, `(?s:.)`},
    
    	// Empty string as a regular expression.
    	// The empty string must be preserved inside parens in order
    	// to make submatches work right, so these tests are less
    	// interesting than they might otherwise be. String inserts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. docs/sts/ldap.go

    	minioClient, err := minio.New(stsEndpointURL.Host, opts)
    	if err != nil {
    		log.Fatalf("Error initializing client: ", err)
    	}
    
    	// Use minIO Client object normally like the regular client.
    	if bucketToList == "" {
    		bucketToList = ldapUsername
    	}
    	fmt.Printf("Calling list objects on bucket named `%s` with temp creds:\n===\n", bucketToList)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensionsStorageTest.groovy

            foo == null
            string == null
        }
    
        def "get as map"() {
            expect:
            storage.getAsMap() == ["list": listExtension, "set": setExtension]
        }
    
        def "configures regular extension"() {
            when:
            def extension = Mock(TestExtension)
            storage.add(typeOf(TestExtension), "ext", extension)
    
            and:
            storage.configureExtension("ext", {
                it.call(1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/text/StyledTextOutput.java

     * required to be thread-safe.
     */
    public interface StyledTextOutput extends Appendable {
        enum Style {
            /**
             * Regular text.
             */
            Normal,
            /**
             * A header.
             */
            Header,
            /**
             * User input
             */
            UserInput,
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/FileTreeElement.java

         * Returns the file being visited.
         *
         * @return The file. Never returns null.
         */
        File getFile();
    
        /**
         * Returns true if this element is a directory, or false if this element is a regular file.
         *
         * @return true if this element is a directory.
         */
        boolean isDirectory();
    
        /**
         * Returns the last modified time of this file at the time of file traversal.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:43:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/unfold_large_splat_constant.cc

    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    // The threshold of constant bits to be unfolded (1Mb). If there is a splat
    // constant with size equal or greater to this threshold, then it will be
    // unfolded back to a regular `tfl.fill` operation.
    constexpr int64_t kConstantSizeThresholdInBits = 1e+6;
    
    // Pass which will replace large splat constant tensors to `tfl.Fill` op to
    // reduce the size of the generated flatbuffer model size.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top