Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 95 for buildA (0.24 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/BUILD

    Matthias Kramm <******@****.***> 1711664526 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/build.go

    			base.Fatal(err)
    		}
    		v = mg.Selected(path)
    	}
    
    	if v == "none" {
    		return &modinfo.ModulePublic{
    			Path: path,
    			Error: &modinfo.ModuleError{
    				Err: "module not in current build",
    			},
    		}
    	}
    
    	return moduleInfo(ctx, rs, module.Version{Path: path, Version: v}, 0, nil)
    }
    
    // addUpdate fills in m.Update if an updated version is available.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. .github/workflows/build.yml

            uses: gradle/actions/setup-gradle@v3
    
          - name: Build okcurl
            run: ./gradlew okcurl:nativeImage
    
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v3
    
          - name: Build ConsoleLauncher
            run: ./gradlew -PgraalBuild=true native-image-tests:nativeImage
    
          - name: Run Checks
            run: ./native-image-tests/build/graal/ConsoleLauncher
    
      testandroid:
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/shell.go

    			if cfg.BuildX {
    				sh.ShowCmd("", "mv %s %s", src, dst)
    			}
    			return nil
    		}
    	}
    
    	return sh.CopyFile(dst, src, perm, force)
    }
    
    // copyFile is like 'cp src dst'.
    func (sh *Shell) CopyFile(dst, src string, perm fs.FileMode, force bool) error {
    	if cfg.BuildN || cfg.BuildX {
    		sh.ShowCmd("", "cp %s %s", src, dst)
    		if cfg.BuildN {
    			return nil
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/networkfilter.go

    	return push.Telemetry.TCPFilters(proxy, class, svc)
    }
    
    // setAccessLogAndBuildTCPFilter sets the AccessLog configuration in the given
    // TcpProxy instance and builds a TCP filter out of it.
    func setAccessLogAndBuildTCPFilter(push *model.PushContext, node *model.Proxy,
    	config *tcp.TcpProxy, class istionetworking.ListenerClass, svc *model.Service,
    ) *listener.Filter {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/generate/generate.go

    			g.errorf("no arguments to directive")
    		}
    		if words[0] == "-command" {
    			g.setShorthand(words)
    			continue
    		}
    		// Run the command line.
    		if cfg.BuildN || cfg.BuildX {
    			fmt.Fprintf(os.Stderr, "%s\n", strings.Join(words, " "))
    		}
    		if cfg.BuildN {
    			continue
    		}
    		g.exec(words)
    	}
    	if err != nil && err != io.EOF {
    		g.errorf("error reading %s: %s", base.ShortPath(g.path), err)
    	}
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/cache/CacheConfigurationsContinuousIntegrationTest.groovy

            then:
            succeeds("foo")
            file('build/foo/foo').text == 'bar'
    
            when:
            file('foo').text = 'baz'
    
            then:
            buildTriggeredAndSucceeded()
            file('build/foo/foo').text == 'baz'
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "can change cache configurations in between builds in a session"() {
            executer.requireOwnGradleUserHomeDir()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/action.go

    }
    
    // BuildActionID returns the action ID section of a's build ID.
    func (a *Action) BuildActionID() string { return actionID(a.buildID) }
    
    // BuildContentID returns the content ID section of a's build ID.
    func (a *Action) BuildContentID() string { return contentID(a.buildID) }
    
    // BuildID returns a's build ID.
    func (a *Action) BuildID() string { return a.buildID }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    ==== buildSrc can now see included builds from the root
    
    Previously, `buildSrc` was built in such a way that included builds were ignored from the root build.
    
    Since Gradle 6.7, `buildSrc` can see any included build from the root build.
    This may cause dependencies to be substituted from an included build in `buildSrc`.
    This may also change the order in which some builds are executed if an included build is needed by `buildSrc`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    Properties in a build script can easily become a maintenance headache and convolute the build script logic.
    The `gradle.properties` helps with keeping properties separate from the build script and should be explored as viable option.
    It's a good location for placing <<build_environment.adoc#sec:gradle_configuration_properties,properties that control the build environment>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top