Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 114 for createFn (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Creates a pass that drops `shape_invariant` attribute from While/WhileRegion
    // ops.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateDropWhileShapeInvariantPass();
    
    // Creates a pass that drops `shape_invariant` attribute from While/WhileRegion
    // ops within device cluster.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateDropWhileShapeInvariantInDeviceClusterPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

        create-cloud-nat-router
        write-cluster-location
        write-cluster-name
        create-autoscaler-config
        create-master
        create-nodes-firewall
        create-nodes-template
        if [[ "${KUBE_CREATE_NODES}" == "true" ]]; then
          # Windows nodes take longer to boot and setup so create them first.
          create-windows-nodes
          create-linux-nodes
        fi
        check-cluster
      fi
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/BuildTreeConfigurationCache.kt

        /**
         * Loads a cached intermediate model, if available, or else runs the given function to create it and then writes the result to the cache.
         *
         * @param identityPath The project for which the model should be created, or null for a build scoped model.
         */
        fun <T> loadOrCreateIntermediateModel(identityPath: Path?, modelName: String, parameter: ToolingModelParameterCarrier?, creator: () -> T?): T?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/ide/problems-api/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = """A problems description API
        |
        |This project provides base classes to describe problems and their
        |solutions, in a way that enforces the creation of good error messages.
        |
        |It's a stripped down version of the original code available
        |at https://github.com/melix/jdoctor/
    """.trimMargin()
    
    gradlebuildJava.usedInWorkers()
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    	chainTableLookupSet := sets.New[string]()
    	for _, r := range rules {
    		chainTable := fmt.Sprintf("%s:%s", r.chain, r.table)
    		// Create new chain if key: `chainTable` isn't present in map
    		if !chainTableLookupSet.Contains(chainTable) {
    			// Ignore chain creation for built-in chains for iptables
    			if _, present := constants.BuiltInChainsMap[r.chain]; !present {
    				cmd := []string{"-t", r.table, "-N", r.chain}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

          tensorflow::GetTypeFromTFTensorShape({1}, shape_dtype);
      auto expanded_start_index = rewriter->create<TF::ExpandDimsOp>(
          loc, vector_type, start_index, scalar_zero);
      auto start_position = rewriter->create<TF::ConcatOp>(
          loc, position_type, scalar_zero,
          ArrayRef<Value>({expanded_start_index, partial_start_position}));
    
      // Create the slice size tensor. This is done by concatenating `size` and
      // `partial_size`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  7. cmd/erasure-healing_test.go

    	// created when the disk was down.
    	err = os.RemoveAll(path.Join(fsDirs[0], bucket))
    	if err != nil {
    		t.Fatal(err)
    	}
    	// This would create the bucket.
    	_, err = obj.HealBucket(ctx, bucket, madmin.HealOpts{
    		DryRun: false,
    		Remove: false,
    	})
    	if err != nil {
    		t.Fatal(err)
    	}
    	// Stat the bucket to make sure that it was created.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  8. cmd/sts-handlers_test.go

    	defer cancel()
    
    	// Create project buckets
    	buckets := []string{"projecta", "projectb", "projectaorb", "other"}
    	for _, bucket := range buckets {
    		err := s.client.MakeBucket(ctx, bucket, minio.MakeBucketOptions{})
    		if err != nil {
    			c.Fatalf("bucket create error: %v", err)
    		}
    	}
    
    	// Create policies
    	for polName, polContent := range policyProjectsMap {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

            "'files=' + tree.files.name.sort()"                                                             | "files=[]"       | "files=[file1]"
            "'files=' + { def names = new TreeSet(); tree.visit { d -> names.add(d.file.name) }; names }()" | "files=[]"       | "files=[file1]"
            // TODO - should not invalidate the cache when the empty root directory is created
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/stream_executor/stream_executor.cc

        const StreamExecutorConfig& config) {
      // Fill device creation params
      SE_CreateDeviceParams device_params{SE_CREATE_DEVICE_PARAMS_STRUCT_SIZE};
      SP_Device device{SP_DEVICE_STRUCT_SIZE};
      device_params.device = &device;
      device_params.ext = nullptr;
      device_params.ordinal = config.ordinal;
      OwnedTFStatus c_status(TF_NewStatus());
    
      // Create Device
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top