Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,680 for hiding (0.1 sec)

  1. src/runtime/mbarrier.go

    // ptr is the value that goes into the slot in Go code.
    //
    // Shade indicates that it has seen a white pointer by adding the referent
    // to wbuf as well as marking it.
    //
    // The two shades and the condition work together to prevent a mutator
    // from hiding an object from the garbage collector:
    //
    // 1. shade(*slot) prevents a mutator from hiding an object by moving
    // the sole pointer to it from the heap to its stack. If it attempts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. docs/en/docs/how-to/conditional-openapi.md

    ## About security, APIs, and docs
    
    Hiding your documentation user interfaces in production *shouldn't* be the way to protect your API.
    
    That doesn't add any extra security to your API, the *path operations* will still be available where they are.
    
    If there's a security flaw in your code, it will still exist.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/slf4j/Slf4jLoggingConfigurer.java

                // Cannot configure Slf4j logger. This will happen if:
                // - Tests are executed with a custom classloader (e.g using `java.system.class.loader`)
                // - Tests are run with `--module-path`, effectively hiding Gradle classes
                return;
            }
            OutputEventListenerBackedLoggerContext context = (OutputEventListenerBackedLoggerContext) loggerFactory;
    
            if (currentLevel == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. guava-gwt/src/com/google/common/collect/Collect.gwt.xml

    <module>
    <source path="">
      <!-- Hack to keep collect from hiding collect.testing supersource: -->
      <exclude name="**/testing/**"/>
    </source>
    
    <!--
        We used to set this only for packages that had manual supersource. That
        worked everywhere that I know of except for one place: when running the GWT
        util.concurrent tests under Guava.
    
        The problem is that GWT responds poorly to two .gwt.xml files in the same
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 24 14:08:06 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. guava-gwt/src/com/google/common/util/concurrent/Concurrent.gwt.xml

    <module>
    <source path="">
      <!-- Hack to keep collect from hiding collect.testing supersource: -->
      <exclude name="**/testing/**"/>
    </source>
    
    <!--
        We used to set this only for packages that had manual supersource. That
        worked everywhere that I know of except for one place: when running the GWT
        util.concurrent tests under Guava.
    
        The problem is that GWT responds poorly to two .gwt.xml files in the same
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jul 19 04:29:50 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PluginDependenciesSpecScope.kt

    import org.gradle.plugin.use.PluginDependencySpec
    
    
    /**
     * Receiver for the `plugins` block.
     *
     * This class exists for the sole purpose of marking the `plugins` block as a [GradleDsl] thus
     * hiding all members provided by the outer script scope.
     *
     * @see [PluginDependenciesSpec]
     */
    @GradleDsl
    open class PluginDependenciesSpecScope internal constructor(
        private val plugins: PluginDependenciesSpec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/sha3/doc.go

    //
    // # The sponge construction
    //
    // A sponge builds a pseudo-random function from a public pseudo-random
    // permutation, by applying the permutation to a state of "rate + capacity"
    // bytes, but hiding "capacity" of the bytes.
    //
    // A sponge starts out with a zero state. To hash an input using a sponge, up
    // to "rate" bytes of the input are XORed into the sponge's state. The sponge
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/LocationAwareScriptEvaluationIntegrationTest.kt

         * See [org.gradle.initialization.DefaultExceptionAnalyser.transform], note the comments.
         * The Kotlin DSL provider handles this in isolation,
         * thus hiding the location of exceptions thrown by groovy scripts applied from kotlin scripts.
         *
         * This test exercises the current behavior.
         */
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/GrammarDelegate.java

    import java.util.List;
    
    /**
     * Antlr defines its {@link antlr.preprocessor.Grammar} class as package-protected for some unfortunate reason. So this class acts as a delegate to the Antlr {@link antlr.preprocessor.Grammar} class,
     * hiding all the ugly necessary reflection code.
     */
    public class GrammarDelegate {
        public static List<GrammarDelegate> extractGrammarDelegates(GrammarFile antlrGrammarFile) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/AbstractDaemonLifecycleSpec.groovy

        int periodicCheckInterval = 5
        //normally, state transition timeout must be lower than the daemon timeout
        //so that the daemon does not timeout in the middle of the state verification
        //effectively hiding some bugs or making tests fail
        int stateTransitionTimeout = daemonIdleTimeout / 2
    
        final List<GradleHandle> builds = []
        final List<GradleHandle> foregroundDaemons = []
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top