Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 232 for DELETING (0.1 sec)

  1. tensorflow/compiler/jit/xla_device_context.cc

            done(done_status);
            ref.Unref();
            // If a stream is in a bad state, it gets deleted when it's returned to
            // the stream pool, i.e. when it leaves this scope. However, a stream
            // deleting itself in a host callback on itself can cause bad behaviors
            // on some platforms. Releasing it in another stream to avoid that.
            if (!device_allows_sync_on_completion &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. build/lib/release.sh

      conformance_tag="${registry}/conformance-${arch}:${version}"
      if [[ -n "${save_dir}" ]]; then
        "${DOCKER[@]}" save "${conformance_tag}" > "${save_dir}/conformance-${arch}.tar"
      fi
      kube::log::status "Deleting conformance image ${conformance_tag}"
      "${DOCKER[@]}" rmi "${conformance_tag}" &>/dev/null || true
    }
    
    # This builds all the release docker images (One docker image per binary)
    # Args:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. cmd/data-scanner.go

    			if i.debug {
    				if obj.VersionID != "" {
    					console.Debugf(applyVersionActionsLogPrefix+" lifecycle: %s v(%s) is locked, not deleting\n", obj.Name, obj.VersionID)
    				} else {
    					console.Debugf(applyVersionActionsLogPrefix+" lifecycle: %s is locked, not deleting\n", obj.Name)
    				}
    			}
    			// add this version back to remaining versions for
    			// subsequent lifecycle policy applications
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Install.java

            }
        }
    
        private void deleteLocalTopLevelDirs(final File distDir) {
            List<File> topLevelDirs = listDirs(distDir);
            for (File dir : topLevelDirs) {
                logger.log("Deleting directory " + dir.getAbsolutePath());
                deleteDir(dir);
            }
        }
    
        private void forceFetch(File localTargetFile, URI distributionUrl) throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller.go

    		}
    		castObj, ok = tombstone.Obj.(*apiextensionsv1.CustomResourceDefinition)
    		if !ok {
    			klog.Errorf("Tombstone contained object that is not expected %#v", obj)
    			return
    		}
    	}
    	klog.V(4).Infof("Deleting customresourcedefinition %q", castObj.Name)
    	c.enqueue(castObj)
    }
    
    func (c *Controller) enqueue(obj *apiextensionsv1.CustomResourceDefinition) {
    	c.queue.Add(obj.Name)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. pkg/controller/cronjob/cronjob_controllerv2.go

    		t := nextScheduleTimeDuration(cronJob, now, sched)
    		return t, updateStatus, nil
    	}
    	if cronJob.Spec.ConcurrencyPolicy == batchv1.ReplaceConcurrent {
    		for _, j := range cronJob.Status.Active {
    			logger.V(4).Info("Deleting job that was still running at next scheduled start time", "job", klog.KRef(j.Namespace, j.Name))
    			job, err := jm.jobControl.GetJob(j.Namespace, j.Name)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  7. cmd/test-utils_test.go

    	return makeTestTargetURL(endPoint, bucketName, objectName, url.Values{})
    }
    
    // return URL for deleting the object from the bucket.
    func getDeleteObjectURL(endPoint, bucketName, objectName string) string {
    	return makeTestTargetURL(endPoint, bucketName, objectName, url.Values{})
    }
    
    // return URL for deleting multiple objects from a bucket.
    func getMultiDeleteObjectURL(endPoint, bucketName string) string {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  8. internal/grid/connection.go

    	client, err := c.newMuxClient(ctx)
    	if err != nil {
    		return nil, err
    	}
    	defer func() {
    		if debugReqs {
    			_, ok := c.outgoing.Load(client.MuxID)
    			fmt.Println(client.MuxID, c.String(), "Connection.Request: DELETING MUX. Exists:", ok)
    		}
    		client.cancelFn(context.Canceled)
    		c.outgoing.Delete(client.MuxID)
    	}()
    	return client.traceRoundtrip(ctx, c.trace, h, req)
    }
    
    // Request allows to do a single remote request.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. pkg/test/framework/components/namespace/kube.go

    	cleanupFuncs := n.cleanupFuncs
    	n.cleanupFuncs = nil
    	n.cleanupMutex.Unlock()
    
    	// Perform the cleanup across all clusters concurrently.
    	var err error
    	if len(cleanupFuncs) > 0 {
    		scopes.Framework.Debugf("%s deleting namespace %v", n.id, n.name)
    
    		g := multierror.Group{}
    		for _, cleanup := range cleanupFuncs {
    			g.Go(cleanup)
    		}
    
    		err = g.Wait().ErrorOrNil()
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller.go

    		}
    		castObj, ok = tombstone.Obj.(*apiextensionsv1.CustomResourceDefinition)
    		if !ok {
    			klog.Errorf("Tombstone contained object that is not expected %#v", obj)
    			return
    		}
    	}
    	klog.V(4).Infof("Deleting customresourcedefinition %q", castObj.Name)
    	c.enqueue(castObj)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 11:40:03 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top