Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 697 for vextractd (0.28 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	VEXTDUHVLX:     "vextduhvlx",
    	VEXTDUHVRX:     "vextduhvrx",
    	VEXTDUWVLX:     "vextduwvlx",
    	VEXTDUWVRX:     "vextduwvrx",
    	VEXTRACTBM:     "vextractbm",
    	VEXTRACTDM:     "vextractdm",
    	VEXTRACTHM:     "vextracthm",
    	VEXTRACTQM:     "vextractqm",
    	VEXTRACTWM:     "vextractwm",
    	VEXTSD2Q:       "vextsd2q",
    	VGNB:           "vgnb",
    	VINSBLX:        "vinsblx",
    	VINSBRX:        "vinsbrx",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/extract.go

    	"k8s.io/apimachinery/pkg/api/meta"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    // ExtractInto extracts the applied configuration state from object for fieldManager
    // into applyConfiguration. If no managed fields are found for the given fieldManager,
    // no error is returned, but applyConfiguration is left unpopulated. It is possible
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 03:17:15 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/ppc64_p10.s

    	VEXTDUWVLX V1, V2, R3, V4               // 108110dc
    	VEXTDUWVRX V1, V2, R5, V3               // 1061115d
    	VEXTRACTBM V1, R2                       // 10480e42
    	VEXTRACTDM V1, R2                       // 104b0e42
    	VEXTRACTHM V1, R2                       // 10490e42
    	VEXTRACTQM V1, R2                       // 104c0e42
    	VEXTRACTWM V1, R6                       // 10ca0e42
    	VEXTSD2Q V1, V2                         // 105b0e02
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

            C1 getC();
    
            D1 getD();
        }
    
        def "can extract incestuous nest"() {
            expect:
            extract(type).getProperty("a").type == extract(A1).type
            extract(type).getProperty("b").type == extract(B1).type
            extract(type).getProperty("c").type == extract(C1).type
            extract(type).getProperty("d").type == extract(D1).type
    
            where:
            type << [A1, B1, C1, D1]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  5. pilot/test/xdstest/extract.go

    Xiaopeng Han <******@****.***> 1703025762 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  6. pkg/kube/controllers/common.go

    	if e.AddExtendedFunc != nil {
    		e.AddExtendedFunc(Extract[T](obj), initialSync)
    	} else if e.AddFunc != nil {
    		e.AddFunc(Extract[T](obj))
    	}
    }
    
    func (e EventHandler[T]) OnUpdate(oldObj, newObj interface{}) {
    	if e.UpdateFunc != nil {
    		e.UpdateFunc(Extract[T](oldObj), Extract[T](newObj))
    	}
    }
    
    func (e EventHandler[T]) OnDelete(obj interface{}) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 08:27:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/util/internal/Resources.java

     */
    public class Resources implements MethodRule {
        private static final String EXTRACTED_RESOURCES_DIR = "tmp-extracted-resources";
    
        /**
         * Set of keys in the form {@code <running test class name>:<jar file resource path>}.
         *
         * Resources contained in jars will be extracted to the {@link #EXTRACTED_RESOURCES_DIR} dir in the parent of the root test directory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. internal/crypto/sse-c.go

    	return metadata
    }
    
    // ParseMetadata extracts all SSE-C related values from the object metadata
    // and checks whether they are well-formed. It returns the sealed object key
    // on success.
    func (ssec) ParseMetadata(metadata map[string]string) (sealedKey SealedKey, err error) {
    	// Extract all required values from object metadata
    	b64IV, ok := metadata[MetaIV]
    	if !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/ExtensionDescriptorBuilder.java

            return "META-INF/maven/extension.xml";
        }
    
        /**
         * Extracts the extension descriptor (if any) from the specified JAR file.
         *
         * @param extensionJar The JAR file or directory to extract the descriptor from, must not be {@code null}.
         * @return The extracted descriptor or {@code null} if no descriptor was found.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ClassFileExtractionManager.java

        /**
         * Retrieve the file that contains the extracted class file.
         *
         * <p>
         * This method will extract the class file if it is
         * not extracted yet. Extracted class files are deleted on exit of the Gradle process. The same class is only
         * extracted once.
         * </p>
         *
         * @param className Name of the class to extract.
         * @return File that contains the extracted class file.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top