Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 135 for harmless (0.19 sec)

  1. guava/src/com/google/common/util/concurrent/CollectionFuture.java

       * on the fields of TimeoutFuture. This field is slightly different from the fields discussed
       * there: cancel() never reads this field, only writes to it. That makes the race here completely
       * harmless, rather than just 99.99% harmless.
       */
      @CheckForNull @LazyInit private List<@Nullable Present<V>> values;
    
      CollectionFuture(
          ImmutableCollection<? extends ListenableFuture<? extends V>> futures,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/CollectionFuture.java

       * on the fields of TimeoutFuture. This field is slightly different from the fields discussed
       * there: cancel() never reads this field, only writes to it. That makes the race here completely
       * harmless, rather than just 99.99% harmless.
       */
      @CheckForNull @LazyInit private List<@Nullable Present<V>> values;
    
      CollectionFuture(
          ImmutableCollection<? extends ListenableFuture<? extends V>> futures,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/proc_cpuinfo_linux.go

    		return errors.New("no CPU features found")
    	}
    	in = in[i+len(features):]
    	if i := strings.Index(in, "\n"); i != -1 {
    		in = in[:i]
    	}
    	m := map[string]*bool{}
    
    	initOptions() // need it early here; it's harmless to call twice
    	for _, o := range options {
    		m[o.Name] = o.Feature
    	}
    	// The EVTSTRM field has alias "evstrm" in Go, but Linux calls it "evtstrm".
    	m["evtstrm"] = &ARM64.HasEVTSTRM
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/EmbeddedKotlinOutputNormalizer.groovy

    package org.gradle.integtests.fixtures.logging
    
    import org.gradle.exemplar.executor.ExecutionMetadata
    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    
    import java.util.regex.Pattern
    
    /**
     * Removes harmless warnings from the build-init Kotlin samples output.
     *
     * The warnings are produced by the Kotlin compiler when mixing Java versions:
     * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/result/DefaultResolvedComponentResultTest.groovy

    import static org.gradle.api.internal.artifacts.result.ResolutionResultDataBuilder.*
    
    class DefaultResolvedComponentResultTest extends Specification {
    
        def "mutating dependencies or dependents is harmless"() {
            given:
            def module = newModule("a", "c", "1")
            def dependency  = newDependency("a", "x", "1")
            def dependent   = newDependency("a", "x2", "1")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/upload/Doc.txt

        eventually the upload will succeed, and the file will be moved to updatedir.
        It is possible that other processes will not see the file in updatedir and
        upload it again and also move it to uploaddir. This is harmless as all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/make.rc

    	echo 'Set $GOROOT_BOOTSTRAP to a working Go tree >= Go '$bootgo'.' >[1=2]
    	exit bootstrap
    }
    
    # Get the exact bootstrap toolchain version to help with debugging.
    # We clear GOOS and GOARCH to avoid an ominous but harmless warning if
    # the bootstrap doesn't support them.
    GOROOT_BOOTSTRAP_VERSION=`{bootstrapenv $GOROOT_BOOTSTRAP/bin/go version | sed 's/go version //'}
    echo 'Building Go cmd/dist using '$GOROOT_BOOTSTRAP'. ('$"GOROOT_BOOTSTRAP_VERSION')'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenPublishS3IntegrationTest.groovy

                // FIXME KM M1 support might require aws-sdk-java-v2:2.17.198 and higher; see https://github.com/aws/aws-sdk-java-v2/issues/2942
                //   ...or this is just a harmless ST, see https://github.com/aws/aws-sdk-java/issues/2365
                executer.withStackTraceChecksDisabled()
            }
            succeeds 'publish'
    
            then:
            module.assertPublishedAsJavaModule()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/vcstest/hg/hgrepo1.txt

    	# commit always uses the current date (so is not reproducible). Fortunately,
    	# that commit lands on the 'default' branch and is not tagged as 'tip', so it
    	# seems to be mostly harmless. However, because it is nondeterministic we
    	# should avoid listing it here.
    	#
    	# Unfortunately, some of our builders are still running Debian 9 “Stretch”,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/primitives/IntArrayAsListTest.java

    /**
     * Test suite covering {@link Ints#asList(int[])}.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible(emulated = true)
    @SuppressWarnings("cast") // redundant casts are intentional and harmless
    public class IntArrayAsListTest extends TestCase {
    
      private static List<Integer> asList(Integer[] values) {
        int[] temp = new int[values.length];
        for (int i = 0; i < values.length; i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top