Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 363 for fadds (0.09 sec)

  1. src/sync/waitgroup.go

    //
    // [the Go memory model]: https://go.dev/ref/mem
    type WaitGroup struct {
    	noCopy noCopy
    
    	state atomic.Uint64 // high 32 bits are counter, low 32 bits are waiter count.
    	sema  uint32
    }
    
    // Add adds delta, which may be negative, to the [WaitGroup] counter.
    // If the counter becomes zero, all goroutines blocked on [WaitGroup.Wait] are released.
    // If the counter goes negative, Add panics.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableMultiset.java

        }
    
        Builder(boolean forSubtype) {
          // for ImmutableSortedMultiset not to allocate data structures not used there
          this.contents = null;
        }
    
        /**
         * Adds {@code element} to the {@code ImmutableMultiset}.
         *
         * @param element the element to add
         * @return this {@code Builder} object
         * @throws NullPointerException if {@code element} is null
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/report/source_html.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package report
    
    import (
    	"html/template"
    )
    
    // AddSourceTemplates adds templates used by PrintWebList to t.
    func AddSourceTemplates(t *template.Template) {
    	template.Must(t.Parse(`{{define "weblistcss"}}` + weblistPageCSS + `{{end}}`))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/jvm/war/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Adds support for assembling JVM web application WAR files"
    
    dependencies {
        api(project(":language-jvm"))
        api(project(":base-services"))
        api(project(":core"))
        api(project(":core-api"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcPluginIntegrationTest.groovy

            return "codenarc"
        }
    
        @Override
        String getMainTask() {
            return "check"
        }
    
        def setup() {
            writeBuildFile()
            writeConfigFile()
        }
    
        def "adds codenarc task for each source set"() {
            given:
            buildFile << '''
                sourceSets {
                    other {
                        groovy
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Adds support for building Groovy projects"
    
    errorprone {
        disabledChecks.addAll(
            "ModifyCollectionInEnhancedForLoop", // 1 occurrences
            "UnusedMethod", // 4 occurrences
            "UnusedVariable", // 1 occurrences
        )
    }
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":build-option"))
        api(project(":core-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/statistics.h

    // Reads the calibration statistics from the given directory.
    absl::StatusOr<absl::flat_hash_map<
        std::string, tensorflow::calibrator::CalibrationStatistics>>
    ReadStatistics(absl::string_view calibration_data_dir);
    
    // Adds calibrated min / max values to CustomAggregator nodes in `graph_def`.
    // The min and max values will be added to the "min" and "max" attributes,
    // respectively. `calibration_options` provides the strategy to retrieve min and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.distribution.api-kotlin")
    }
    
    description = "Adds support for using JVM toolchains in projects"
    
    errorprone {
        disabledChecks.addAll(
            "StringCaseLocaleUsage", // 2 occurrences
        )
    }
    
    dependencies {
        api(projects.stdlibJavaExtensions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/cmd/pack/pack.go

    	}
    	for i, name := range ar.files {
    		if e.Name == name {
    			copy(ar.files[i:], ar.files[i+1:])
    			ar.files = ar.files[:len(ar.files)-1]
    			return true
    		}
    	}
    	return false
    }
    
    // addFiles adds files to the archive. The archive is known to be
    // sane and we are positioned at the end. No attempt is made
    // to check for existing files.
    func (ar *Archive) addFiles() {
    	if len(ar.files) == 0 {
    		usage()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleTest.java

      }
    
      /** getAndAdd returns previous value and adds given value */
      public void testGetAndAdd() {
        for (double x : VALUES) {
          for (double y : VALUES) {
            AtomicDouble a = new AtomicDouble(x);
            double z = a.getAndAdd(y);
            assertBitEquals(x, z);
            assertBitEquals(x + y, a.get());
          }
        }
      }
    
      /** addAndGet adds given value to current, and returns current value */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top