Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,038 for example2 (0.24 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/appendixa_test.go

    		fixme string
    	}{
    		{
    			example: hex("00"),
    			decoded: int64(0),
    		},
    		{
    			example: hex("01"),
    			decoded: int64(1),
    		},
    		{
    			example: hex("0a"),
    			decoded: int64(10),
    		},
    		{
    			example: hex("17"),
    			decoded: int64(23),
    		},
    		{
    			example: hex("1818"),
    			decoded: int64(24),
    		},
    		{
    			example: hex("1819"),
    			decoded: int64(25),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 18:59:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    In that case, more information can be provided through <<#sub:terminology_attribute,variant attributes>>.
    Examples of variants each Java components typically offers are _api_ and _runtime_ variants.
    Others examples are JDK8 and JDK11 variants.
    For more information, see the section on <<variant_model.adoc#understanding-variant-selection,variant selection>>.
    
    [[sub:terminology_attribute]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    === Using system properties
    
    The following examples demonstrate how to use system properties:
    
    *Example 1:* Setting system properties with a `gradle.properties` file:
    ====
    include::sample[dir="snippets/tutorial/systemProperties/groovy",files="gradle.properties[]"]
    ====
    
    *Example 2:* Reading system properties at configuration time:
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.2.md

          - [AWS](#aws)
          - [GCE](#gce)
    <!-- END MUNGE: GENERATED_TOC -->
    
    <!-- NEW RELEASE NOTES ENTRY -->
    
    
    # v1.2.7
    
    [Documentation](http://kubernetes.github.io) & [Examples](http://releases.k8s.io/release-1.2/examples)
    
    ## Downloads for v1.2.7
    
    
    filename | sha256 hash
    -------- | -----------
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/doc.go

    for the target operand, which is first in PPC64 asm and last in Go asm.
    
    Example:
    
    	ADD R3, R4, R5		<=>	add r5, r4, r3
    
    2. Constant operands
    
    In Go asm, an operand that starts with '$' indicates a constant value. If the
    instruction using the constant has an immediate version of the opcode, then an
    immediate value is used with the opcode if possible.
    
    Example:
    
    	ADD $1, R3, R4		<=> 	addi r4, r3, 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. fastapi/openapi/utils.py

                parameter["description"] = field_info.description
            if field_info.openapi_examples:
                parameter["examples"] = jsonable_encoder(field_info.openapi_examples)
            elif field_info.example != Undefined:
                parameter["example"] = jsonable_encoder(field_info.example)
            if field_info.deprecated:
                parameter["deprecated"] = True
            parameters.append(parameter)
        return parameters
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. docs/bigdata/README.md

    ```
    ./bin/spark-submit --class org.apache.spark.examples.SparkPi \
        --master yarn-client \
        --num-executors 1 \
        --driver-memory 512m \
        --executor-memory 512m \
        --executor-cores 1 \
        examples/jars/spark-examples*.jar 10
    ```
    
    The job should produce an output as shown below. Note the value of pi in the output.
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

    import java.util.Set;
    import java.util.concurrent.TimeUnit;
    
    /**
     * Defines the strategies around dependency resolution.
     * For example, forcing certain dependency versions, substitutions, conflict resolutions or snapshot timeouts.
     * <p>
     * Examples:
     * <pre class='autoTested'>
     * plugins {
     *     id 'java' // so that there are some configurations
     * }
     *
     * configurations.all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
  9. guava/src/com/google/common/net/InternetDomainName.java

       * registrar, and have such registrations lawfully protected by internet-governing bodies such as
       * ICANN. Examples of registry suffixes include {@code com}, {@code co.uk}, and {@code
       * pvt.k12.wy.us}. Examples of domain names that are <i>not</i> registry suffixes include {@code
       * google.com} and {@code foo.co.uk}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaProject.java

         * <p>
         * See the examples in the docs for {@link IdeaProject}
         */
        public List<IdeaModule> getModules() {
            return modules;
        }
    
        public void setModules(List<IdeaModule> modules) {
            this.modules = modules;
        }
    
        /**
         * The java version used for defining the project sdk.
         * <p>
         * See the examples in the docs for {@link IdeaProject}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top