Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for useN (0.11 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #  define GTEST_HAS_TR1_TUPLE 0
    # else
    // The user didn't tell us not to do it, so we assume it's OK.
    #  define GTEST_HAS_TR1_TUPLE 1
    # endif
    #endif  // GTEST_HAS_TR1_TUPLE
    
    // Determines whether Google Test's own tr1 tuple implementation
    // should be used.
    #ifndef GTEST_USE_OWN_TR1_TUPLE
    // The user didn't tell us, so we need to figure it out.
    
    // We use our own TR1 tuple if we aren't sure the user has an
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/GradleRunner.java

        /**
         * Sets the directory to use for TestKit's working storage needs.
         * <p>
         * This directory is used internally to store various files required by the runner.
         * If no explicit Gradle user home is specified via the build arguments (i.e. the {@code -g «dir»} option}),
         * this directory will also be used for the Gradle user home for the test build.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/GradleEnterprisePluginEndOfBuildListener.java

    package org.gradle.internal.enterprise;
    
    import org.gradle.api.problems.internal.Problem;
    
    import javax.annotation.Nullable;
    import java.util.Collection;
    
    /**
     * Used to signal the end of build to the plugin.
     *
     * Uses a specific listener to guarantee being invoked after user buildFinished callbacks.
     * Expected to be invoked once for a build tree.
     *
     * Implemented by the Enterprise plugin.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    	nospill regMask
    
    	// mask of registers currently in use
    	used regMask
    
    	// mask of registers used since the start of the current block
    	usedSinceBlockStart regMask
    
    	// mask of registers used in the current instruction
    	tmpused regMask
    
    	// current block we're working on
    	curBlock *Block
    
    	// cache of use records
    	freeUseRecords *use
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. pkg/config/constants/constants.go

    	ThirdPartyJwtPath = "./var/run/secrets/tokens/istio-token"
    
    	// CertProviderIstiod uses istiod self signed DNS certificates for the control plane
    	CertProviderIstiod = "istiod"
    	// CertProviderKubernetes uses the Kubernetes CSR API to generate a DNS certificate for the control plane
    	// This used to use the no longer supported default K8S signer.
    	// Deprecated - used to detect the old setting and generate the error message.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/testing/GcFinalization.java

        // load timeout multiplier.  Or we could try to use a CPU time bound instead of wall clock time
        // bound.  But these ideas are harder to implement.  We do not try to detect or handle a
        // user-specified -XX:+DisableExplicitGC.
        //
        // TODO(user): Consider using
        // java/lang/management/OperatingSystemMXBean.html#getSystemLoadAverage()
        //
        // TODO(user): Consider scaling by number of mutator threads,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        ResourceArgUseInfo info;
        info.used = false;
        info.updated = false;
        bool read_or_assigned = false;
        bool used_in_unsupported_op = false;
        for (auto user : arg.getUsers()) {
          if (user == return_op) continue;
          info.used = true;
          if (auto read = llvm::dyn_cast<TF::ReadVariableOp>(user)) {
            read_or_assigned = true;
            info.data_type = read.getType();
            continue;
          }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/README.md

      package provides a hook for Go toolchain programs to upload telemetry data,
      if the user has opted in to telemetry uploading.
    - The [x/telemetry/cmd/gotelemetry](https://pkg.go.dev/pkg/golang.org/x/telemetry/cmd/gotelemetry)
      command is used for managing telemetry data and configuration.
    - The [x/telemetry/config](https://pkg.go.dev/pkg/golang.org/x/telemetry/config)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MappingProvider.java

    /**
     * <p>A mapping provider that uses a transform that:</p>
     *
     * <ul>
     *     <li>1. does not use the value contents</li>
     *     <li>2. always produces a non-null value.</li>
     * </ul>
     *
     * <p>This implementation is used only for internal transforms where these constraints are known to be true.
     * For user provided mappings and other internal mappings, {@link TransformBackedProvider} is used instead.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CrossBuildInMemoryCacheFactory.java

     *
     * Note that this implementation should only be used to create global scoped services.
     * Note that this implementation currently retains strong references to keys and values during the whole lifetime of a build session.
     *
     * Uses a simple algorithm to collect unused values, by retaining strong references to all keys and values used during the current build session, and the previous build session.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top