Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 86 for describeTo (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    In Eclipse IDEs you can enable and configure the configuration cache through Buildship in two ways, either globally or per run configuration.
    
    To enable it globally, go to `Preferences > Gradle`.
    You can use the properties described above as system properties.
    For example to enable the configuration cache, turning problems into warnings, add the following JVM arguments:
    
    * `-Dorg.gradle.configuration-cache=true`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Multimaps.java

        private static final long serialVersionUID = 0;
      }
    
      /**
       * Returns a synchronized (thread-safe) {@code SetMultimap} backed by the specified multimap.
       *
       * <p>You must follow the warnings described in {@link #synchronizedMultimap}.
       *
       * <p>The returned multimap will be serializable if the specified multimap is serializable.
       *
       * @param multimap the multimap to be wrapped
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Multimaps.java

        private static final long serialVersionUID = 0;
      }
    
      /**
       * Returns a synchronized (thread-safe) {@code SetMultimap} backed by the specified multimap.
       *
       * <p>You must follow the warnings described in {@link #synchronizedMultimap}.
       *
       * <p>The returned multimap will be serializable if the specified multimap is serializable.
       *
       * @param multimap the multimap to be wrapped
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Preconditions.java

       *
       * @param index a user-supplied index identifying an element of an array, list or string
       * @param size the size of that array, list or string
       * @param desc the text to use to describe this index in an error message
       * @return the value of {@code index}
       * @throws IndexOutOfBoundsException if {@code index} is negative or is not less than {@code size}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. src/go/types/api_test.go

    	A := pkg.Scope().Lookup("A")
    
    	got, want := A.Type().(*Alias).Rhs().String(), "p.B"
    	if got != want {
    		t.Errorf("A.Rhs = %s, want %s", got, want)
    	}
    }
    
    // Test the hijacking described of "any" described in golang/go#66921, for type
    // checking.
    func TestAnyHijacking_Check(t *testing.T) {
    	for _, enableAlias := range []bool{false, true} {
    		t.Run(fmt.Sprintf("EnableAlias=%t", enableAlias), func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  6. src/time/format.go

    		case stdFracSecond0, stdFracSecond9:
    			b = appendNano(b, t.Nanosecond(), std)
    		}
    	}
    	return b
    }
    
    var errBad = errors.New("bad value for field") // placeholder not passed to user
    
    // ParseError describes a problem parsing a time string.
    type ParseError struct {
    	Layout     string
    	Value      string
    	LayoutElem string
    	ValueElem  string
    	Message    string
    }
    
    // newParseError creates a new ParseError.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Preconditions.java

       *
       * @param index a user-supplied index identifying an element of an array, list or string
       * @param size the size of that array, list or string
       * @param desc the text to use to describe this index in an error message
       * @return the value of {@code index}
       * @throws IndexOutOfBoundsException if {@code index} is negative or is not less than {@code size}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    We recommend new projects looking to build C++ applications and libraries use the newer <<building_cpp_projects.adoc#building_cpp_projects,replacement plugins>>.
    
    WARNING: The native plugins described in this chapter are not compatible with the <<configuration_cache.adoc#config_cache:plugins:core,configuration cache>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. src/net/url/url_test.go

    	{"http://[fe80::%31%25en0]/", false},
    	{"http://[fe80::%31%25en0]:8080/", false},
    
    	// These two cases are valid as textual representations as
    	// described in RFC 4007, but are not valid as address
    	// literals with IPv6 zone identifiers in URIs as described in
    	// RFC 6874.
    	{"http://[fe80::1%en0]/", false},
    	{"http://[fe80::1%en0]:8080/", false},
    }
    
    func TestParseRequestURI(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. src/runtime/mheap.go

    			found = true
    			break
    		}
    		if offset < uintptr(s.offset) || (offset == uintptr(s.offset) && kind < s.kind) {
    			break
    		}
    		iter = &s.next
    	}
    	return iter, found
    }
    
    // The described object has a finalizer set for it.
    //
    // specialfinalizer is allocated from non-GC'd memory, so any heap
    // pointers must be specially handled.
    type specialfinalizer struct {
    	_       sys.NotInHeap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top