Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 232 for DELETING (0.17 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

      Args:
        output_directory: Output directory.
        overwrite: Where to clean the output directory if exists.
      """
      if overwrite and file_io.file_exists_v2(output_directory):
        logging.info(
            'Deleting existing output directory: %s .',
            output_directory,
        )
        file_io.delete_recursively_v2(output_directory)
    
      file_io.recursive_create_dir_v2(output_directory)
    
    
    def _validate_signatures(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/interpodaffinity/plugin.go

    	return []framework.ClusterEventWithHint{
    		// All ActionType includes the following events:
    		// - Delete. An unschedulable Pod may fail due to violating an existing Pod's anti-affinity constraints,
    		// deleting an existing Pod may make it schedulable.
    		// - Update. Updating on an existing Pod's labels (e.g., removal) may make
    		// an unschedulable Pod schedulable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 03:08:44 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. security/pkg/k8s/configutil_test.go

    					map[string]string{dataName: "test-data"})),
    			},
    			expectedErr: "",
    			clientMod:   createConfigMapAlreadyExistClient,
    		},
    		{
    			name:              "creation: namespace is deleting",
    			existingConfigMap: nil,
    			caBundle:          caBundle,
    			meta:              metav1.ObjectMeta{Namespace: namespaceName, Name: configMapName},
    			expectedActions: []ktesting.Action{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 21:58:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

            }
        }
    
        protected boolean deleteDocument(final DataStoreParams paramMap, final Map<String, Object> dataMap) {
    
            if (logger.isDebugEnabled()) {
                logger.debug("Deleting {}", dataMap);
            }
    
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    
            // required check
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. cmd/sftp-server-driver.go

    	switch r.Method {
    	case "Setstat", "Rename", "Link", "Symlink":
    		return sftp.ErrSSHFxOpUnsupported
    
    	case "Rmdir":
    		bucket, prefix := path2BucketObject(r.Filepath)
    		if bucket == "" {
    			return errors.New("deleting all buckets not allowed")
    		}
    
    		cctx, cancel := context.WithCancel(context.Background())
    		defer cancel()
    
    		if prefix == "" {
    			// if all objects are not deleted yet this call may fail.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

        NameAttrList function;
        function.set_name(xla_function_info.function_name);
        AddNodeAttr("function", function, &def);
    
        for (Node* node : nodes_to_remove) {
          VLOG(2) << "Deleting node " << node->DebugString();
          // Ensure that we do not attempt to add control edges to nodes that are
          // deleted.
          control_inputs.erase(node);
          control_outputs.erase(node);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. cluster/gce/upgrade.sh

        exit 1
      fi
    
      echo "== Upgrading master to '${SERVER_BINARY_TAR_URL}'. Do not interrupt, deleting master instance. =="
    
      # Tries to figure out KUBE_USER/KUBE_PASSWORD by first looking under
      # kubeconfig:username, and then under kubeconfig:username-basic-auth.
      # TODO: KUBE_USER is used in generating ABAC policy which the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. build/common.sh

        if [[ "${tag}" != "${2}"* ]] ; then
          V=3 kube::log::status "Keeping image ${1}:${tag}"
          continue
        fi
    
        if [[ -z "${3:-}" || "${tag}" != "${3}" ]] ; then
          V=2 kube::log::status "Deleting image ${1}:${tag}"
          "${DOCKER[@]}" rmi "${1}:${tag}" >/dev/null
        else
          V=3 kube::log::status "Keeping image ${1}:${tag}"
        fi
      done
    }
    
    # Stop and delete all containers that match a pattern
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  9. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/DefaultGradleRunner.java

                // since file system watching on Windows adds a lock on the watched directory, which is currently the project directory.
                // After deleting the contents of the watched directory, Gradle will stop watching the directory and release the file lock.
                // That may require a retry to delete the watched directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. operator/cmd/mesh/uninstall.go

    		},
    	}
    	addFlags(uicmd, rootArgs)
    	addUninstallFlags(uicmd, uiArgs)
    	return uicmd
    }
    
    // uninstall uninstalls control plane by either pruning by target revision or deleting specified manifests.
    func uninstall(cmd *cobra.Command, ctx cli.Context, rootArgs *RootArgs, uiArgs *uninstallArgs) error {
    	l := clog.NewConsoleLogger(cmd.OutOrStdout(), cmd.ErrOrStderr(), installerScope)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top