Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for pollable (0.24 sec)

  1. android/guava/src/com/google/common/base/Preconditions.java

    import com.google.common.annotations.GwtCompatible;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Static convenience methods that help a method or constructor check whether it was invoked
     * correctly (that is, whether its <i>preconditions</i> were met).
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

    import org.gradle.test.preconditions.UnitTestPreconditions
    import org.gradle.util.Path
    import org.gradle.util.internal.ToBeImplemented
    import spock.lang.Issue
    
    import javax.annotation.Nullable
    import java.util.function.Consumer
    
    import static org.gradle.internal.snapshot.CaseSensitivity.CASE_SENSITIVE
    
    class DefaultExecutionPlanParallelTest extends AbstractExecutionPlanSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

            "multipleOf": { "type": "number", "format": "double" },
            "not": {
              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"
            },
            "nullable": { "type": "boolean" },
            "oneOf": {
              "type": "array",
              "items": {
                "default": {},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

          return getArgsMutable();
        }
    
        // Returns the callee of this operation.
        CallInterfaceCallable getCallableForCallee() { return getFAttr(); }
        // Sets the callee from the callable
        void setCalleeFromCallable(::mlir::CallInterfaceCallable callee);
    
        // Returns the resolved callee function of this operation.
        // Prefer passing in SymbolTableCollection to reduce lookup costs by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // Adds the TPUReplicateMetatdataOp and TPUCompilationResultOp ops to the
      // function called by the provided 'caller'.
      mlir::CallInterfaceCallable callable = caller.getCallableForCallee();
      mlir::SymbolRefAttr sym = callable.dyn_cast<mlir::SymbolRefAttr>();
      auto func = llvm::dyn_cast<mlir::func::FuncOp>(
          mlir::SymbolTable::lookupNearestSymbolFrom(caller, sym));
      OpBuilder builder(func.getBody());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"has(self.setNullableStr) && self.setNullableStr == 'v3'":   4,
    				// We treat null fields as absent fields, not as null valued fields.
    				// Note that this is different than how we treat nullable list items or map values.
    				"type(self.setNullableStr) != null_type": 4,
    
    				// a field that is set to null is treated the same as an absent field in validation rules
    				"!has(self.setToNullNullableStr)": 2,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    					Type: "object",
    				},
    				AdditionalProperties: &schema.StructuralOrBool{
    					Bool: true,
    					Structural: &schema.Structural{
    						Generic: schema.Generic{
    							Type:     "boolean",
    							Nullable: false,
    						},
    					},
    				},
    				ValidationExtensions: schema.ValidationExtensions{
    					XValidations: apiextensions.ValidationRules{
    						{
    							Rule:    "size(self) > 0",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    This includes instances of `Callable`, such as closures, allowing for lazy evaluation of the property values.
    Be aware that the types `FileCollection` and `FileTree` are ``Iterable&lt;File&gt;``s.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                        is FirResolvedNamedReference -> when (calleeReference.resolvedSymbol) {
                            // `calleeReference.resolvedSymbol` isn't guaranteed to be callable. For example, function type parameters used in
                            // expression positions (e.g. `T` in `println(T)`) are parsed as `KtSimpleNameExpression` and built into
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            return importAffectsUsagesOfClassesWithSameName(classToImport, importAllInParent)
        }
    
        /**
         * Same as above, but for more general callable symbols.
         *
         * Currently only checks constructor calls, assuming `true` for everything else.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
Back to top