Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 145 for Avery (0.11 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    		// they get incomplete debug info on 32-bit platforms.
    		return
    	}
    	if start == end {
    		if state.loggingLevel > 1 {
    			// Printf not logf so not gated by GOSSAFUNC; this should fire very rarely.
    			// TODO this fires a lot, need to figure out why.
    			state.logf("Skipping empty location list for %v in %s\n", state.vars[varID], state.f.Name)
    		}
    		return
    	}
    
    	list := state.lists[varID]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/MapMakerInternalMap.java

          if ((readCount.incrementAndGet() & DRAIN_THRESHOLD) == 0) {
            runCleanup();
          }
        }
    
        /**
         * Performs routine cleanup prior to executing a write. This should be called every time a write
         * thread acquires the segment lock, immediately after acquiring the lock.
         */
        @GuardedBy("this")
        void preWriteCleanup() {
          runLockedCleanup();
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

                        println "\${parameters.transformName} received dependencies files \${inputArtifactDependencies*.name} for processing \${input.name}"
                        assert inputArtifactDependencies.every { it.exists() }
    
                        def output = outputs.file(input.name + ".txt")
                        def workspace = output.parentFile
                        assert workspace.directory && workspace.list().length == 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  4. src/go/printer/nodes.go

    				// break line if the opening "(" or previous parameter ended on a different line
    				ws = ignore
    			} else if i > 0 {
    				p.print(blank)
    			}
    			// parameter names
    			if len(par.Names) > 0 {
    				// Very subtle: If we indented before (ws == ignore), identList
    				// won't indent again. If we didn't (ws == indent), identList will
    				// indent if the identList spans multiple lines, and it will outdent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                        return true;
                    }
                }
            }
            return false;
        }
    
        /**
         * Returns the set of system properties that should be set on every JVM used by this executer.
         */
        protected Map<String, String> getImplicitJvmSystemProperties() {
            Map<String, String> properties = new LinkedHashMap<>();
    
            if (getUserHomeDir() != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    	return encodePPC64RotateMask((32-srw+sld)&31, int64(mask), 32)
    }
    
    // Convert a PPC64 opcode from the Op to OpCC form. This converts (op x y)
    // to (Select0 (opCC x y)) without having to explicitly fixup every user
    // of op.
    //
    // E.g consider the case:
    // a = (ADD x y)
    // b = (CMPconst [0] a)
    // c = (OR a z)
    //
    // A rule like (CMPconst [0] (ADD x y)) => (CMPconst [0] (Select0 (ADDCC x y)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

         * make resolution fail if we decide that 2 configurations with the same attributes lead to an error.
         *
         * Also, since configurations can have multiple parents, it would be very easy to face a situation
         * where ordering of the "extendsFrom" clauses trigger different resolution results.
         *
         * There's another reason for not allowing inheritance: it allows more precise selection, while still
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

          if ((readCount.incrementAndGet() & DRAIN_THRESHOLD) == 0) {
            runCleanup();
          }
        }
    
        /**
         * Performs routine cleanup prior to executing a write. This should be called every time a write
         * thread acquires the segment lock, immediately after acquiring the lock.
         */
        @GuardedBy("this")
        void preWriteCleanup() {
          runLockedCleanup();
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    [[sec:runtime_api_for_adhoc]]
    === Declaring inputs and outputs of ad-hoc tasks
    
    This runtime API is provided through a couple of aptly named properties that are available on every Gradle task:
    
    * link:{groovyDslPath}/org.gradle.api.Task.html#org.gradle.api.Task:inputs[Task.getInputs()] of type link:{javadocPath}/org/gradle/api/tasks/TaskInputs.html[TaskInputs]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                    outputFile = layout.buildDirectory.file("out.txt")
                }
            """
    
            expect:
            fails("broken")
    
            // The failure is currently very specific to the annotation type
            // TODO  - fail earlier and add some expectations here
    
            fails("broken")
    
            where:
            annotationType << [
                Input,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
Back to top