Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for Piece (0.03 sec)

  1. src/cmd/gofmt/testdata/composites.input

    	"bal": []int{3, 4},
    }
    
    // from exp/4s/data.go
    var pieces4 = []Piece{
    	Piece{0, 0, Point{4, 1}, []Point{Point{0, 0}, Point{1, 0}, Point{1, 0}, Point{1, 0}}, nil, nil},
    	Piece{1, 0, Point{1, 4}, []Point{Point{0, 0}, Point{0, 1}, Point{0, 1}, Point{0, 1}}, nil, nil},
    	Piece{2, 0, Point{4, 1}, []Point{Point{0, 0}, Point{1, 0}, Point{1, 0}, Point{1, 0}}, nil, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 03:55:43 UTC 2016
    - 3.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ProgressEvent.java

     * limitations under the License.
     */
    package org.gradle.tooling;
    
    /**
     * Some information about a piece of work of a long running operation.
     * @since 1.0-milestone-3
     */
    public interface ProgressEvent {
        /**
         * A description of the current piece of work.
         *
         * @return The description.
         * @since 1.0-milestone-3
         */
        String getDescription();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 950 bytes
    - Viewed (0)
  3. architecture/README.md

    As Gradle executes, it acts on various pieces of the build definition, such as each project in the build.
    Gradle tracks the state of each piece and transitions each piece through its lifecycle as the build runs.
    
    A central part of the Gradle architecture is the "build state model", which holds the state for each piece and coordinates state transitions and other mutations. 
    Most source code in Gradle is arranged by which part(s) of the build state model it acts on.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/WebPlatformUrlTestData.kt

                else -> unescape(base)
              }
    
            while (i < parts.size) {
              val piece = parts[i]
              if (piece.startsWith("#")) {
                i++
                continue
              }
              val nameAndValue = piece.split(Regex(":"), 2).toTypedArray()
              element[nameAndValue[0]] = unescape(nameAndValue[1])
              i++
            }
    
            list += element
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. src/cmd/gofmt/testdata/composites.golden

    	"foo": {},
    	"bar": {1, 2},
    	"bal": {3, 4},
    }
    
    var _ = map[string][]int{
    	"foo": ([]int{}),
    	"bar": ([]int{1, 2}),
    	"bal": {3, 4},
    }
    
    // from exp/4s/data.go
    var pieces4 = []Piece{
    	{0, 0, Point{4, 1}, []Point{{0, 0}, {1, 0}, {1, 0}, {1, 0}}, nil, nil},
    	{1, 0, Point{1, 4}, []Point{{0, 0}, {0, 1}, {0, 1}, {0, 1}}, nil, nil},
    	{2, 0, Point{4, 1}, []Point{{0, 0}, {1, 0}, {1, 0}, {1, 0}}, nil, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 03:55:43 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/parallelize/parallelism.go

    func (p Parallelizer) Until(ctx context.Context, pieces int, doWorkPiece workqueue.DoWorkPieceFunc, operation string) {
    	goroutinesMetric := metrics.Goroutines.WithLabelValues(operation)
    	withMetrics := func(piece int) {
    		goroutinesMetric.Inc()
    		doWorkPiece(piece)
    		goroutinesMetric.Dec()
    	}
    
    	workqueue.ParallelizeUntil(ctx, p.parallelism, pieces, withMetrics, workqueue.WithChunkSize(chunkSizeFor(pieces, p.parallelism)))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 17:12:30 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. cmd/object-api-utils.go

    	}
    
    	// Split on dot and check each piece conforms to rules.
    	allNumbers := true
    	pieces := strings.Split(bucket, dnsDelimiter)
    	for _, piece := range pieces {
    		if len(piece) == 0 || piece[0] == '-' ||
    			piece[len(piece)-1] == '-' {
    			// Current piece has 0-length or starts or
    			// ends with a hyphen.
    			return false
    		}
    		// Now only need to check if each piece is a valid
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. docs/fr/docs/tutorial/index.md

    $ pip install fastapi[all]
    
    ---> 100%
    ```
    
    </div>
    
    ... qui comprend également `uvicorn`, que vous pouvez utiliser comme serveur pour exécuter votre code.
    
    !!! note
        Vous pouvez également l'installer pièce par pièce.
    
        C'est ce que vous feriez probablement une fois que vous voudrez déployer votre application en production :
    
        ```
        pip install fastapi
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:51:55 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/timeout/Timeout.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.timeout;
    
    /**
     * Represents a timeout for some piece of work.
     */
    public interface Timeout {
        /**
         * Stops the timeout and returns whether the work did time out.
         */
        boolean stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 854 bytes
    - Viewed (0)
  10. build/util.sh

      # This takes:
      # Client Version: version.Info{Major:"1", Minor:"1+", GitVersion:"v1.1.0-alpha.0.2328+3c0a05de4a38e3", GitCommit:"3c0a05de4a38e355d147dbfb4d85bad6d2d73bb9", GitTreeState:"clean"}
      # and spits back the GitVersion piece in a way that is somewhat
      # resilient to the other fields changing (we hope)
      "${KUBE_ROOT}/cluster/kubectl.sh" version --client | sed "s/, */\\
    /g" | grep -E "^GitVersion:" | cut -f2 -d: | cut -f2 -d\"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:37:13 UTC 2019
    - 1.3K bytes
    - Viewed (0)
Back to top