Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 132 for dev2 (0.07 sec)

  1. src/cmd/go/testdata/script/build_pgo_auto_multi.txt

    # 2 of them have -pgoprofile (therefore one without).
    stderr -count=3 'compile.*dep(/|\\\\)dep.go'
    stderr -count=2 'compile.*-pgoprofile=.*dep(/|\\\\)dep\.go'
    
    stderr -count=3 'compile.*dep2(/|\\\\)dep2.go'
    stderr -count=2 'compile.*-pgoprofile=.*dep2(/|\\\\)dep2\.go'
    
    stderr -count=3 'compile.*dep3(/|\\\\)dep3.go'
    stderr -count=2 'compile.*-pgoprofile=.*dep3(/|\\\\)dep3\.go'
    
    # check that pgo appears or not in build info as expected
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:38:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/checkpoint/checkpoint.go

    	return make(DevicesPerNUMA)
    }
    
    // Devices is a function that returns all device ids for all NUMA nodes
    // and represent it as sets.Set[string]
    func (dev DevicesPerNUMA) Devices() sets.Set[string] {
    	result := sets.New[string]()
    
    	for _, devs := range dev {
    		result.Insert(devs...)
    	}
    	return result
    }
    
    // New returns an instance of Checkpoint - must be an alias for the most recent version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. docs/pt/docs/fastapi-cli.md

    ## `fastapi dev`
    
    Quando você roda `fastapi dev`, isso vai executar em modo de desenvolvimento.
    
    Por padrão, teremos o **recarregamento automático** ativo, então o programa irá recarregar o servidor automaticamente toda vez que você fizer mudanças no seu código. Isso usa muitos recursos e pode ser menos estável. Você deve apenas usá-lo em modo de desenvolvimento.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jun 11 23:49:51 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/single_versions.adoc

    ** A version with an extra non-numeric part is considered **lower** than a version without: `1.1.a` < `1.1`
    * Certain non-numeric parts have special meaning for the purposes of ordering:
    ** `dev` is consider **lower** than any other non-numeric part: `1.0-dev` < `1.0-ALPHA` < `1.0-alpha` < `1.0-rc`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:46:26 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/result/DefaultResolutionResultTest.groovy

            given:
            def dep1 = newDependency('dep1')
            def dep2 = newDependency('dep2')
    
            def root = newModule('root').addDependency(dep1).addDependency(dep2)
    
            when:
            def result = newResolutionResult(root)
    
            then:
            result.allDependencies == [dep1, dep2] as Set
            result.allComponents == [root, dep1.selected, dep2.selected] as Set
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. doc/next/9-todo.md

    CL 568340 - fixed a spurious race in time.Ticker.Reset (added via accepted proposal https://go.dev/issue/33184), doesn't seem to need a release note
    CL 562619 - x/website CL documented minimum bootstrap version on go.dev, mentioning accepted proposals go.dev/issue/54265 and go.dev/issue/44505; doesn't need a release note
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. doc/next/3-tools.md

    <!-- go.dev/issue/58894 ("all: add opt-in transparent telemetry to Go toolchain") -->
    <!-- TODO: document Go 1.23 behavior (from https://go.dev/cl/559199, https://go.dev/cl/559519, https://go.dev/cl/559795, https://go.dev/cl/562715, https://go.dev/cl/562735, https://go.dev/cl/564555, https://go.dev/cl/570679, https://go.dev/cl/570736, https://go.dev/cl/582695, https://go.dev/cl/584276, https://go.dev/cl/585235, https://go.dev/cl/586138) -->
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 19:06:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/project/artifact/MavenMetadataSourceTest.java

            dep1.addExclusion( exc );
    
            Dependency dep2 = new Dependency();
            dep2.setGroupId( "test" );
            dep2.setArtifactId( "test-artifact2" );
            dep2.setVersion( "1" );
            dep2.setType( "jar" );
    
            List<Dependency> deps = new ArrayList<>();
            deps.add( dep1 );
            deps.add( dep2 );
    
            ArtifactFactory factory = container.lookup( ArtifactFactory.class );
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/sameCallableIdFromDependencies.kt

    package my.pack
    
    fun Any.myExt() {}
    
    // FILE: util12.kt
    package my.pack
    
    val Any.myExt: Int get() = 10
    
    // MODULE: dep2
    // FILE: util21.kt
    package my.pack
    
    fun Any.myExt2() {}
    
    // FILE: util22.kt
    package my.pack
    
    val Any.myExt2: Int get() = 10
    
    // MODULE: main(dep1, dep2)
    // FILE: usage.kt
    package usage
    
    import my.pack.myExt
    import my.pack.myExt2
    
    fun test(a: Any) {
        a.myExt()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Apr 29 19:19:13 UTC 2024
    - 476 bytes
    - Viewed (0)
  10. doc/next/7-ports.md

    ## Ports {#ports}
    
    ### Darwin {#darwin}
    
    <!-- go.dev/issue/64207 -->
    As [announced](go1.22#darwin) in the Go 1.22 release notes,
    Go 1.23 requires macOS 11 Big Sur or later;
    support for previous versions has been discontinued.
    
    ### Linux {#linux}
    
    <!-- go.dev/issue/67001 -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top