Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for Builds (0.29 sec)

  1. src/cmd/go/internal/modget/get.go

    	// module, we may update another module in the build list that provides a
    	// package in 'all' that wasn't loaded as part of this 'go get' command.
    	// If we don't add a sum for that module, builds may fail later.
    	// Note that an incidentally updated package could still import packages
    	// from unknown modules or from modules in the build list that we didn't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

        @RequiredFeature(feature = GradleMetadataResolveRunner.REPOSITORY_TYPE, value = "maven")
        def "virtual platform missing modules are cached across builds"() {
            // Disable daemon, so that the second run executes with the file cache
            // and therefore make sure that we read the "missing" status from disk
            executer.withArgument('--no-daemon')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         */
        File getRootDir();
    
        /**
         * <p>Returns the build directory of this project.  The build directory is the directory which all artifacts are
         * generated into.  The default value for the build directory is <code><i>projectDir</i>/build</code></p>
         *
         * @return The build directory. Never returns null.
         * @deprecated Use {@code getLayout().getBuildDirectory()} instead
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

      apt-get -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin
      groupadd docker
      usermod -aG docker "$USER"
    
      if ! grep -q "cri-containerd" "/lib/systemd/system/docker.service"; then
        sed -i "s/ExecStart=\(.*\)/ExecStart=\1 --cri-containerd/" /lib/systemd/system/docker.service
      fi
    
      apt install -y conntrack vim htop ripgrep dnsutils tree ripgrep build-essential
    }
    
    function wait_coredns_available(){
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      class Subgraph {
       public:
        // Creates a graph to build the subgraph in, if it doesn't already exist,
        // using the same op registry and versions as graph_in.
        Node* MakeNodeImage(const Graph* graph_in, Node* node);
    
        // Returns the graph the subgraph is being built in.
        Graph* GetGraph() const;
    
        // Builds a FunctionDef, and adds it to 'library'. The value of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

     *     .addInterceptor(new HttpLoggingInterceptor())
     *     .cache(new Cache(cacheDir, cacheSize))
     *     .build();
     * ```
     *
     * ## Customize Your Client With newBuilder()
     *
     * You can customize a shared OkHttpClient instance with [newBuilder]. This builds a client that
     * shares the same connection pool, thread pools, and configuration. Use the builder methods to
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

            resolve.expectGraph {
                root(":", ":test:") {
                    module('org.gradle.test:lib:1.0')
                }
            }
        }
    
        def "included builds use their own libraries extension"() {
            file("included/build.gradle") << """
                plugins {
                    id 'java-library'
                }
    
                group = 'com.acme'
                version = 'zloubi'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    	// module.
    	TidyGoVersion string
    
    	// Tags are the build tags in effect (as interpreted by the
    	// cmd/go/internal/imports package).
    	// If nil, treated as equivalent to imports.Tags().
    	Tags map[string]bool
    
    	// Tidy, if true, requests that the build list and go.sum file be reduced to
    	// the minimal dependencies needed to reproducibly reload the requested
    	// packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            }
            return ret;
        }
    
        private String lookupClassName(PropertyExpression pe) {
            boolean doInitialClassTest = true;
            String name = "";
            // this loop builds a name from right to left each name part
            // separated by "."
            for (Expression it = pe; it != null; it = ((PropertyExpression) it).getObjectExpression()) {
                if (it instanceof VariableExpression) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    	clientset := fake.NewSimpleClientset(objects...)
    	if clientset == nil {
    		t.Fatal("unable to create fake client set")
    	}
    	return clientset
    }
    
    // builds a chain of handlers that include the panic recovery and timeout filter, so we can simulate the behavior of
    // a real apiserver.
    // the specified user is added as the authenticated user to the request context.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
Back to top