Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 933 for Extract (0.22 sec)

  1. guava-testlib/src/com/google/common/collect/testing/features/TesterAnnotation.java

     * be used to decide whether to apply a test to a given class-under-test.
     *
     * <p>This is needed because annotations can't implement interfaces, which is also why reflection is
     * used to extract values from the properties of the various annotations.
     *
     * @author George van den Driessche
     */
    @Target(value = {java.lang.annotation.ElementType.ANNOTATION_TYPE})
    @Retention(value = RetentionPolicy.RUNTIME)
    @Documented
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Sep 15 13:47:32 UTC 2016
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedImplStructStrategy.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.manage.schema.extract;
    
    import org.gradle.model.Managed;
    import org.gradle.model.internal.manage.schema.ManagedImplStructSchema;
    import org.gradle.model.internal.manage.schema.ModelProperty;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ModelMapStrategyTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.manage.schema.extract
    
    import org.gradle.model.internal.manage.schema.CompositeSchema
    import org.gradle.model.internal.manage.schema.ManagedImplSchema
    import org.gradle.model.internal.manage.schema.ModelMapSchema
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. src/syscall/mksysnum_linux.pl

    	$num = $num + $offset;
    	print "	SYS_$name = $num;\n";
    }
    
    my $prev;
    open(GCC, "gcc -E -dD $ARGV[0] |") || die "can't run gcc";
    while(<GCC>){
    	if(/^#define __NR_Linux\s+([0-9]+)/){
    		# mips/mips64: extract offset
    		$offset = $1;
    	}
    	elsif(/^#define __NR_syscalls\s+/) {
    		# ignore redefinitions of __NR_syscalls
    	}
    	elsif(/^#define __NR_(\w+)\s+([0-9]+)/){
    		$prev = $2;
    		fmt($1, $2);
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  5. src/math/cmplx/tan.go

    		return ((x - t*PI1) - t*PI2) - t*PI3
    	}
    	// Must apply Payne-Hanek range reduction
    	const (
    		mask     = 0x7FF
    		shift    = 64 - 11 - 1
    		bias     = 1023
    		fracMask = 1<<shift - 1
    	)
    	// Extract out the integer and exponent such that,
    	// x = ix * 2 ** exp.
    	ix := math.Float64bits(x)
    	exp := int(ix>>shift&mask) - bias - shift
    	ix &= fracMask
    	ix |= 1 << shift
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/ManagedModelMapTypesTest.groovy

     */
    
    package org.gradle.model
    
    import org.gradle.model.internal.fixture.ProjectRegistrySpec
    import org.gradle.model.internal.manage.schema.ModelMapSchema
    import org.gradle.model.internal.manage.schema.extract.InvalidManagedModelElementTypeException
    import org.gradle.model.internal.type.ModelType
    import org.gradle.model.internal.type.ModelTypes
    
    class ManagedModelMapTypesTest extends ProjectRegistrySpec {
    
        @Managed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. internal/disk/type_windows.go

    	var lpVolumeSerialNumber uint32
    	var lpFileSystemFlags, lpMaximumComponentLength uint32
    	var lpFileSystemNameBuffer, volumeName [260]uint16
    	ps := syscall.StringToUTF16Ptr(filepath.VolumeName(path))
    
    	// Extract values safely
    	// BOOL WINAPI GetVolumeInformation(
    	// _In_opt_  LPCTSTR lpRootPathName,
    	// _Out_opt_ LPTSTR  lpVolumeNameBuffer,
    	// _In_      DWORD   nVolumeNameSize,
    	// _Out_opt_ LPDWORD lpVolumeSerialNumber,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. cmd/handler-utils_test.go

    				"Content-Type": []string{"image/png"},
    			},
    			metadata: map[string]string{
    				"content-type": "image/png",
    			},
    			shouldFail: false,
    		},
    		// Validate if there are no keys to extract.
    		{
    			header: http.Header{
    				"Test-1": []string{"123"},
    			},
    			metadata:   map[string]string{},
    			shouldFail: false,
    		},
    		// Validate that there are all headers extracted
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectCollectionTest.groovy

            then:
            def e = thrown(InvalidUserDataException)
            e.message == "The domain object 'bean' (${Bean.class.canonicalName}) is not a subclass of the given type (java.lang.String)."
        }
    
        def "can extract schema from collection with domain objects"() {
            container.add(a)
            expect:
            assertSchemaIs(
                a: "DefaultNamedDomainObjectCollectionTest.Bean"
            )
            // schema isn't cached
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 24 14:51:02 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/CompileOperation.java

    import org.gradle.groovy.scripts.Transformer;
    import org.gradle.internal.serialize.Serializer;
    
    /**
     * A stateful “backing” for a compilation operation.
     * <p>
     * The compilation may extract data from the source under compilation, made available after compilation by {@link #getExtractedData()}.
     * The exposed transformer typically gathers the data while transforming.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 01 11:44:55 UTC 2018
    - 1.9K bytes
    - Viewed (0)
Back to top