Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 157 for createFn (0.12 sec)

  1. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    converted to operations that create a new tensor representing the list.
    
    In the current implementation, the resulting operations are statically shaped,
    which means it must be possible to infer a bound on the full shape of the
    TensorList. That is, the `element_shape` and `num_elements` arguments to a
    tensor list creation op are constant.
    
    A tensor list creation op `tf.EmptyTensorList`/`tf.TensorListReserve` will be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

      Log-Output ("${Name} kubeconfig:`n" +
                  "$(Get-Content -Raw ${Path})")
    }
    
    # Creates the kube-proxy user kubeconfig file at $env:KUBEPROXY_KUBECONFIG.
    #
    # Create-NodePki() must be called first.
    #
    # Required ${kube_env} keys:
    #   CA_CERT
    #   KUBE_PROXY_TOKEN
    function Create-KubeproxyKubeconfig {
      Create-Kubeconfig -Name 'kube-proxy' `
        -Path ${env:KUBEPROXY_KUBECONFIG} `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    // data, either a memRecord or a blockRecord.
    //
    // Per-call-stack profiling information.
    // Lookup by hashing call stack into a linked-list hash table.
    //
    // None of the fields in this bucket header are modified after
    // creation, including its next and allnext links.
    //
    // No heap pointers.
    type bucket struct {
    	_       sys.NotInHeap
    	next    *bucket
    	allnext *bucket
    	typ     bucketType // memBucket or blockBucket (includes mutexProfile)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	// assume this is installed with istio
    	a.gwcls.Create(&k8sbeta.GatewayClass{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: constants.WaypointGatewayClassName,
    		},
    		Spec: k8sv1.GatewayClassSpec{
    			ControllerName: constants.ManagedGatewayMeshController,
    		},
    	})
    
    	// ns is more important now that we want to be able to annotate ns for svc, wl waypoint selection
    	// always create the testNS enabled for ambient
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        /** Returns a freshly created segment, typed at the {@code S} type. */
        S newSegment(MapMakerInternalMap<K, V, E, S> map, int initialCapacity);
    
        /**
         * Returns a freshly created entry, typed at the {@code E} type, for the given {@code segment}.
         */
        E newEntry(S segment, K key, int hash, @CheckForNull E next);
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * @param name The name of the task to be created
         * @return The newly created task object
         * @throws InvalidUserDataException If a task with the given name already exists in this project.
         */
        Task task(String name) throws InvalidUserDataException;
    
        /**
         * <p>Creates a {@link Task} with the given name and adds it to this project. A map of creation options can be
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. tensorflow/c/c_api_test.cc

      TF_Run(session, run_options, nullptr, nullptr, 0, nullptr, nullptr, 0,
             nullptr, 0, run_metadata, s);
      EXPECT_EQ(TF_INVALID_ARGUMENT, TF_GetCode(s)) << TF_Message(s);
      EXPECT_EQ("Session was not created with a graph before Run()!",
                string(TF_Message(s)));
      TF_DeleteBuffer(run_metadata);
      TF_DeleteBuffer(run_options);
    
      TF_DeleteDeprecatedSession(session, s);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      repeated string podDNSSearchNamespaces = 43;
    
      // Controls whether the creation of the sidecar injector ConfigMap should be skipped.
      // Defaults to false. When set to true, the sidecar injector ConfigMap will not be created.
      google.protobuf.BoolValue omitSidecarInjectorConfigMap = 38;
    
      // Controls whether the WebhookConfiguration resource(s) should be created. The current behavior
      // of Istiod is to manage its own webhook configurations.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	return obj, false, err
    }
    
    // Update performs an atomic update and set of the object. Returns the result of the update
    // or an error. If the registry allows create-on-update, the create flow will be executed.
    // A bool is returned along with the object and any errors, to indicate object creation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  10. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// nodeMonitorGracePeriod.
    	// TODO: Change node health monitor to watch based.
    	nodeMonitorPeriod time.Duration
    
    	// When node is just created, e.g. cluster bootstrap or node creation, we give
    	// a longer grace period.
    	nodeStartupGracePeriod time.Duration
    
    	// Controller will not proactively sync node health, but will monitor node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top