Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 95 for Piece (0.06 sec)

  1. test-site/activator.bat

      set arg1=%~1
      if "!arg1:~0,2!"=="-D" (
       	set "args=%args% "%~1"="%~2""
        shift
        shift
        goto argsloop
      )
    
      if "%~1"=="-jvm-debug" (
        if not "%~2"=="" (
          rem This piece of magic somehow checks that an argument is a number
          for /F "delims=0123456789" %%i in ("%~2") do (
            set var="%%i"
          )
          if defined var (
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 7.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr6_writing_tasks.adoc

    4. You viewed a Settings file in <<partr4_settings_file.adoc#part4_begin,part 4>>.
    5. You authored a Build script in <<partr5_build_scripts.adoc#part5_begin,part 5>>.
    
    == Step 1. Understand Tasks
    A Task is an executable piece of code that contains sequences of actions.
    
    Actions are added to a Task via the `doFirst{}` and `doLast{}` closures.
    
    A Task can depend on other tasks.
    
    == Step 2. Register and Configure Tasks
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/apache/maven/maven-parent/4/maven-parent-4.pom

      <description>
        Maven is a software project management and comprehension tool. Based on the concept of a project object model
        (POM), Maven can manage a project's build, reporting and documentation from a central piece of information.
      </description>
      <url>http://maven.apache.org/</url>
      <issueManagement>
        <system>jira</system>
        <url>http://jira.codehaus.org/browse/MPA</url>
      </issueManagement>
      <ciManagement>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  4. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotcontents.yaml

                        apiVersion:
                          description: API version of the referent.
                          type: string
                        fieldPath:
                          description: 'If referring to a piece of an object instead of
                          an entire object, this string should contain a valid JSON/Go
                          field access statement, such as desiredState.manifest.containers[2].
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 25.6K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/maven-parent/4/maven-parent-4.pom

      <description>
        Maven is a software project management and comprehension tool. Based on the concept of a project object model
        (POM), Maven can manage a project's build, reporting and documentation from a central piece of information.
      </description>
      <url>http://maven.apache.org/</url>
      <issueManagement>
        <system>jira</system>
        <url>http://jira.codehaus.org/browse/MPA</url>
      </issueManagement>
      <ciManagement>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 09 12:45:14 UTC 2019
    - 9.8K bytes
    - Viewed (0)
  6. src/cmd/internal/dwarf/dwarf_defs.go

    	DW_OP_fbreg               = 0x91 // 1 SLEB128 offset
    	DW_OP_bregx               = 0x92 // 2 ULEB128 register followed by SLEB128 offset
    	DW_OP_piece               = 0x93 // 1 ULEB128 size of piece addressed
    	DW_OP_deref_size          = 0x94 // 1 1-byte size of data retrieved
    	DW_OP_xderef_size         = 0x95 // 1 1-byte size of data retrieved
    	DW_OP_nop                 = 0x96 // 0
    	DW_OP_push_object_address = 0x97 // 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 15:55:36 UTC 2019
    - 16.1K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/maven-parent/5/maven-parent-5.pom

      <description>
        Maven is a software project management and comprehension tool. Based on the concept of a project object model
        (POM), Maven can manage a project's build, reporting and documentation from a central piece of information.
      </description>
      <url>http://maven.apache.org/</url>
      <issueManagement>
        <system>jira</system>
        <url>http://jira.codehaus.org/browse/MPA</url>
      </issueManagement>
      <ciManagement>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 14.8K bytes
    - Viewed (0)
  8. src/testing/iotest/reader.go

    	return r.r.Read(p[0 : (len(p)+1)/2])
    }
    
    // DataErrReader changes the way errors are handled by a Reader. Normally, a
    // Reader returns an error (typically EOF) from the first Read call after the
    // last piece of data is read. DataErrReader wraps a Reader and changes its
    // behavior so the final error is returned along with the final data, instead
    // of in the first call after the final data.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. src/debug/dwarf/const.go

    	opRegx       = 0x90 /* 1 op, ULEB128 register */
    	opFbreg      = 0x91 /* 1 op, SLEB128 offset */
    	opBregx      = 0x92 /* 2 op, ULEB128 reg; SLEB128 off */
    	opPiece      = 0x93 /* 1 op, ULEB128 size of piece */
    	opDerefSize  = 0x94 /* 1-byte size of data retrieved */
    	opXderefSize = 0x95 /* 1-byte size of data retrieved */
    	opNop        = 0x96
    	// The following are new in DWARF 3.
    	opPushObjAddr    = 0x97
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/apache/maven/maven-parent/5/maven-parent-5.pom

      <description>
        Maven is a software project management and comprehension tool. Based on the concept of a project object model
        (POM), Maven can manage a project's build, reporting and documentation from a central piece of information.
      </description>
      <url>http://maven.apache.org/</url>
      <issueManagement>
        <system>jira</system>
        <url>http://jira.codehaus.org/browse/MPA</url>
      </issueManagement>
      <ciManagement>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 14.8K bytes
    - Viewed (0)
Back to top