Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,170 for createFn (0.17 sec)

  1. pkg/controller/statefulset/stateful_pod_control.go

    func (spc *StatefulPodControl) CreateStatefulPod(ctx context.Context, set *apps.StatefulSet, pod *v1.Pod) error {
    	// Create the Pod's PVCs prior to creating the Pod
    	if err := spc.createPersistentVolumeClaims(set, pod); err != nil {
    		spc.recordPodEvent("create", set, pod, err)
    		return err
    	}
    	// If we created the PVCs attempt to create the Pod
    	err := spc.objectMgr.CreatePod(ctx, pod)
    	// sink already exists errors
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. 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)
  3. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshots.yaml

                      description: error is the last observed error during snapshot creation, if any. This field could be helpful to upper level controllers(i.e., application controller) to decide whether they should continue on waiting for the snapshot to be created based on the type of error reported. The snapshot controller will keep retrying when an error occurs during the snapshot creation. Upon success, this error field will be cleared.
                      properties:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 20.9K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/id/ConfigurationCacheableIdFactoryTest.groovy

            when:
            factory.createId()
            then:
            def e = thrown(IllegalStateException)
            e.message == "Cannot create a new id after one has been loaded"
    
            // repeating creation still throws an exception
            when:
            factory.createId()
            then:
            def e2 = thrown(IllegalStateException)
            e2.message == "Cannot create a new id after one has been loaded"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 23 15:27:22 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_save_op.cc

      return builder.create<TF::ConstOp>(
          loc, DenseStringElementsAttr::get(
                   tensor_type,
                   SmallVector<StringRef>(str_values.begin(), str_values.end())));
    }
    
    // Creates a 1D string array constant for "tensor_names" input of `RestoreV2`
    // op. The `ConstOp` will be created at `builder`'s current insertion point.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_restore_op.cc

                             NameLoc::get(file_prefix_attr));
    
      return func_op.getArgument(insert_idx);
    }
    
    // Creates a 1D string array constant for "tensor_names" input of `RestoreV2`
    // op. The `ConstOp` will be created at `builder`'s current insertion point.
    TF::ConstOp CreateTensorNamesConst(const ArrayRef<std::string> tensor_names,
                                       OpBuilder& builder) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 12 06:02:20 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download_windows.go

    	// (see x/telemetry/start_windows.go) The console creation behavior when
    	// a parent is a console process without console is not clearly documented
    	// but empirically we observed the new console is created and attached to the
    	// subprocess in the default setup.
    	//
    	// Ensure no new console is attached to the subprocess by setting CREATE_NO_WINDOW.
    	//   https://learn.microsoft.com/en-us/windows/console/creation-of-a-console
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/PolymorphicDomainObjectContainer.java

         *
         * @param type the type of the domain object to be created
         *
         * @param <U> the type of the domain object to be created
         *
         * @return the created domain object
         *
         * @throws InvalidUserDataException if a domain object with the specified name already exists
         * or the container does not support creating a domain object with the specified type
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 27 15:00:20 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/project/taskfactory/TaskIdentityFactory.java

        public TaskIdentityFactory(ConfigurationCacheableIdFactory idFactory) {
            this.idFactory = idFactory;
        }
    
        /**
         * Create a task identity.
         */
        public <T extends Task> TaskIdentity<T> create(String name, Class<T> type, ProjectInternal project) {
            long id = idFactory.createId();
            return doCreate(name, type, project, id);
        }
    
        /**
         * Recreate a task identity.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top