Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 155 for DELETING (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/main/resources/fess_message_en.properties

    success.reindex_started=Started reindexing.
    success.bulk_process_started=Bulk process is started.
    success.print_thread_dump=Printed thread dump to log file.
    success.install_plugin=Installing {0} plugin.
    success.delete_plugin=Deleting {0} plugin.
    success.upload_file_to_storage=Uploaded {0}
    success.sso_logout=Logged out.
    success.update_storage_tags=Updated tags for {0}.
    
    success.crud_create_crud_table=Created data.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  5. src/main/resources/fess_message.properties

    success.reindex_started=Started reindexing.
    success.bulk_process_started=Bulk process is started.
    success.print_thread_dump=Printed thread dump to log file.
    success.install_plugin=Installing {0} plugin.
    success.delete_plugin=Deleting {0} plugin.
    success.upload_file_to_storage=Uploaded {0}
    success.sso_logout=Logged out.
    success.update_storage_tags=Updated tags for {0}.
    
    success.crud_create_crud_table=Created data.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  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