Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 672 for doPing (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    Build configuration inputs include:
    
    * Init scripts
    * Settings scripts
    * Build scripts
    * System properties used during the configuration phase
    * Gradle properties used during the configuration phase
    * Environment variables used during the configuration phase
    * Configuration files accessed using value suppliers such as providers
    * `buildSrc` inputs, including build configuration inputs and source files
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/map.go

    // is a bit more involved so will require some more precise benchmarking to
    // justify it.
    
    type undUpperCaser struct{ transform.NopResetter }
    
    // undUpperCaser implements the Transformer interface for doing an upper case
    // mapping for the root locale (und). It eliminates the need for an allocation
    // as it prevents escaping by not using function pointers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. src/runtime/runtime1.go

    // overwriting older settings with newer ones.
    // If seen != nil, $GODEBUG has changed and we are doing an
    // incremental update. To avoid flapping in the case where a value is
    // set multiple times (perhaps in the default and the environment,
    // or perhaps twice in the environment), we process the string right-to-left
    // and only change values not already seen. After doing this for both
    // the environment and the default settings, the caller must also call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/Striped64.java

       * resizing the table, as well as populating slots with new Cells.
       * There is no need for a blocking lock; when the lock is not
       * available, threads try other slots (or the base).  During these
       * retries, there is increased contention and reduced locality,
       * which is still better than alternatives.
       *
       * Per-thread hash codes are initialized to random values.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/Striped64.java

       * resizing the table, as well as populating slots with new Cells.
       * There is no need for a blocking lock; when the lock is not
       * available, threads try other slots (or the base).  During these
       * retries, there is increased contention and reduced locality,
       * which is still better than alternatives.
       *
       * Per-thread hash codes are initialized to random values.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/Striped64.java

       * resizing the table, as well as populating slots with new Cells.
       * There is no need for a blocking lock; when the lock is not
       * available, threads try other slots (or the base).  During these
       * retries, there is increased contention and reduced locality,
       * which is still better than alternatives.
       *
       * Per-thread hash codes are initialized to random values.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. tensorflow/cc/experimental/libtf/value.h

          case CAPSULE:
            return data_.capsule.get() == o.data_.capsule.get();
          case NONE:
            return true;
        }
      }
    
      /// @brief Implements visitor pattern for doing type-based dispatch.
      ///
      /// @tparam R The desired return type.
      /// @tparam Visitor The visitor class which has a callable operator.
      /// @return The `visitor` called on the correct value.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/types.go

    }
    
    // Match returns true if ClusterEvent is matched with the coming event.
    // If the ce.Resource is "*", there's no requirement for the coming event' Resource.
    // Contrarily, if the coming event's Resource is "*", the ce.Resource should only be "*".
    //
    // Note: we have a special case here when the coming event is a wildcard event,
    // it will force all Pods to move to activeQ/backoffQ,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  9. src/runtime/iface.go

    }
    
    // panicdottypeE is called when doing an e.(T) conversion and the conversion fails.
    // have = the dynamic type we have.
    // want = the static type we're trying to convert to.
    // iface = the static type we're converting from.
    func panicdottypeE(have, want, iface *_type) {
    	panic(&TypeAssertionError{iface, have, want, ""})
    }
    
    // panicdottypeI is called when doing an i.(T) conversion and the conversion fails.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	// SkipOpenAPIInstallation indicates not to install the OpenAPI handler
    	// during PrepareRun.
    	// Set this to true when the specific API Server has its own OpenAPI handler
    	// (e.g. kube-aggregator)
    	skipOpenAPIInstallation bool
    
    	// OpenAPIVersionedService controls the /openapi/v2 endpoint, and can be used to update the served spec.
    	// It is set during PrepareRun if `openAPIConfig` is non-nil unless `skipOpenAPIInstallation` is true.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
Back to top