Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for scary (0.04 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/initialization/InternalGradleFailuresIntegrationTest.groovy

            given:
            def daemonDir = executer.daemonBaseDir
            daemonDir.touch()
    
            when:
            fails 'hello'
    
            then:
            daemonDir.isFile()
            assertHasStartupFailure(failure, "Failed to create directory '${daemonDir}")
        }
    
        def "Error message due to unwritable native directory is not scary"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:54 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. guava-gwt/pom.xml

                    build?
                    -->
                  <extraJvmArgs>-Dgwt.watchFileChanges=false</extraJvmArgs>
                </configuration>
              </execution>
              <!--
                GWT issues some scary warnings while running tests, but I believe they are harmless.
                Let's take the warnings for one module, c.g.c.base.testModule, as an example:
    
                  [INFO] Validating units:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedSet.java

            ? emptySet(delegate.comparator())
            : new RegularImmutableSortedSet<E>(delegate, isSubset);
      }
    
      private final transient SortedSet<E> sortedDelegate;
    
      /**
       * Scary constructor for ContiguousSet. This constructor (in this file, the GWT emulation of
       * ImmutableSortedSet) creates an empty sortedDelegate, which, in a vacuum, sets this object's
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. src/net/lookup.go

    // (if both r and r.Dial are non-nil) or else Dialer.DialContext.
    func (r *Resolver) dial(ctx context.Context, network, server string) (Conn, error) {
    	// Calling Dial here is scary -- we have to be sure not to
    	// dial a name that will require a DNS lookup, or Dial will
    	// call back here to translate it. The DNS config parser has
    	// already checked that all the cfg.servers are IP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  5. src/runtime/runtime2.go

    // holding a running P, but then some updates to a particular memory
    // word went through write barriers and some did not. This breaks the
    // write barrier shadow checking mode, and it is also scary: better to have
    // a word that is completely ignored by the GC than to have one for which
    // only a few updates are ignored.
    //
    // Gs and Ps are always reachable via true pointers in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  6. pkg/volume/hostpath/host_path.go

    func (r *hostPathDeleter) GetPath() string {
    	return r.path
    }
    
    // Delete for hostPath removes the local directory so long as it is beneath /tmp/*.
    // THIS IS FOR TESTING AND LOCAL DEVELOPMENT ONLY!  This message should scare you away from using
    // this deleter for anything other than development and testing.
    func (r *hostPathDeleter) Delete() error {
    	regexp := regexp.MustCompile("/tmp/.+")
    	if !regexp.MatchString(r.GetPath()) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. src/os/exec/exec.go

    	// options to fix the security problem, and people depend on
    	// those old copies of execabs continuing to work.
    	// The result is that we have to leave this variable around for the
    	// rest of time, a compatibility scar.
    	//
    	// See https://go.dev/blog/path-security
    	// and https://go.dev/issue/43724 for more context.
    	lookPathErr error
    
    	// cachedLookExtensions caches the result of calling lookExtensions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top