Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 171 for rebuild (0.17 sec)

  1. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/JavaProjectIntegrationTest.groovy

            when:
            executer.withTasks("build").run()
    
            then:
            testFile("build/resources/main/prod.resource").assertExists()
            testFile("build/classes/java/main/prod.resource").assertDoesNotExist()
    
            testFile("build/resources/test/test.resource").assertExists()
            testFile("build/classes/java/test/test.resource").assertDoesNotExist()
    
            testFile("build/classes/java/main/Main.class").assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/CompactHashMap.java

          // head of its appropriate `newTable` linked list.
          while (oldNext != UNSET) {
            int entryIndex = oldNext - 1;
            int oldEntry = entries[entryIndex];
    
            // Rebuild the full 32-bit hash using entry hashPrefix and oldTableIndex ("hashSuffix").
            int hash = CompactHashing.getHashPrefix(oldEntry, oldMask) | oldTableIndex;
    
            int newTableIndex = hash & newMask;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  3. src/internal/types/errors/codes.go

    	//  var _ = max(s, t)
    	InvalidMinMaxOperand
    
    	// TooNew indicates that, through build tags or a go.mod file,
    	// a source file requires a version of Go that is newer than
    	// the logic of the type checker. As a consequence, the type
    	// checker may produce spurious errors or fail to report real
    	// errors. The solution is to rebuild the application with a
    	// newer Go release.
    	TooNew
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/list/list.go

            CompiledGoFiles   []string   // .go files presented to compiler (when using -compiled)
            IgnoredGoFiles    []string   // .go source files ignored due to build constraints
            IgnoredOtherFiles []string // non-.go source files ignored due to build constraints
            CFiles            []string   // .c source files
            CXXFiles          []string   // .cc, .cxx and .cpp source files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  5. pkg/volume/iscsi/iscsi_util.go

    				if err != nil {
    					// don't fail if we can't set startup mode, but log warning so there is a clue
    					klog.Warningf("Warning: Failed to set iSCSI login mode to manual. Error: %v", err)
    				}
    
    				// Rebuild the host map after logging in
    				portalHostMap, err := b.deviceUtil.GetISCSIPortalHostMapForTarget(b.Iqn)
    				if err != nil {
    					return "", err
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 22 12:53:01 UTC 2022
    - 34.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    Before you make any changes, <<inspect.adoc#inspecting_build_scans,inspect your build>> with a build scan or profile report. A proper build inspection helps
    you understand:
    
    * how long it takes to build your project
    * which parts of your build are slow
    
    Inspecting provides a comparison point to better understand the impact of the changes recommended on this page.
    
    To best make use of this page:
    
    . Inspect your build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/controller.go

    // Most of Pod is immutable, so once it has been created we are ok to cache the internal representation.
    // However, a few fields (labels) are mutable. When these change, we call recomputeServiceForPod and rebuild the cache
    // for all service's the pod is a part of and push an update.
    func (c *Controller) recomputeServiceForPod(pod *v1.Pod) {
    	allServices := c.services.List(pod.Namespace, klabels.Everything())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/help/helpdoc.go

    Files of each of these types except .syso may contain build
    constraints, but the go command stops scanning for build constraints
    at the first item in the file that is not a blank line or //-style
    line comment. See the go/build package documentation for
    more details.
    	`,
    }
    
    var HelpBuildmode = &base.Command{
    	UsageLine: "buildmode",
    	Short:     "build modes",
    	Long: `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    // to the report options.
    func (rpt *Report) newTrimmedGraph() (g *graph.Graph, origCount, droppedNodes, droppedEdges int) {
    	o := rpt.options
    
    	// Build a graph and refine it. On each refinement step we must rebuild the graph from the samples,
    	// as the graph itself doesn't contain enough information to preserve full precision.
    	visualMode := o.OutputFormat == Dot
    	cumSort := o.CumSort
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/imports/build.go

    // lines beginning with '// +build' are taken as build directives.
    //
    // The file is accepted only if each such line lists something
    // matching the file. For example:
    //
    //	// +build windows linux
    //
    // marks the file as applicable only on Windows and Linux.
    //
    // If tags["*"] is true, then ShouldBuild will consider every
    // build tag except "ignore" to be both true and false for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top