Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 207 for Interpret (0.26 sec)

  1. guava/src/com/google/common/primitives/UnsignedBytes.java

    import java.nio.ByteOrder;
    import java.util.Arrays;
    import java.util.Comparator;
    import sun.misc.Unsafe;
    
    /**
     * Static utility methods pertaining to {@code byte} primitives that interpret values as
     * <i>unsigned</i> (that is, any negative value {@code b} is treated as the positive value {@code
     * 256 + b}). The corresponding methods that treat the values as signed are found in {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

    Consequently, builds that consume libraries published for a certain ecosystem, also need to apply the corresponding plugin to interpret attributes correctly.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/UnsignedBytes.java

    import java.nio.ByteOrder;
    import java.util.Arrays;
    import java.util.Comparator;
    import sun.misc.Unsafe;
    
    /**
     * Static utility methods pertaining to {@code byte} primitives that interpret values as
     * <i>unsigned</i> (that is, any negative value {@code b} is treated as the positive value {@code
     * 256 + b}). The corresponding methods that treat the values as signed are found in {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/UnsignedLongs.java

    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.math.BigInteger;
    import java.util.Arrays;
    import java.util.Comparator;
    
    /**
     * Static utility methods pertaining to {@code long} primitives that interpret values as
     * <i>unsigned</i> (that is, any negative value {@code x} is treated as the positive value {@code
     * 2^64 + x}). The methods for which signedness is not an issue are in {@link Longs}, as well as
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. pkg/credentialprovider/plugin/plugin.go

    		return nil, fmt.Errorf("%w: %s", err, stderr.String())
    	}
    
    	data = stdout.Bytes()
    	// check that the response apiVersion matches what is expected
    	gvk, err := json.DefaultMetaFactory.Interpret(data)
    	if err != nil {
    		return nil, fmt.Errorf("error reading GVK from response: %w", err)
    	}
    
    	if gvk.GroupVersion().String() != e.apiVersion {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/file/store.go

    	// ignore null json
    	if len(jsonChunk) == 0 || bytes.Equal(jsonChunk, []byte("null")) {
    		return resources, nil
    	}
    
    	// Peek at the beginning of the JSON to
    	groupVersionKind, err := kubeJson.DefaultMetaFactory.Interpret(jsonChunk)
    	if err != nil {
    		return resources, fmt.Errorf("failed interpreting jsonChunk: %v", err)
    	}
    
    	if groupVersionKind.Kind == "List" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/util.go

    // opSuffixSet is like regListSet, but for opcode suffixes.
    //
    // Unlike some other similar structures, uint8 space is not
    // divided by its own values set (because there are only 256 of them).
    // Instead, every arch may interpret/format all 8 bits as they like,
    // as long as they register proper cconv function for it.
    type opSuffixSet struct {
    	arch  string
    	cconv func(suffix uint8) string
    }
    
    var opSuffixSpace []opSuffixSet
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDSLCustomDependenciesExtensionsSpec.groovy

            file("settings.gradle") << defineSettings()
    
            expect: "the build fails"
            fails("dependencies", "--configuration", "api")
            failure.assertHasCause("Failed to interpret the declarative DSL file '${testDirectory.file("build.gradle.dcl").path}'")
        }
    
        def 'can configure an extension using DependencyCollector in declarative DSL and build a java plugin'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

            then:
            outputEquals """
    Type 'Task' property 'input' has @Input annotation used on property of type 'FileCollection'.
    
    Reason: A property of type 'FileCollection' annotated with @Input cannot determine how to interpret the file.
    
    Possible solutions:
      1. Annotate with @InputFile for regular files.
      2. Annotate with @InputFiles for collections of files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  10. src/math/big/natconv.go

    		err = errInvalSep
    	}
    
    	if count == 0 {
    		// no digits found
    		if prefix == '0' {
    			// there was only the octal prefix 0 (possibly followed by separators and digits > 7);
    			// interpret as decimal 0
    			return z[:0], 10, 1, err
    		}
    		err = errNoDigits // fall through; result will be 0
    	}
    
    	// add remaining digits to result
    	if i > 0 {
    		z = z.mulAddWW(z, pow(b1, i), di)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
Back to top