Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 629 for hiding (0.61 sec)

  1. src/net/textproto/writer.go

    	w.W.Write(crnl)
    	return w.W.Flush()
    }
    
    // DotWriter returns a writer that can be used to write a dot-encoding to w.
    // It takes care of inserting leading dots when necessary,
    // translating line-ending \n into \r\n, and adding the final .\r\n line
    // when the DotWriter is closed. The caller should close the
    // DotWriter before the next call to a method on w.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h

      template <typename... Args>
      Renderer BlockOpen(absl::string_view text, const Args &...args) {
        return BlockOpen(absl::Substitute(text, args...));
      }
    
      // Append a line of code ending a block: unindenting and adding '}'.
      // Note: optional trailing text is often a comment, e.g. '// namespace xyz'.
      Renderer &BlockClose(const string &text = "");
      template <typename... Args>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. maven-core/src/main/mdo/extension.mdo

                <multiplicity>*</multiplicity>
              </association>
              <description><![CDATA[Restricts the classes/resources from the current artifact's CoreExtension class realm that are exposed. Values ending with ".*" expose all classes/resources which are directly contained in the given package in binary form. 
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/README.adoc

    In the first instance, all of the required dependencies are present as builds in the `modules` directory. In a real-world example, these could well be clones of different Git repositories.
    
    In order to avoid hard-coding the included builds to load, the `settings.gradle` file in `multirepo-app` loads each of these builds dynamically:
    
    ====
    include::sample[dir="kotlin",files="settings.gradle.kts[tags=include_builds]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. testing/performance/src/templates/project-with-source/gradle.properties

    <% if (binding.hasVariable("daemonMemory")) { %>org.gradle.jvmargs=-Xms${binding.getVariable("daemonMemory")} -Xmx${binding.getVariable("daemonMemory")}<% } %>
    <% if (binding.hasVariable("parallel")) { %>org.gradle.parallel=true<% } %>
    <% if (binding.hasVariable("maxWorkers")) { %>org.gradle.workers.max=${binding.getVariable("maxWorkers")}<% } %>
    compilerMemory=<% if (binding.hasVariable("compilerMemory")) { %>${binding.getVariable("compilerMemory")}<% } else { %>1g<% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 742 bytes
    - Viewed (0)
  6. testing/performance/src/templates/root-project/gradle.properties

    <% if (binding.hasVariable("daemonMemory")) { %>org.gradle.jvmargs=-Xms${binding.getVariable("daemonMemory")} -Xmx${binding.getVariable("daemonMemory")}<% } %>
    <% if (binding.hasVariable("parallel")) { %>org.gradle.parallel=true<% } %>
    <% if (binding.hasVariable("maxWorkers")) { %>org.gradle.workers.max=${binding.getVariable("maxWorkers")}<% } %>
    compilerMemory=<% if (binding.hasVariable("compilerMemory")) { %>${binding.getVariable("compilerMemory")}<% } else { %>1g<% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 742 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/metrics/metrics_test.go

                apiserver_validating_admission_policy_check_duration_seconds_bucket{enforcement_action="allow",policy="policy.example.com",policy_binding="binding.example.com",state="active",le="1"} 0
                apiserver_validating_admission_policy_check_duration_seconds_bucket{enforcement_action="allow",policy="policy.example.com",policy_binding="binding.example.com",state="active",le="+Inf"} 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/schemaBuidler/FunctionExtractorTest.kt

        }
    
        abstract class ReceiverOne {
            @Adding
            abstract fun adding(receiver: ReceiverOne.() -> Unit): ReceiverOne
        }
    
        abstract class ReceiverTwo {
            @Adding
            abstract fun adding(receiver: ReceiverTwo.() -> Unit)
        }
    
        abstract class ReceiverThree {
            @Adding
            abstract fun adding(three: Int)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. testing/performance/src/templates/gradle-properties/gradle.properties

    <% if (binding.hasVariable("daemonMemory")) { %>org.gradle.jvmargs=-Xms${binding.getVariable("daemonMemory")} -Xmx${binding.getVariable("daemonMemory")}<% } %>
    <% if (binding.hasVariable("parallel")) { %>org.gradle.parallel=true<% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 349 bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/EmptyBlocksTest.kt

            assertTrue { result.configuredLazy.isInitialized() }
        }
    
        @Test
        fun `empty adding block ensures that the object is created`() {
            val resolution = schema.resolve(
                """
                adding()
                adding { }
                adding { x = 2 }
                addingWithArg(3)
                addingWithArg(4) { }
                """.trimIndent()
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top