Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 321 for harmless (0.13 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/net/dial_unix_test.go

    		if err == nil {
    			// On some operating systems, localhost
    			// connects _sometimes_ succeed immediately.
    			// Prevent that, so we exercise the code path
    			// we're interested in testing. This seems
    			// harmless. It makes FreeBSD 10.10 work when
    			// run with many iterations. It failed about
    			// half the time previously.
    			return syscall.EINPROGRESS
    		}
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. 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)
  8. src/runtime/cgo/abi_amd64.h

    // Macros for transitioning from the host ABI to Go ABI0.
    //
    // These save the frame pointer, so in general, functions that use
    // these should have zero frame size to suppress the automatic frame
    // pointer, though it's harmless to not do this.
    
    #ifdef GOOS_windows
    
    // REGS_HOST_TO_ABI0_STACK is the stack bytes used by
    // PUSH_REGS_HOST_TO_ABI0.
    #define REGS_HOST_TO_ABI0_STACK (28*8 + 8)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 12:38:13 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top