Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 148 for admins (0.12 sec)

  1. src/runtime/mgcmark.go

    //
    // Disabling write barriers is necessary to ensure that after we've
    // confirmed that we've drained gcw, that we don't accidentally end
    // up flipping that condition by immediately adding work in the form
    // of a write barrier buffer flush.
    //
    // Don't set nowritebarrierrec because it's safe for some callees to
    // have write barriers enabled.
    //
    //go:nowritebarrier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    In Gradle 8.0 the invocation changes to `gradle :nested:nestedNested:compileJava`.
    
    ==== Adding `jst.ejb` with the `eclipse wtp` plugin now removes the `jst.utility` facet
    
    The `eclipse wtp` plugin adds the `jst.utility` facet to java projects.
    Now, adding the `jst.ejb` facet implicitly removes the `jst.utility` facet:
    
    ```
    eclipse {
        wtp {
            facet {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    // it transfers the local buffer into the profile. As part of that step, it also
    // transfers any "additional contention" time to the profile. Any lock
    // contention that it experiences while adding samples to the profile will be
    // recorded later as "additional contention" and not include a call stack, to
    // avoid an echo.
    type lockTimer struct {
    	lock      *mutex
    	timeRate  int64
    	timeStart int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    ====
    
    === Blackbox integration testing
    
    For integration tests, you have the option to define the test set itself as additional module.
    You do this similar to how you turn your main sources into a module:
    by adding a `module-info.java` file to the corresponding source set (e.g. `integrationTests/java/module-info.java`).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  5. src/time/time.go

    // ago that all the times we care about will be positive, and then round
    // to zero and round down coincide. These presentation routines already
    // have to add the zone offset, so adding the translation to the
    // alternate epoch is cheap. For example, having a non-negative time t
    // means that we can write
    //
    //	sec = t % 60
    //
    // instead of
    //
    //	sec = t % 60
    //	if sec < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  6. configure.py

        question: optional string for how to ask for user input.
        yes_reply: optional string for reply when feature is enabled.
        no_reply: optional string for reply when feature is disabled.
        bazel_config_name: adding config to .bazelrc instead of action_env.
      """
      var = int(
          get_var(environ_cp, var_name, query_item, enabled_by_default, question,
                  yes_reply, no_reply))
    
      if not bazel_config_name:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    performs in-function propagation, as well as cross-function propagation from
    callers to callees.
    
    This pass changes the module by adding "tf.device" attribute to function
    arguments and adding "device" attribute to TF ops.
    
    For example, given the function
    
    ```mlir
      !tf_res = type tensor<*x!tf_type.resource<tensor<32xf32>>>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  8. src/index/suffixarray/sais2.go

    	// N*8 bits of a word, and then bitwise inverts the result.
    	// That is, the text sequence A B C (hex 41 42 43)
    	// encodes as ^uint64(0x42_43_44).
    	// LMS-substrings can never start or end with 0xFF.
    	// Adding 1 ensures the encoded byte sequence never
    	// starts or ends with 0x00, so that present bytes can be
    	// distinguished from zero-padding in the top bits,
    	// so the length need not be separately encoded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Synchronized.java

     *
     * @author Mike Bostock
     * @author Jared Levy
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    /*
     * I have decided not to bother adding @ParametricNullness annotations in this class. Adding them is
     * a lot of busy work, and the annotation matters only when the APIs to be annotated are visible to
     * Kotlin code. In this class, nothing is publicly visible (nor exposed indirectly through a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Synchronized.java

     *
     * @author Mike Bostock
     * @author Jared Levy
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    /*
     * I have decided not to bother adding @ParametricNullness annotations in this class. Adding them is
     * a lot of busy work, and the annotation matters only when the APIs to be annotated are visible to
     * Kotlin code. In this class, nothing is publicly visible (nor exposed indirectly through a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
Back to top