Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 384 for minipay (0.24 sec)

  1. tensorflow/compiler/aot/benchmark.cc

    ==============================================================================*/
    
    // The purpose of the benchmark library is to support building an aot binary
    // with minimal dependencies, to demonstrate small binary sizes.
    //
    // KEEP THE DEPENDENCIES MINIMAL.
    
    #include "tensorflow/compiler/aot/benchmark.h"
    
    #include <sys/time.h>
    
    #include <algorithm>
    #include <string>
    #include <utility>
    #include <vector>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 19:45:29 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. manifests/charts/UPDATING-CHARTS.md

    However, that doesn't necessarily mean a PR to add a value will be accepted.
    The `values.yaml` API is intended to maintain a *minimal core set of configuration* that most users will use.
    For bespoke use cases, [Helm Chart Customization](https://istio.io/latest/docs/setup/additional-setup/customize-installation-helm/#advanced-helm-chart-customization) can be used
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/MinimalFileCollection.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.file.collections;
    
    /**
     * A minimal file collection. An implementation can optionally also implement the following interfaces:
     *
     * <ul>
     * <li>{@link org.gradle.api.Buildable}</li>
     * <li>{@link RandomAccessFileCollection}</li>
     * </ul>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 963 bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/MinimalExternalModuleDependency.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.artifacts;
    
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * The minimal information Gradle needs to address an external module.
     *
     * @since 6.8
     */
    @HasInternalProtocol
    public interface MinimalExternalModuleDependency extends ExternalModuleDependency {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue57522.go

    package p
    
    // A simplified version of the code in the original report.
    type S[T any] struct{}
    var V = S[any]{}
    func (fs *S[T]) M(V.M /* ERROR "V.M is not a type" */) {}
    
    // Other minimal reproducers.
    type S1[T any] V1.M /* ERROR "V1.M is not a type" */
    type V1 = S1[any]
    
    type S2[T any] struct{}
    type V2 = S2[any]
    func (fs *S2[T]) M(x V2.M /* ERROR "V2.M is not a type" */ ) {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 11 22:29:34 UTC 2023
    - 728 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // package options is the public flags and options used by a generic api
    // server. It takes a minimal set of dependencies and does not reference
    // implementations, in order to ensure it may be reused by multiple components
    // (such as CLI commands that wish to generate or validate config).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 01 20:18:33 UTC 2017
    - 928 bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/complete-model/w-parent/pom.xml

    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.mng</groupId>
      <artifactId>parent</artifactId>
      <version>0.1</version>
      <packaging>pom</packaging>
    
      <!-- minimal parent just to have one more level of inheritance -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/Service.java

       * {@code A -> B}.
       *
       * @since 9.0 (in 1.0 as {@code com.google.common.base.Service.State})
       */
      enum State {
        /** A service in this state is inactive. It does minimal work and consumes minimal resources. */
        NEW,
    
        /** A service in this state is transitioning to {@link #RUNNING}. */
        STARTING,
    
        /** A service in this state is operational. */
        RUNNING,
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  9. .idea/dictionaries/bashor.xml

          <w>binaryen</w>
          <w>ctor</w>
          <w>inlining</w>
          <w>interner</w>
          <w>intrinsicify</w>
          <w>kclass</w>
          <w>lookups</w>
          <w>minification</w>
          <w>minifier</w>
          <w>minify</w>
          <w>unescape</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Nov 09 12:44:39 UTC 2022
    - 365 bytes
    - Viewed (0)
  10. pkg/kubelet/preemption/preemption.go

    // frees up the required resource requests.  The set of pods is designed to minimize impact, and is prioritized according to the ordering:
    // minimal impact for guaranteed pods > minimal impact for burstable pods > minimal impact for besteffort pods.
    // minimal impact is defined as follows: fewest pods evicted > fewest total requests of pods.
    // finding the fewest total requests of pods is considered besteffort.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 16:53:19 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top