Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 197 for prebuilt (0.21 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractClassChangeIncrementalCompilationIntegrationTest.groovy

            run language.compileTaskName
    
            then:
            outputs.recompiledClasses("C", "OnClass", "OnMethod", "OnParameter", "OnField")
        }
    
        def "changed class with private constant does not incur full rebuild"() {
            source "class A {}", "class B { private final static int x = 1;}"
            outputs.snapshot { run language.compileTaskName }
    
            when:
            source "class B { /* change */ }"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. src/cmd/dist/main.go

    import (
    	"flag"
    	"fmt"
    	"os"
    	"runtime"
    	"strings"
    )
    
    func usage() {
    	xprintf(`usage: go tool dist [command]
    Commands are:
    
    banner                  print installation banner
    bootstrap               rebuild everything
    clean                   deletes all built files
    env [-p]                print environment (-p: include $PATH)
    install [dir]           install individual directory
    list [-json] [-broken]  list all supported platforms
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    	tg.tempFile("src/p1/p1.go", "package p1\nvar X = 02\n")
    	tg.run("test", "-p=1", "-x", "-v", "-short", "t/...")
    
    	// p2 should have been rebuilt.
    	tg.grepStderr(`([\\/]compile|gccgo).*p2.go`, "did not recompile p2")
    
    	// t1 does not import anything, should not have been rebuilt.
    	tg.grepStderrNot(`([\\/]compile|gccgo).*t1_test.go`, "incorrectly recompiled t1")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/StartParameterBuildOptions.java

            private static final String LONG_OPTION = "no-rebuild";
            private static final String SHORT_OPTION = "a";
    
            public NoProjectDependenciesRebuildOption() {
                super(null, CommandLineOptionConfiguration.create(LONG_OPTION, SHORT_OPTION, "Do not rebuild project dependencies."));
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 22:47:53 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/ACE.java

         * not be set within all security descriptors even though the ACE was in
         * face inherited. If an inherited ACE is added to a parent the Windows
         * ACL editor will rebuild all children ACEs and set this flag accordingly.
         */
        public boolean isInherited() {
            return (flags & FLAGS_INHERITED) != 0;
        }
        /**
         * Returns the flags for this ACE. The </tt>isInherited()</tt>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7.2K bytes
    - Viewed (0)
  6. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultArtifactDescriptorReader.java

                    }
                    result.addException(e);
                    throw new ArtifactDescriptorException(result);
                }
    
                Model model;
    
                // TODO hack: don't rebuild model if it was already loaded during reactor resolution
                final WorkspaceReader workspace = session.getWorkspaceReader();
                if (workspace instanceof MavenWorkspaceReader) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/ACE.java

         * not be set within all security descriptors even though the ACE was in
         * face inherited. If an inherited ACE is added to a parent the Windows
         * ACL editor will rebuild all children ACEs and set this flag accordingly.
         * 
         * @return whether this is an inherited ACE
         */
        boolean isInherited ();
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.5K bytes
    - Viewed (0)
  8. hack/verify-e2e-test-ownership.sh

    # input
    spec_summaries="${KUBE_ROOT}/_output/specsummaries.json"
    # output
    results_json="${tmpdir}/results.json"
    summary_json="${tmpdir}/summary.json"
    failures_json="${tmpdir}/failures.json"
    
    # rebuild dependencies if necessary
    function ensure_dependencies() {
      local -r ginkgo="${KUBE_ROOT}/_output/bin/ginkgo"
      local -r e2e_test="${KUBE_ROOT}/_output/bin/e2e.test"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 06:46:18 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt

            } catch (_: EOFException) {
              break // End of journal.
            }
          }
    
          redundantOpCount = lineCount - lruEntries.size
    
          // If we ended on a truncated line, rebuild the journal before appending to it.
          if (!exhausted()) {
            rebuildJournal()
          } else {
            journalWriter?.closeQuietly()
            journalWriter = newJournalWriter()
          }
        }
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  10. pkg/api/v1/endpoints/util.go

    	key := addressKey{ip: addr.IP}
    	if addr.TargetRef != nil {
    		key.uid = addr.TargetRef.UID
    	}
    
    	// Accumulate the address. The full EndpointAddress structure is preserved for use when
    	// we rebuild the subsets so that the final TargetRef has all of the necessary data.
    	existingAddress := allAddrs[key]
    	if existingAddress == nil {
    		// Make a copy so we don't write to the
    		// input args of this function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 07 07:01:25 UTC 2018
    - 8K bytes
    - Viewed (0)
Back to top