Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for def2 (0.06 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            def outputDir1 = gradleUserHomeOutputDir("lib1.jar", "lib1.jar.txt")
            def outputDir2 = gradleUserHomeOutputDir("lib2.jar", "lib2.jar.txt")
            def outputDir3 = gradleUserHomeOutputDir("lib3.jar", "lib3.jar.txt")
            def outputDir4 = gradleUserHomeOutputDir("lib4-1.0.jar", "lib4-1.0.jar.txt")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    def TFL_I4 : I<4>;
    def TFL_Int32Or64 : SignlessIntOfWidths<[32, 64]>;
    
    def TFL_BoolTensor : TFL_TensorOf<[I1]>;
    def TFL_FpTensor : TFL_TensorOf<[F32]>;
    def TFL_I32OrI64Tensor : TFL_TensorOf<[TFL_Int32Or64]>;
    def TFL_I32Tensor : TFL_TensorOf<[I32]>;
    def TFL_I64Tensor : TFL_TensorOf<[I64]>;
    def TFL_Complex64Tensor : TFL_TensorOf<[Complex<F<32>>]>;
    def TFL_ResourceTensor : TFL_TensorOf<[TF_Resource]>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerCachingSmokeTest.groovy

    class AndroidSantaTrackerCachingSmokeTest extends AbstractAndroidSantaTrackerSmokeTest {
    
        def "can cache Santa Tracker Android application (agp=#agpVersion)"() {
    
            given:
            AGP_VERSIONS.assumeCurrentJavaVersionIsSupportedBy(agpVersion)
    
            and:
            def originalDir = temporaryFolder.createDir("original")
            def relocatedDir = temporaryFolder.createDir("relocated")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 13:45:43 UTC 2024
    - 209.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        Operation* def = use.getOwner();
        if (!llvm::isa<AssignVariableOp>(def) && !llvm::isa<ReadVariableOp>(def)) {
          return false;
        }
      }
    
      bool changed = false;
    
      // Look for any `AssignVariableOp` and `ReadVariableOp` that uses the value of
      // this op.
      for (auto& use : make_early_inc_range(resource.getUses())) {
        Operation* def = use.getOwner();
        Value value;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      int subgraph_idx = 0;
    
      // Entry functions for signature defs.
      std::vector<FuncOp> entry_functions;
      std::vector<FuncOp> non_entry_functions;
      FuncOp main_fn = module_.lookupSymbol<FuncOp>("main");
      if (main_fn != nullptr) {
        // Treat the main function as a signature def when the given main function
        // contains on the tf.entry_function attribute.
        auto attrs =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    //
    // The environment variable must be quoted correctly for
    // quoted.Split. This should be done before building
    // anything, for example, in BuildInit.
    func envList(key, def string) []string {
    	v := cfg.Getenv(key)
    	if v == "" {
    		v = def
    	}
    	args, err := quoted.Split(v)
    	if err != nil {
    		panic(fmt.Sprintf("could not parse environment variable %s with value %q: %v", key, v, err))
    	}
    	return args
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    			t.Errorf("constructed struct %v not equal to itself", v1.Interface())
    		}
    
    		v1.FieldByIndex(table.idx).Set(ValueOf("abc"))
    		v2.FieldByIndex(table.idx).Set(ValueOf("def"))
    		if i1, i2 := v1.Interface(), v2.Interface(); DeepEqual(i1, i2) {
    			t.Errorf("constructed structs %v and %v should not be equal", i1, i2)
    		}
    
    		abc := "abc"
    		v1.FieldByIndex(table.idx).Set(ValueOf(abc))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top