Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for extraArr (0.93 sec)

  1. src/internal/trace/oldtrace.go

    )
    
    type oldTraceConverter struct {
    	trace          oldtrace.Trace
    	evt            *evTable
    	preInit        bool
    	createdPreInit map[GoID]struct{}
    	events         oldtrace.Events
    	extra          []Event
    	extraArr       [3]Event
    	tasks          map[TaskID]taskState
    	seenProcs      map[ProcID]struct{}
    	lastTs         Time
    	procMs         map[ProcID]ThreadID
    	lastStwReason  uint64
    
    	inlineToStringID  []uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/SyncTaskIntegrationTest.groovy

                file 'extra.txt'
                extraDir { file 'extra.txt' }
                dir1 {
                    file 'extra.txt'
                    extraDir { file 'extra.txt' }
                }
            }
    
            buildScript '''
                task sync(type: Sync) {
                    into 'dest'
                    from 'source'
                    preserve {
                      include 'extraDir/**'
                      include 'dir1/**'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheStandardStreamsIntegrationTest.groovy

    class ConfigurationCacheStandardStreamsIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
        def "#task task can run with default configuration"() {
            setUpProject(
                makeTask(task, extraArg: "Gradle")
            )
    
            when:
            configurationCacheRun("run")
    
            then:
            outputContains("Hello, Gradle")
    
            where:
            task       || _
            "exec"     || _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.6K bytes
    - Viewed (1)
  4. pilot/pkg/networking/core/cluster_builder.go

    	src := InboundPassthroughBindIpv4
    	if !cb.supportsIPv4 {
    		src = InboundPassthroughBindIpv6
    	}
    	var extraSrc []*core.ExtraSourceAddress
    	if cb.supportsIPv4 && cb.supportsIPv6 {
    		extraSrc = append(extraSrc, &core.ExtraSourceAddress{
    			Address: &core.SocketAddress{
    				Address:       InboundPassthroughBindIpv6,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  5. docs/fr/docs/advanced/path-operation-advanced-configuration.md

    Et vous pouvez le faire même si le type de données dans la requête n'est pas au format JSON.
    
    Dans cet exemple, nous n'utilisons pas les fonctionnalités de FastAPI pour extraire le schéma JSON des modèles Pydantic ni la validation automatique pour JSON. En fait, nous déclarons le type de contenu de la requête en tant que YAML, et non JSON :
    
    ```Python hl_lines="17-22  24"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * <pre>
         * project.sync {
         *     from 'source'
         *     into 'dest'
         *     preserve {
         *         include 'extraDir/**'
         *         include 'dir1/**'
         *         exclude 'dir1/extra.txt'
         *     }
         * }
         * </pre>
         *
         * @param action Action to configure the SyncSpec.
         * @since 4.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top