Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,330 for createId (0.24 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_restore_op.cc

        return;
      }
    
      std::vector<TF::VarHandleOp> target_var_handle_ops =
          CollectVariableOps(session_init_func);
      if (target_var_handle_ops.empty()) {
        LOG(INFO) << "There are no VarHandleOps to restore. RestoreV2 op will not "
                     "be created.";
        return;
      }
    
      CreateRestoreV2Op(target_var_handle_ops, session_init_func);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 12 06:02:20 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. samples/kind-lb/README.md

    when it creates a k8s cluster. This parameter is used as the 3rd octet for the
    public IP v4 addresses when a load balancer is created. The default value is 255.
    The first two octets are determined by the docker network created by `KinD`, the 4th octet
    is hard coded as 200-240. As you might have guessed, for each k8s cluster one can
    create at most 40 public IP v4 addresses.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/ci-systems/teamcity-create-project.png

    teamcity-create-project.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/WatchTest.java

                setupWatch(w);
                try ( SmbResource cr = new SmbFile(this.base, "created") ) {
                    cr.createNewFile();
                    assertNotified(w, FileNotifyInformation.FILE_ACTION_ADDED, "created", null);
                }
    
                try ( SmbResource cr = new SmbFile(this.base, "created2") ) {
                    cr.createNewFile();
                }
    
                setupWatch(w);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/collections/DomainObjectCollectionFactory.java

        /**
         * Creates a {@link NamedDomainObjectContainer} for managing named objects of the specified type. The given closure is used to create object instances. The name of the instance to be created is passed as a parameter to the closure.
         */
        <T> NamedDomainObjectContainer<T> newNamedDomainObjectContainer(Class<T> type, Closure factoryClosure);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/ci-systems/github-actions-create-repository.png

    github-actions-create-repository.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 19:03:12 UTC 2024
    - 311.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/ConnectCompletion.java

    /**
     * A builder that allows a {@link Connection} to be created once the underlying transport with the peer has been
     * established.
     */
    public interface ConnectCompletion {
        /**
         * Creates the connection. Uses the specified serializer for all messages.
         *
         * @return The serializer to use.
         */
        <T> RemoteConnection<T> create(StatefulSerializer<T> serializer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/FileSystem.java

        boolean isCaseSensitive();
    
        /**
         * Tells if the file system can create symbolic links. If the answer cannot be determined accurately,
         * <code>false</code> is returned.
         *
         * @return <code>true</code> if the file system can create symbolic links, <code>false</code> otherwise
         */
        boolean canCreateSymbolicLink();
    
        /**
         * Creates a symbolic link to a target file.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    	EncryptionAlgorithm kubeadmapi.EncryptionAlgorithmType
    }
    
    // CreateJoinControlPlaneKubeConfigFiles will create and write to disk the kubeconfig files required by kubeadm
    // join --control-plane workflow, plus the admin kubeconfig file used by the administrator and kubeadm itself; the
    // kubelet.conf file must not be created because it will be created and signed by the kubelet TLS bootstrap process.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  10. tests/fuzz/kube_crd_fuzzer.go

    	"istio.io/istio/pkg/config/schema/collections"
    )
    
    // FuzzKubeCRD implements a fuzzer that targets
    // the kube CRD in two steps.
    // It first creates an object with a config
    // that has had pseudo-random values inserted.
    // When a valid object has been created, it
    // tries and convert that object. If this
    // conversion fails, it panics.
    func FuzzKubeCRD(data []byte) int {
    	f := fuzz.NewConsumer(data)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 20:50:14 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top