Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,181 for Avery (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    A task can only be loaded from the cache if it has stable task inputs.
    Unstable task inputs result in the task having a unique set of inputs for every build, which will always result in a cache miss.
    
    [[normalization]]
    == Better reuse via input normalization
    
    Having stable inputs is crucial for cacheable tasks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/swift/basic/groovy/build.gradle

    tasks.withType(SwiftCompile).configureEach {
        // Define a preprocessor macro for every binary
        macros.add("NDEBUG")
    
        // Define a compiler options
        compilerArgs.add '-O'
    }
    // end::swift-compiler-options-all-variants[]
    
    // tag::swift-compiler-options-per-variants[]
    application {
        binaries.configureEach(SwiftStaticLibrary) {
            // Define a preprocessor macro for every binary
            compileTask.get().macros.add("NDEBUG")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/ListenerCallQueue.java

          for (PerListenerQueue<L> queue : listeners) {
            queue.add(event, label);
          }
        }
      }
    
      /**
       * Dispatches all events enqueued prior to this call, serially and in order, for every listener.
       *
       * <p>Note: this method is idempotent and safe to call from any thread
       */
      public void dispatch() {
        // iterate by index to avoid concurrent modification exceptions
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ExecutionList.java

    /**
     * A support class for {@code ListenableFuture} implementations to manage their listeners. An
     * instance contains a list of listeners, each with an associated {@code Executor}, and guarantees
     * that every {@code Runnable} that is {@linkplain #add added} will be executed after {@link
     * #execute()} is called. Any {@code Runnable} added after the call to {@code execute} is still
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:17:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. test/fixedbugs/bug070.go

    	var r string
    outer:
    	for k = 0; k < 2; k++ {
    		r += fmt.Sprintln("outer loop top k", k)
    		if k != 0 {
    			panic("k not zero")
    		} // inner loop breaks this one every time
    		for i = 0; i < 2; i++ {
    			if i != 0 {
    				panic("i not zero")
    			} // loop breaks every time
    			r += fmt.Sprintln("inner loop top i", i)
    			if true {
    				r += "do break\n"
    				break outer
    			}
    		}
    	}
    	r += "broke\n"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 715 bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParameterizedModelQueryIntegrationTest.groovy

            outputContains("creating model with parameter='fetch2' for root project 'root'")
    
            and:
            models.keySet() ==~ [":"]
            models.values().every { it.size() == 4 }
    
            models[":"][0].message == "fetch1 It works from project :"
            models[":"][1].message == "fetch2 It works from project :"
            models[":"][2].message == "fetch1 It works from project :"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ExecutionList.java

    /**
     * A support class for {@code ListenableFuture} implementations to manage their listeners. An
     * instance contains a list of listeners, each with an associated {@code Executor}, and guarantees
     * that every {@code Runnable} that is {@linkplain #add added} will be executed after {@link
     * #execute()} is called. Any {@code Runnable} added after the call to {@code execute} is still
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:17:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractCaseVfsRelativePathTest.groovy

            "hello/world"  | "/var/hello/world\\inside" | 5      | true
            "hello\\world" | "/var/hello/world\\inside" | 5      | true
        }
    
        def "separator is smaller than every other character"() {
            expect:
            Integer.signum(VfsRelativePath.of(path1, offset).compareToFirstSegment(path2, caseSensitivity)) == result
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/Striped.java

        return Collections.unmodifiableList(asStripes);
      }
    
      // Static factories
    
      /**
       * Creates a {@code Striped<L>} with eagerly initialized, strongly referenced locks. Every lock is
       * obtained from the passed supplier.
       *
       * @param stripes the minimum number of stripes (locks) required
       * @param supplier a {@code Supplier<L>} object to obtain locks from
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 20:55:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  10. build-logic/performance-testing/src/test/groovy/gradlebuild/performance/generator/DependencyGeneratorTest.groovy

            then:
            projectDependencies.size() == numberOfProjects
            projectDependencies.keySet().every { it >= 1 && it <= numberOfProjects }
            projectDependencies.values().every { dependencyList -> dependencyList.every { it >= 1 && it <= numberOfProjects } }
            projectDependencies == projectDependencies2
    
            where:
            num  | distribution
            1    | [1]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 2.8K bytes
    - Viewed (0)
Back to top