Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for content_es (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    +
    . Develop a mechanism to verify that the two builds produce the same artifacts.
    +
    This is a vitally important step to ensure that your deployments and tests don't break.
    Even small changes, such as the contents of a manifest file in a JAR, can cause problems.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    As input normalization is declared by the task _consuming_ the data as input, different tasks can define different ways to normalize the same data.
    
    When it comes to file inputs, Gradle can normalize the path of the files as well as their contents.
    
    [[relocatability]]
    === Path sensitivity and relocatability
    
    When sharing cached results between computers, it's rare that everyone runs the build from the exact same location on their computers.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

    | link:{javadocPath}/org/gradle/api/attributes/LibraryElements.html#LIBRARY_ELEMENTS_ATTRIBUTE[`org.gradle.libraryelements`]
    | Indicates the contents of a `org.gradle.category=library` variant
    | `LibraryElements` values built from constants defined in link:{javadocPath}/org/gradle/api/attributes/LibraryElements.html[LibraryElements]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. src/runtime/sys_linux_386.s

    //	unsigned long base_addr;
    //	unsigned int  limit;
    //	unsigned int  seg_32bit:1;
    //	unsigned int  contents:2;
    //	unsigned int  read_exec_only:1;
    //	unsigned int  limit_in_pages:1;
    //	unsigned int  seg_not_present:1;
    //	unsigned int  useable:1;
    // };
    #define SEG_32BIT 0x01
    // contents are the 2 bits 0x02 and 0x04.
    #define CONTENTS_DATA 0x00
    #define CONTENTS_STACK 0x02
    #define CONTENTS_CODE 0x04
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  5. samples/security/spire/spire-quickstart.yaml

      attachRequired: false
    
      # Request the pod information which the CSI driver uses to verify that an
      # ephemeral mount was requested.
      podInfoOnMount: true
    
      # Don't change ownership on the contents of the mount since the Workload API
      # Unix Domain Socket is typically open to all (i.e. 0777).
      fsGroupPolicy: None
    
      # Declare support for ephemeral volumes only.
      volumeLifecycleModes:
        - Ephemeral
    
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    The method call returns the Ant data type, which you can use directly in your build script.
    In the following example, we create an Ant `path` object, then iterate over the contents of it:
    
    ====
    include::sample[dir="snippets/ant/useAntType/kotlin",files="build.gradle.kts"]
    include::sample[dir="snippets/ant/useAntType/groovy",files="build.gradle"]
    ====
    
    [[sec:using_custom_ant_tasks]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    [[changes_5.6]]
    == Upgrading from 5.5 and earlier
    
    === Deprecations
    
    ==== Changing the contents of `ConfigurableFileCollection` task properties after task starts execution
    
    When a task property has type `ConfigurableFileCollection`, then the file collection referenced by the property will ignore changes made to the contents of the collection once the task starts execution.
    This has two benefits.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  8. src/crypto/sha256/sha256block_amd64.s

    #define dataPtr		SI	// input, base pointer to first input data block
    #define numBytes	DX	// input, number of input bytes to be processed
    #define sha256Constants	AX	// round contents from K256 table, indexed by round number x 32
    #define msg		X0	// input data
    #define state0		X1	// round intermediates and outputs
    #define state1		X2
    #define m0		X3	// m0, m1,... m4 -- round message temps
    #define m1		X4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
Back to top