Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for fixArg (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    // limitations under the License.
    
    [[validation-problem]]
    = Dealing with validation problems
    
    This page summarizes the different task (or in general work) validation problems that Gradle reports and provides guidance for fixing them.
    
    [[invalid_use_of_cacheable_annotation]]
    == Invalid use of cacheable annotation
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/base/PredicatesTest.java

      public void testIsEqualToNull_serialization() {
        checkSerialization(Predicates.equalTo(null));
      }
    
      /**
       * Tests for Predicates.instanceOf(x). TODO: Fix the comment style after fixing annotation
       * stripper to remove comments properly. Currently, all tests before the comments are removed as
       * well.
       */
      @GwtIncompatible // Predicates.instanceOf
      public void testIsInstanceOf_apply() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    			},
    		},
    	}...)
    
    	// Add the cluster role for reading the ServiceAccountIssuerDiscovery endpoints
    	// Also allow slash-ended URLs to allow clients generated from published openapi docs prior to fixing the trailing slash to work properly
    	roles = append(roles, rbacv1.ClusterRole{
    		ObjectMeta: metav1.ObjectMeta{Name: "system:service-account-issuer-discovery"},
    		Rules: []rbacv1.PolicyRule{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  4. src/encoding/gob/type.go

    	star := ""
    	if rt.Name() == "" {
    		if pt := rt; pt.Kind() == reflect.Pointer {
    			star = "*"
    			// NOTE: The following line should be rt = pt.Elem() to implement
    			// what the comment above claims, but fixing it would break compatibility
    			// with existing gobs.
    			//
    			// Given package p imported as "full/p" with these definitions:
    			//     package p
    			//     type T1 struct { ... }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/main/resources/header.html

                            <li><a href="../userguide/dependency_capability_conflict.html">Handling Mutually Exclusive Dependencies</a></li>
                            <li><a href="../userguide/component_metadata_rules.html">Fixing Metadata</a></li>
                            <li><a href="../userguide/resolution_rules.html">Customizing Resolution</a></li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  6. src/go/doc/reader.go

    	// methods may move values associated with types back into the global list. If the
    	// order is list-specific, sorting is not deterministic because the same order value
    	// may appear multiple times (was bug, found when fixing #16153).
    	r.order++
    }
    
    // fields returns a struct's fields or an interface's methods.
    func fields(typ ast.Expr) (list []*ast.Field, isStruct bool) {
    	var fields *ast.FieldList
    	switch t := typ.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/decl.go

    	var tparam0 *syntax.Field
    	if len(tdecl.TParamList) > 0 {
    		tparam0 = tdecl.TParamList[0]
    	}
    
    	// alias declaration
    	if tdecl.Alias {
    		// Report highest version requirement first so that fixing a version issue
    		// avoids possibly two -lang changes (first to Go 1.9 and then to Go 1.23).
    		if !versionErr && tparam0 != nil && !check.verifyVersionf(tparam0, go1_23, "generic type alias") {
    			versionErr = true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  8. src/go/types/decl.go

    	var tparam0 *ast.Field
    	if tdecl.TypeParams.NumFields() > 0 {
    		tparam0 = tdecl.TypeParams.List[0]
    	}
    
    	// alias declaration
    	if tdecl.Assign.IsValid() {
    		// Report highest version requirement first so that fixing a version issue
    		// avoids possibly two -lang changes (first to Go 1.9 and then to Go 1.23).
    		if !versionErr && tparam0 != nil && !check.verifyVersionf(tparam0, go1_23, "generic type alias") {
    			versionErr = true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top