Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,964 for importing (0.13 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

      //   f = scale * (q - zero_point)
      // For other quantization types, the QuantizationDetails below is used.
      min:[float];  // For importing back into tensorflow.
      max:[float];  // For importing back into tensorflow.
      scale:[float];  // For dequantizing the tensor's values.
      zero_point:[long];
    
      // If this is not none, the other quantization parameters (i.e. min, max,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenVersionRangeResolveIntegrationTest.groovy

                        edge("org.test:dep:2.1", "org.test:dep:2.1")
                    }
                }
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/1898")
        def "can resolve pom importing version range"() {
            given:
            settingsFile << "rootProject.name = 'test' "
            buildFile << """
    repositories {
        maven {
            url "${mavenRepo.uri}"
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. cluster/gce/gci/flexvolume_node_setup.sh

    #!/usr/bin/env bash
    chroot ${MOUNTER_PATH} ${driver_path} "\$@"
    EOF
    
          chmod 755 "$wrapper_path"
          echo "FlexVolume driver installed at ${wrapper_path}"
        fi
      done
    }
    
    echo
    echo "Importing mount utility image from Container Registry..."
    echo
    
    METADATA=http://metadata.google.internal/computeMetadata/v1
    SVC_ACCT_ENDPOINT=$METADATA/instance/service-accounts/default
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 13 17:58:51 UTC 2020
    - 5.8K bytes
    - Viewed (0)
  4. src/go/internal/srcimporter/srcimporter_test.go

    		}
    		return
    	}
    	t.Logf("import %q: %v", path, time.Since(t0))
    }
    
    // walkDir imports the all the packages with the given path
    // prefix recursively. It returns the number of packages
    // imported and whether importing was aborted because time
    // has passed endTime.
    func walkDir(t *testing.T, path string, endTime time.Time) (int, bool) {
    	if time.Now().After(endTime) {
    		t.Log("testing time used up")
    		return 0, true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/optimize.cc

      // canonicalize/optimizer.
      static mlir::PassPipelineRegistration<StandardPipelineOptions> pipeline(
          "tf-standard-pipeline",
          "Run all the passes involved in transforming/optimizing the graph after "
          "importing into MLIR, without any target specialization.",
          CreateTFStandardPipeline);
    }
    
    }  // namespace TF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      //   f = scale * (q - zero_point)
      // For other quantization types, the QuantizationDetails below is used.
      min:[float];  // For importing back into tensorflow.
      max:[float];  // For importing back into tensorflow.
      scale:[float];  // For dequantizing the tensor's values.
      zero_point:[long];
    
      // If this is not none, the other quantization parameters (i.e. min, max,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/background-tasks.md

    It is imported/included directly into FastAPI so that you can import it from `fastapi` and avoid accidentally importing the alternative `BackgroundTask` (without the `s` at the end) from `starlette.background`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. tests/testdata/config/none.yaml

      namespace: none
    spec:
      egress:
        - hosts:
            - none/*
            - default/test.default # TODO: without namespace it  fails validation !
          # TODO: if we include the namespace, why do we need full name ? Importing regular services should work.
    
      # Label selection seems to confuse the new code.
      ingress:
        - port:
            number: 7071
            protocol: HTTP
            name: httplocal
          defaultEndpoint: 127.0.0.1:17071
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/preconditions/IntegTestPreconditions.groovy

    import org.gradle.util.internal.VersionNumber
    
    // These imports are required, IntelliJ incorrectly thinks that they are not used because old versions of Groovy
    // permitted subtypes to use the parent type's methods without importing them
    import static org.gradle.test.precondition.TestPrecondition.satisfied;
    import static org.gradle.test.precondition.TestPrecondition.notSatisfied;
    
    class IntegTestPreconditions {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/graph_pruning.cc

      void PruneGraph(GraphOp graph);
    
      llvm::SmallDenseSet<mlir::StringAttr, 4> ops_to_preserve_ids_;
    };
    
    // Checks if a tf_executor.Graph can be pruned.
    // For TensorFlow V1.0 compatibility: when importing a graph without providing
    // feeds/fetches/targets we should not attempt to prune. The best approximation
    // here is to check if the graph is of the "main" function and does not have the
    // "tf.entry_function" attribute defined.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 7.6K bytes
    - Viewed (0)
Back to top