Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 882 for extractID (0.23 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1alpha1/validatingadmissionpolicybinding.go

    // ExtractValidatingAdmissionPolicyBinding provides a way to perform a extract/modify-in-place/apply workflow.
    // Note that an extracted apply configuration will contain fewer fields than what the fieldManager previously
    // applied if another fieldManager has updated or force applied any of the previously applied fields.
    // Experimental!
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 20:51:52 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/validatingadmissionpolicybinding.go

    // ExtractValidatingAdmissionPolicyBinding provides a way to perform a extract/modify-in-place/apply workflow.
    // Note that an extracted apply configuration will contain fewer fields than what the fieldManager previously
    // applied if another fieldManager has updated or force applied any of the previously applied fields.
    // Experimental!
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/validatingadmissionpolicy.go

    // validatingAdmissionPolicy must be a unmodified ValidatingAdmissionPolicy API object that was retrieved from the Kubernetes API.
    // ExtractValidatingAdmissionPolicy provides a way to perform a extract/modify-in-place/apply workflow.
    // Note that an extracted apply configuration will contain fewer fields than what the fieldManager previously
    // applied if another fieldManager has updated or force applied any of the previously applied fields.
    // Experimental!
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/validatingadmissionpolicy.go

    // validatingAdmissionPolicy must be a unmodified ValidatingAdmissionPolicy API object that was retrieved from the Kubernetes API.
    // ExtractValidatingAdmissionPolicy provides a way to perform a extract/modify-in-place/apply workflow.
    // Note that an extracted apply configuration will contain fewer fields than what the fieldManager previously
    // applied if another fieldManager has updated or force applied any of the previously applied fields.
    // Experimental!
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

                it.value.isNotEmpty()
            } ?: emptyMap()
    
        /**
         * Returns any temporary directories used to extract resources from jars.
         *
         * These directories will be created as siblings of the randomly assigned test root directories, with the fixed name {@code tmp-extracted-resources}.
         */
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:19:47 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/serviceaccount/util_test.go

    	"k8s.io/apiserver/pkg/authentication/user"
    )
    
    func TestUserInfo(t *testing.T) {
    	tests := map[string]struct {
    		info             ServiceAccountInfo
    		expectedUserInfo *user.DefaultInfo
    	}{
    		"extracts pod name/uid": {
    			info: ServiceAccountInfo{Name: "name", Namespace: "ns", PodName: "test", PodUID: "uid"},
    			expectedUserInfo: &user.DefaultInfo{
    				Name:   "system:serviceaccount:ns:name",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. cluster/get-kube-binaries.sh

    echo
    
    echo "Will download ${SERVER_TAR} from ${DOWNLOAD_URL_PREFIX}"
    echo "Will download and extract ${CLIENT_TAR} from ${DOWNLOAD_URL_PREFIX}"
    
    DOWNLOAD_NODE_TAR=false
    if [[ -n "${NODE_TAR:-}" ]]; then
      DOWNLOAD_NODE_TAR=true
      echo "Will download and extract ${NODE_TAR} from ${DOWNLOAD_URL_PREFIX}"
    fi
    
    DOWNLOAD_TESTS_TAR=false
    if [[ -n "${KUBERNETES_DOWNLOAD_TESTS-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/AbstractArchiveFileTreeElement.java

     * for use with archive files when subclassing {@link org.gradle.api.internal.file.AbstractFileTree AbstractFileTree}.
     * <p>
     * This implementation extracts the files from the archive to the supplied expansion directory.
     */
    public abstract class AbstractArchiveFileTreeElement extends AbstractFileTreeElement implements FileVisitDetails {
        private final File expandedDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 31 20:39:17 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h

    CreateTPUClusterFormationPass(bool strict_clusters = false);
    
    // Creates a pass that extracts outside compilation (Host ops inside device
    // cluster) at head/tail of Device cluster to run before/after XLA computation.
    std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>>
    CreateExtractHeadTailOutsideCompilationPass();
    
    // Creates a pass that extract outside compilation (Host ops inside cevice
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. src/testing/fstest/testfs_test.go

    		t.Errorf("error should be a wrapped ErrPermission: %#v", err)
    	}
    
    	// TestFS is expected to return a list of errors.
    	// Enforce that the list can be extracted for browsing.
    	var errs interface{ Unwrap() []error }
    	if !errors.As(err, &errs) {
    		t.Errorf("caller should be able to extract the errors as a list: %#v", err)
    	} else {
    		for _, err := range errs.Unwrap() {
    			// ErrPermission is expected
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top