Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 365 for DELETING (0.18 sec)

  1. 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)
  2. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner.go

    			logger.Error(err, "Deleting legacy service account token", "secret", klog.KRef(secret.Namespace, secret.Name), "serviceaccount", sa.Name)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 10K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	t.testUpdatePropagatesUpdatedObjectError(valid.DeepCopyObject(), createFn, getFn, opts)
    	t.testUpdateIgnoreGenerationUpdates(valid.DeepCopyObject(), createFn, getFn)
    }
    
    // Test deleting an object.
    func (t *Tester) TestDelete(valid runtime.Object, createFn CreateFunc, getFn GetFunc, isNotFoundFn IsErrorFunc) {
    	dryRunOpts := metav1.DeleteOptions{DryRun: []string{metav1.DryRunAll}}
    	opts := metav1.DeleteOptions{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. plugin/pkg/admission/gc/gc_admission.go

    		APIVersion:      "*",
    		Resource:        "*",
    		Subresource:     "finalizers",
    		Name:            "*",
    		ResourceRequest: true,
    		Path:            "",
    	}
    }
    
    // Translates ref to a DeleteAttribute deleting the object referred by the ref.
    // OwnerReference only records the object kind, which might map to multiple
    // resources, so multiple DeleteAttribute might be returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. pkg/kubelet/prober/prober_manager.go

    	StopLivenessAndStartup(pod *v1.Pod)
    
    	// RemovePod handles cleaning up the removed pod state, including terminating probe workers and
    	// deleting cached results.
    	RemovePod(pod *v1.Pod)
    
    	// CleanupPods handles cleaning up pods which should no longer be running.
    	// It takes a map of "desired pods" which should not be cleaned up.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top