Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 170 for applyTo (0.29 sec)

  1. android/guava/src/com/google/common/reflect/TypeToken.java

        IGNORE_TYPE_VARIABLE_OR_WILDCARD {
          @Override
          public boolean apply(TypeToken<?> type) {
            return !(type.runtimeType instanceof TypeVariable
                || type.runtimeType instanceof WildcardType);
          }
        },
        INTERFACE_ONLY {
          @Override
          public boolean apply(TypeToken<?> type) {
            return type.getRawType().isInterface();
          }
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    +
    image::deprecations.png[Deprecations View of a Gradle Build Scan]
    +
    This is so that you can see any deprecation warnings that apply to your build.
    +
    Alternatively, you can run `gradle help --warning-mode=all` to see the deprecations in the console, though it may not report as much detailed information.
    . Update your plugins.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/MapsTest.java

        Equivalence<String> caseInsensitiveEquivalence =
            Equivalence.equals()
                .onResultOf(
                    new Function<String, String>() {
                      @Override
                      public String apply(String input) {
                        return input.toLowerCase();
                      }
                    });
    
        MapDifference<Integer, String> diff1 = Maps.difference(left, right, caseInsensitiveEquivalence);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    						b := a.Args[0]
    						a.reset(OpInvalid)
    						a = b
    					}
    				}
    				if vchange && debug > 1 {
    					fmt.Printf("rewriting %s  ->  %s\n", v0.LongString(), v.LongString())
    				}
    
    				// apply rewrite function
    				if rv(v) {
    					vchange = true
    					// If value changed to a poor choice for a statement boundary, move the boundary
    					if v.Pos.IsStmt() == src.PosIsStmt {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "string"
            },
            "operation": {
              "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
              "type": "string"
            },
            "subresource": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                "type": "string"
              },
              "operation": {
                "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
                "type": "string"
              },
              "subresource": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // Required.
      optional MatchResources matchConstraints = 2;
    
      // Validations contain CEL expressions which is used to apply the validation.
      // Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is
      // required.
      // +listType=atomic
      // +optional
      repeated Validation validations = 3;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.kotlin.dsl.KotlinGradleScriptTemplate.apply(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (KotlinGradleScriptTemplate.kt:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  9. src/go/types/expr.go

    		goto Error
    	}
    
    	// check if comparison is defined for operands
    	code = UndefinedOp
    	switch op {
    	case token.EQL, token.NEQ:
    		// spec: "The equality operators == and != apply to operands that are comparable."
    		switch {
    		case x.isNil() || y.isNil():
    			// Comparison against nil requires that the other operand type has nil.
    			typ := x.typ
    			if x.isNil() {
    				typ = y.typ
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // Required.
      optional MatchResources matchConstraints = 2;
    
      // Validations contain CEL expressions which is used to apply the validation.
      // Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is
      // required.
      // +listType=atomic
      // +optional
      repeated Validation validations = 3;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top