Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,330 for createId (0.25 sec)

  1. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

     *       verified or created.
     *   <li>If a new edge needs to be created, the outgoing edges of the acquired locks are traversed
     *       to check for a cycle that reaches the lock to be acquired. If no cycle is detected, a new
     *       "safe" edge is created.
     *   <li>If a cycle is detected, an "unsafe" (cyclic) edge is created to represent a potential
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/pod_test.go

    	createPod("128.0.0.2", "pod")
    	assert.Equal(t, c.pods.getPodKeys("128.0.0.2"), []types.NamespacedName{{Name: "pod", Namespace: "ns"}})
    	assert.Equal(t, c.pods.getPodKeys("128.0.0.1"), nil)
    
    	// A new pod is created with the old IP. We should get new-pod, not pod
    	createPod("128.0.0.1", "new-pod")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 18:27:40 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission_test.go

    	if err != nil {
    		t.Errorf("unexpected error returned from admission handler")
    	}
    }
    
    // TestAdmissionNamespaceTerminating verifies a resource is not created when the namespace is active.
    func TestAdmissionNamespaceTerminating(t *testing.T) {
    	namespace := "test"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      // Create return op for device computation region in the paralle_execute op
      Operation* after_op_r = builder.create<mlir::tf_device::ReturnOp>(
          new_device_cluster.getLoc(), device_results);
    
      builder.setInsertionPointToEnd(&parallel_execute_device_block);
    
      // Create return op for the new device cluster op
      builder.create<mlir::tf_device::ReturnOp>(device_cluster.getLoc(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  10. 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)
Back to top