Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 105 for clonePod (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/functionalize-if.mlir

        tf_executor.fetch
      }
      func.return
    }
    
    // Match the name of the cloned function with functionalized control-flow at call site
    // CHECK: func @main()
    // CHECK: computation = @[[FUNCTIONALIZE_FUNC:[A-Za-z0-9_]*]]
    
    
    // In the newly cloned function, check that we have a _tf.If operation and capture the then and else branch.
    // CHECK: func private @[[FUNCTIONALIZE_FUNC]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVcsIntegrationTest.groovy

                }
            """
    
            when:
            succeeds('assemble')
    
            then:
            // Git repo is cloned
            def gitCheckout = checkoutDir(repo.name, commit.id.name, repo.id)
            gitCheckout.file('.git').assertExists()
            // Submodule is cloned
            gitCheckout.file('deeperDep/.git').assertExists()
            gitCheckout.file('deeperDep/foo').text == "bar"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/ClosureBackedRuleFactory.java

                            Closure<?> cloned = closure.rehydrate(null, closure.getThisObject(), closure.getThisObject());
                            ((TransformedClosure) cloned).makeRule(new PotentialInputs(modelViews, inputValues), supportsNestedRules ? ClosureBackedRuleFactory.this : null);
                            ClosureBackedAction.execute(t, cloned);
                        }
                    }));
                }
            };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. internal/s3select/simdj/record.go

    	other, ok := dst.(*Record)
    	if !ok {
    		other = &Record{}
    	}
    	other.object = r.object
    	return other
    }
    
    // CloneTo clones the record to a json Record.
    // Values are only unmashaled on object level.
    func (r *Record) CloneTo(dst *json.Record) (sql.Record, error) {
    	if dst == nil {
    		dst = &json.Record{SelectFormat: sql.SelectFmtJSON}
    	}
    	dst.Reset()
    	elems, err := r.object.Parse(nil)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/constant_op_device_assignment.cc

          StringAttr device_attr = user_op->getAttrOfType<StringAttr>(kDeviceAttr);
          if (!device_attr) {
            all_uses_replaced = false;
            continue;
          }
          // Cloned the ConstOp and set its device attribute to be the same as the
          // device of the user operation.
          if (cloned_op_by_device.find(device_attr.getValue()) ==
              cloned_op_by_device.end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/NtlmPasswordAuthentication.java

            return this.context;
        }
    
    
        @Override
        public NtlmPasswordAuthentication clone () {
            NtlmPasswordAuthentication cloned = new NtlmPasswordAuthentication();
            cloneInternal(cloned, this);
            return cloned;
        }
    
    
        /**
         * @param to
         * @param from
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  7. src/runtime/testdata/testprog/lockosthread.go

    	// thread IDs, it does this by unsharing state on that thread. This way, it
    	// also detects whether new threads were cloned from the dead thread, and not
    	// from a clean thread. Cloning from a locked thread is undesirable since
    	// cloned threads will inherit potentially unwanted OS state.
    	//
    	// unshareFs, getcwd, and chdir("/tmp") are only guaranteed to work on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:00:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/common/outline_operations.cc

      // entity. The new FuncOp body is populated by cloning partitioned ops into
      // it. Cloning Operation(s) will create cloned Value(s) for the results of a
      // cloned op, but it needs a reference to the new operand Value(s) which are
      // the result of the cloned ops. The approach is to traverse the subgraph in
      // order, accumulating clones of defined Values into a `IRMapping`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.cc

      // equivalent in the cloned range.
      const auto source_to_target = [&](int i) {
        return i + (remat.insert - remat.begin);
      };
    
      // Helper struct: bundles first and last use of a tensor within
      // a contiguous range of operations.
      struct TensorUse {
        int first_use;
        int last_use;
      };
    
      // For all tensors in the operation range to be cloned, store their first and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  10. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            gitVcs.populate(target, repoHead, repoSpec)
    
            then:
            target.file( '.git').assertIsDir()
            target.file( 'submodule/foo.txt').text == "hello from submodule"
        }
    
        def 'reset a cloned repository with dirty working dir'() {
            given:
            def target = tmpDir.file('versionDir')
            gitVcs.populate(target, repoHead, repoSpec)
    
            def removed = target.file("source.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top