Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,190 for createId (0.13 sec)

  1. tensorflow/cc/ops/while_loop.cc

    // before the NextIteration node is created.
    string NextIterationName(const Scope& scope, int loop_var_idx) {
      string result;
      const string& prefix = scope.impl()->name();
      if (!prefix.empty()) strings::StrAppend(&result, prefix, "/");
      strings::StrAppend(&result, "NextIteration");
      if (loop_var_idx > 0) strings::StrAppend(&result, "_", loop_var_idx);
      return result;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 01:01:21 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ExtensionContainerExtensions.kt

    }
    
    
    /**
     * Creates and adds a new extension to this container.
     *
     * @param T the instance type of the new extension
     * @param name the extension's name
     * @param constructionArguments construction arguments
     * @return the created instance
     *
     * @see [ExtensionContainer.create]
     * @since 5.0
     */
    inline fun <reified T : Any> ExtensionContainer.create(name: String, vararg constructionArguments: Any): T =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskCreationIntegrationTest.groovy

            outputContains("Create :task2")
            outputContains("Configure :task2")
    
            when:
            run("task2")
    
            then:
            outputContains("Create :task1")
            outputContains("Configure :task1")
            outputContains("Create :task2")
            outputContains("Configure :task2")
        }
    
        def "task is created and configured when referenced during configuration"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 13 09:05:07 UTC 2021
    - 9.8K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/scope_internal.h

      bool single_use_scope() const { return scope_used_ != nullptr; }
    
      // The graph, status, and name maps are shared by all child scopes
      // created from a single 'root' scope. A root scope is created by calling the
      // Scope::NewRootScope function, which creates a new graph, a new status and
      // the name maps.
      std::shared_ptr<Graph> graph_ = nullptr;
      std::shared_ptr<Status> status_ = nullptr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:46:43 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  5. releasenotes/notes/revision-install-create-istiod-service.yaml

    Sam Naser <******@****.***> 1620416493 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 07 19:41:33 UTC 2021
    - 453 bytes
    - Viewed (0)
  6. src/internal/trace/testdata/tests/go122-create-syscall-with-p.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 624 bytes
    - Viewed (0)
  7. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/jansi/JansiLibraryFactoryIntegrationTest.groovy

    class JansiLibraryFactoryIntegrationTest extends Specification {
    
        def factory = new JansiLibraryFactory()
    
        @Requires(UnitTestPreconditions.MacOs)
        def "jansi library can be created for MacOSX"() {
            when:
            JansiLibrary jansiLibrary = factory.create()
    
            then:
            jansiLibrary.platform == JansiOperatingSystemSupport.MAC_OS_X.identifier
            jansiLibrary.filename == MAC_OSX_LIB_FILENAME
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. pkg/volume/util/nested_volumes.go

    	"fmt"
    	"os"
    	"path/filepath"
    	"sort"
    	"strings"
    
    	v1 "k8s.io/api/core/v1"
    	podutil "k8s.io/kubernetes/pkg/api/v1/pod"
    )
    
    // getNestedMountpoints returns a list of mountpoint directories that should be created
    // for the volume indicated by name.
    // note: the returned list is relative to baseDir
    func getNestedMountpoints(name, baseDir string, pod v1.Pod) ([]string, error) {
    	var retval []string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 12:19:17 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultDependencyMetadataFactoryTest.groovy

            then:
            created.constraint
            selector.group == "g"
            selector.module == "m"
            selector.version == "1"
    
            and:
            created.artifacts.empty
            created.excludes.empty
            !created.force
            !created.transitive
            !created.changing
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. pkg/monitoring/monitoring.go

    	// RecordInt makes an observation of the provided value for the measure.
    	RecordInt(value int64)
    
    	// With creates a new Metric, with the LabelValues provided. This allows creating
    	// a set of pre-dimensioned data for recording purposes. This is primarily used
    	// for documentation and convenience. Metrics created with this method do not need
    	// to be registered (they share the registration of their parent Metric).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top