Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for prebuilt (0.66 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                    implementation files('a.thing', additionalFile.output)
                }
            """
        }
    
        def "task input file collection can include project dependencies, external dependencies, prebuilt file dependencies and task output file dependencies"() {
            def configurationCache = newConfigurationCacheFixture()
    
            setupBuildWithEachDependencyType()
            taskTypeLogsInputFileCollectionContent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    	setNoOpt()
    
    	var t tester
    
    	var noRebuild bool
    	flag.BoolVar(&t.listMode, "list", false, "list available tests")
    	flag.BoolVar(&t.rebuild, "rebuild", false, "rebuild everything first")
    	flag.BoolVar(&noRebuild, "no-rebuild", false, "overrides -rebuild (historical dreg)")
    	flag.BoolVar(&t.keepGoing, "k", false, "keep going even when error occurred")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    	tg.tempFile("src/p1/p1.go", "package p1\nvar X = 02\n")
    	tg.run("test", "-p=1", "-x", "-v", "-short", "t/...")
    
    	// p2 should have been rebuilt.
    	tg.grepStderr(`([\\/]compile|gccgo).*p2.go`, "did not recompile p2")
    
    	// t1 does not import anything, should not have been rebuilt.
    	tg.grepStderrNot(`([\\/]compile|gccgo).*t1_test.go`, "incorrectly recompiled t1")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    func cmdbootstrap() {
    	timelog("start", "dist bootstrap")
    	defer timelog("end", "dist bootstrap")
    
    	var debug, distpack, force, noBanner, noClean bool
    	flag.BoolVar(&rebuildall, "a", rebuildall, "rebuild all")
    	flag.BoolVar(&debug, "d", debug, "enable debugging of bootstrap process")
    	flag.BoolVar(&distpack, "distpack", distpack, "write distribution files to pkg/distpack")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    			if prev, ok := previous[key]; ok && !changed.Contains(key) {
    				// Reuse the previous EnvoyFilterWrapper if it exists and hasn't changed when optimized config rebuild is enabled
    				efw = prev
    			}
    		}
    		// Rebuild the envoy filter in all other cases.
    		if efw == nil {
    			efw = convertToEnvoyFilterWrapper(&envoyFilterConfig)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier.go

    	ipvX_addr := "ipv4_addr" //nolint:stylecheck // var name intentionally resembles value
    	if proxier.ipFamily == v1.IPv6Protocol {
    		ipX = "ip6"
    		ipvX_addr = "ipv6_addr"
    	}
    
    	// We currently fully-rebuild our sets and maps on each resync
    	tx.Flush(&knftables.Set{
    		Name: clusterIPsSet,
    	})
    	tx.Flush(&knftables.Map{
    		Name: firewallIPsMap,
    	})
    	tx.Flush(&knftables.Map{
    		Name: noEndpointServicesMap,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  7. src/go/build/build.go

    	PkgObj        string   // installed .a file
    	AllTags       []string // tags that can influence file selection in this directory
    	ConflictDir   string   // this directory shadows Dir in $GOPATH
    	BinaryOnly    bool     // cannot be rebuilt from source (has //go:binary-only-package comment)
    
    	// Source files
    	GoFiles           []string // .go source files (excluding CgoFiles, TestGoFiles, XTestGoFiles)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top