Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 90 for prebuilt (0.15 sec)

  1. src/run.bash

    # Thread count limit on NetBSD 7.
    if ulimit -T &> /dev/null; then
    	[ "$(ulimit -H -T)" = "unlimited" ] || ulimit -S -T $(ulimit -H -T)
    fi
    
    export GOPATH=/nonexist-gopath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:02:23 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ContinuousBuildFileWatchingIntegrationTest.groovy

        def setup() {
            executer.requireIsolatedDaemons()
        }
    
        def "file system watching picks up changes causing a continuous build to rebuild"() {
            given:
            // Do not drop the VFS in the first build, since there is only one continuous build invocation.
            // FileSystemWatchingFixture automatically sets the argument for the first build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/build_defs.bzl

            # copybara:uncomment(OSS version passes this to py_library) lib_rule = py_strict_library,
            deps = [
                ":gen_%s" % name,
            ],
        )
    
        # Link the register op and rebuild the binary
        gen_tfr_lib_exec = gen_op_lib_exec + "_with_op_library"
        py_strict_binary(
            name = gen_tfr_lib_exec,
            main = src,
            srcs = [src],
            python_version = "PY3",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/configgen.go

    		pullSecrets map[string][]byte) []*core.TypedExtensionConfig
    
    	// MeshConfigChanged is invoked when mesh config is changed, giving a chance to rebuild any cached config.
    	MeshConfigChanged(mesh *meshconfig.MeshConfig)
    }
    
    type ConfigGeneratorImpl struct {
    	Cache model.XdsCache
    }
    
    func NewConfigGenerator(cache model.XdsCache) *ConfigGeneratorImpl {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. hack/lint-dependencies.sh

      echo "which breaks consumers of our published modules."
      echo "1. Use hack/pin-dependency.sh to switch to the preferred version for each module"
      echo "2. Run hack/update-vendor.sh to rebuild the vendor directory"
      echo "3. Run hack/lint-dependencies.sh to verify no additional changes are required"
      echo ""
      echo "${outdated}"
    fi
    
    noncanonical=$(go list -m -json all | jq -r "
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:42 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultExecutionStateChangeDetector.java

                lastExecution.getOutputFilesProducedByWork(),
                remainingPreviouslyProducedOutputs
            );
    
            // Collect changes that would trigger a rebuild
            ChangeContainer rebuildTriggeringChanges = errorHandling(executable, new SummarizingChangeContainer(
                previousSuccessState,
                implementationChanges,
                inputPropertyChanges,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. hack/pin-dependency.sh

                (cd "$(dirname "${modfile}")" && go mod edit -replace "${dep}=${replacement}@${rev}")
            done
        fi
      popd >/dev/null 2>&1
    done
    
    echo ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. 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)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/file_system_watching.adoc

    // limitations under the License.
    
    [[sec:daemon_watch_fs]]
    = File System Watching
    
    Gradle maintains a Virtual File System (VFS) to calculate what needs to be rebuilt on repeat builds of a project.
    By watching the file system, Gradle keeps the VFS current between builds.
    
    == Enable
    
    Gradle enables file system watching by default for supported operating systems since Gradle 7.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 16:37:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. security/pkg/nodeagent/caclient/providers/citadel/client.go

    	// Becase that the grpc client still use the old tls configuration to reconnect to istiod.
    	// So here we need to rebuild the caClient in order to use the new root cert.
    	defer func() {
    		if err != nil {
    			citadelClientLog.Errorf("failed to sign CSR: %v", err)
    			if err := c.reconnect(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top