Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 102 for rebuild (0.1 sec)

  1. src/encoding/json/bench_test.go

    	clearCache := func() {
    		fieldCache = sync.Map{}
    	}
    
    	// MissTypes tests the performance of repeated cache misses.
    	// This measures the time to rebuild a cache of size nt.
    	for nt := 1; nt <= maxTypes; nt *= 10 {
    		ts := types[:nt]
    		b.Run(fmt.Sprintf("MissTypes%d", nt), func(b *testing.B) {
    			nc := runtime.GOMAXPROCS(0)
    			for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:00:17 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    =====
    [source,kotlin]
    ----
    .
    ├── settings.gradle.kts
    ├── subproject-one
    │   └── build.gradle.kts
    └── subproject-two
        └── build.gradle.kts
    ----
    =====
    [.multi-language-sample]
    =====
    [source,groovy]
    ----
    .
    ├── settings.gradle
    ├── subproject-one
    │   └── build.gradle
    └── subproject-two
        └── build.gradle
    ----
    =====
    ====
    
    [[sec:build_sources]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    This means unrelated changes (such as changes to build scripts) will not trigger a rebuild.
    To incorporate build logic changes, the continuous build must be restarted manually.
    
    Continuous build uses <<file_system_watching.adoc#sec:daemon_watch_fs,file system watching>> to detect changes to the inputs.
    If file system watching does not work on your system, then continuous build won't work either.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/buildid.go

    					}
    
    					// Poison a.Target to catch uses later in the build.
    					a.Target = "DO NOT USE - main build pseudo-cache Target"
    					a.built = "DO NOT USE - main build pseudo-cache built"
    					if a.json != nil {
    						a.json.BuildID = a.buildID
    					}
    					return true
    				}
    				// Otherwise restore old build ID for main build.
    				a.buildID = oldBuildID
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. src/regexp/onepass.go

    		visitQueue   = newQueue(len(p.Inst))
    		check        func(uint32, []bool) bool
    		onePassRunes = make([][]rune, len(p.Inst))
    	)
    
    	// check that paths from Alt instructions are unambiguous, and rebuild the new
    	// program as a onepass program
    	check = func(pc uint32, m []bool) (ok bool) {
    		ok = true
    		inst := &p.Inst[pc]
    		if visitQueue.contains(pc) {
    			return
    		}
    		visitQueue.insert(pc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            file("api/build.gradle") << "configurations { api }"
            file("impl/build.gradle") << """
                configurations { util }
                dependencies { util project(path: ':api', configuration: 'api') }
                task build(dependsOn: configurations.util)
            """
    
            when:
            inDirectory("impl")
            run("build")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

      };
      SmallVector<Type, 4> new_result_types;
      for (OpResult result : op->getResults()) {
        if (can_eliminate(result)) continue;
        new_result_types.push_back(result.getType());
      }
    
      // Rebuild the new operation with lesser number of results.
      OpBuilder builder(op);
      Operation *new_op = Operation::create(
          op->getLoc(), op->getName(), new_result_types, op->getOperands(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. hack/update-vendor.sh

      )
    done
    
    
    # Phase 7: update internal modules
    kube::log::status "vendor: updating internal modules" >&11
    hack/update-internal-modules.sh
    
    
    # Phase 8: rebuild vendor directory
    (
      kube::log::status "vendor: running 'go work vendor'" >&11
      unset GOWORK
      unset GOFLAGS
      go work vendor
    )
    
    kube::log::status "vendor: updating vendor/LICENSES" >&11
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. cmd/bucket-targets.go

    				cancel()
    				sys.hMutex.Lock()
    				sys.hc = m
    				sys.hMutex.Unlock()
    			}
    			hcTimer.Reset(defaultHealthCheckDuration)
    		case <-ctx.Done():
    			return
    		}
    	}
    }
    
    // periodically rebuild the healthCheck map from list of targets to clear
    // out stale endpoints
    func (sys *BucketTargetSys) reloadHealthCheckers(ctx context.Context) {
    	m := make(map[string]epHealth)
    	tgts := sys.ListTargets(ctx, "", "")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:09:56 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	if len(slices) == 0 {
    		log.Debugf("endpoint slices of (%s, %s) not found", name, namespace)
    		return nil
    	}
    
    	if updateCache {
    		// A cache update was requested. Rebuild the endpoints for these slices.
    		for _, slice := range slices {
    			esc.updateEndpointCacheForSlice(hostName, slice)
    		}
    	}
    
    	return esc.endpointCache.Get(hostName)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top