Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 945 for picked (0.34 sec)

  1. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_combine.cc

            op, {move_input_op_0.getOperand(0), move_input_op_0.getOperand(1)});
        return mlir::success();
      }
    };
    
    // Register rewrite pattern as "canonicalization" patterns on the MoveDhtToTftOp
    // so that they can be picked up by the Canonicalization framework.
    void mlir::tfd::ConvertTftToDhtOp::getCanonicalizationPatterns(
        RewritePatternSet& results, MLIRContext* context) {
      results.add<SimplifyDoubleConversion>(context);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 09 12:09:19 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/preemption/preemption.go

    // 5. If there are still ties, node with the latest start time of all highest priority victims is picked.
    // 6. If there are still ties, the first such node is picked (sort of randomly).
    // The 'minNodes1' and 'minNodes2' are being reused here to save the memory
    // allocation and garbage collection time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/MultiProjectContinuousIntegrationTest.groovy

            // MacOS builds with Intel machines can be too fast on CI and
            // changes generated during build are picked up only after the build which retriggers the build
            // Fix for issue: https://github.com/gradle/gradle-private/issues/3728
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. src/crypto/aes/modes_test.go

    // license that can be found in the LICENSE file.
    
    package aes
    
    import (
    	"crypto/cipher"
    	"testing"
    )
    
    // Check that the optimized implementations of cipher modes will
    // be picked up correctly.
    
    // testInterface can be asserted to check that a type originates
    // from this test group.
    type testInterface interface {
    	InAESPackage() bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 15:32:26 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/JvmInstallationMetadataComparatorTest.groovy

            when:
            metadata.sort(new JvmInstallationMetadataComparator(getJavaHome()))
    
            then:
            metadata == [nextJdk, prevJdk]
        }
    
        def "current JVM is picked above all else"() {
            given:
            def metadata = [
                jvmMetadata("8.2", true, AMAZON),
                jvmMetadata("8.3", true, AMAZON),
                jvmMetadata("8.1", true, AMAZON,),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/integration/node_expansion_pass.cc

      Fprint128 cache_key =
          orig_op->MutableAttrs()->CacheKey(orig_op->DeviceName());
      // Include soft placement policy in cache key since the placement strategy
      // can change and thus affect which kernel is picked.
      auto x = FingerprintCat64(cache_key.high64, cache_key.low64);
      std::string fname =
          absl::StrCat("_expanded_", ndef.name(), "_", std::to_string(x));
      if (!ctx.FindFunctionByName(fname)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Feb 25 16:22:36 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractKotlinPluginSmokeTest.groovy

                            js(IR) { browser() }
                        }
                    """
                }
    
                /*
                 * Register validation failures due to unsupported nested types
                 * The issue picked up by validation was fixed in Kotlin 1.7.2,
                 * see https://youtrack.jetbrains.com/issue/KT-51532
                 */
                if (version == '1.7.0') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/rest/create.go

    	if kerr != nil {
    		return kerr
    	}
    
    	if len(objectMeta.GetGenerateName()) == 0 {
    		// If we don't have a generated name, return the original error (AlreadyExists).
    		// When we're here, the user picked a name that is causing a conflict.
    		return err
    	}
    
    	// Get the group resource information from the context, if populated.
    	gr := schema.GroupResource{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  9. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/DependencyGenerator.groovy

     *
     * For example when numberOfProjects = 150, 10 layers will be created with sizes of
     * [1, 2, 6, 16, 50, 50, 16, 6, 2, 1]
     *
     * The dependencies are picked randomly with a random number generator that is seeded with the project number.
     * This way the function returns the same results each time it is evaluated.
     */
    class DependencyGenerator {
        Integer numberOfProjects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  10. pkg/kubelet/pluginmanager/pluginwatcher/example_handler.go

    	p.m.Lock()
    	defer p.m.Unlock()
    
    	v, ok := p.ExpectedNames[pluginName]
    	if !ok {
    		v = -1
    	}
    
    	return v, ok
    }
    
    // Dial establishes the gRPC communication with the picked up plugin socket. https://godoc.org/google.golang.org/grpc#Dial
    func dial(unixSocketPath string, timeout time.Duration) (registerapi.RegistrationClient, *grpc.ClientConn, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 12:00:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top