Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 99 for Tconstants (0.24 sec)

  1. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

                          TF::TensorListStackOp, TF::TensorListResizeOp,
                          TF::TensorListConcatV2Op>();
      // TODO(hinsu): Use TFLite constant op for constants.
      target.addLegalOp<arith::ConstantOp>();
      target.addLegalOp<func::FuncOp>();
      target.addDynamicallyLegalOp<func::ReturnOp>(is_legal);
      target.addDynamicallyLegalOp<TF::YieldOp>(is_legal);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/types.go

    	// APIGroups, APIVersions, Resources, etc.
    	Rule
    }
    
    // OperationType specifies what type of operation the admission hook cares about.
    type OperationType string
    
    // The constants should be kept in sync with those defined in k8s.io/kubernetes/pkg/admission/interface.go.
    const (
    	OperationAll OperationType = "*"
    	Create       OperationType = "CREATE"
    	Update       OperationType = "UPDATE"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          this.exception = checkNotNull(exception);
        }
      }
    
      /** A special value to represent cancellation and the 'wasInterrupted' bit. */
      private static final class Cancellation {
        // constants to use when GENERATE_CANCELLATION_CAUSES = false
        @CheckForNull static final Cancellation CAUSELESS_INTERRUPTED;
        @CheckForNull static final Cancellation CAUSELESS_CANCELLED;
    
        static {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  4. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          this.exception = checkNotNull(exception);
        }
      }
    
      /** A special value to represent cancellation and the 'wasInterrupted' bit. */
      private static final class Cancellation {
        // constants to use when GENERATE_CANCELLATION_CAUSES = false
        @CheckForNull static final Cancellation CAUSELESS_INTERRUPTED;
        @CheckForNull static final Cancellation CAUSELESS_CANCELLED;
    
        static {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  5. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      auto subtypes = resource_type.getSubtypes();
      if (subtypes.size() == 1) return subtypes[0];
      return nullptr;
    }
    
    // Replaces all `tf.VarIsInitializedOp` in a block with a constant true.
    // TODO(b/171039585): Replace this with proper analysis of
    // `tf.VarIsInitializedOp` in regards to resource writes and control flow.
    void SetAllVarIsInitializedToTrue(Block* block) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/html/template/escape_test.go

    			"nonStringValue",
    			"{{.T}}",
    			"true",
    		},
    		{
    			"untypedNilValue",
    			"{{.U}}",
    			"",
    		},
    		{
    			"typedNilValue",
    			"{{.Z}}",
    			"&lt;nil&gt;",
    		},
    		{
    			"constant",
    			`<a href="/search?q={{"'a<b'"}}">`,
    			`<a href="/search?q=%27a%3cb%27">`,
    		},
    		{
    			"multipleAttrs",
    			"<a b=1 c={{.H}}>",
    			"<a b=1 c=&lt;Hello&gt;>",
    		},
    		{
    			"urlStartRel",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            Factory<ResolutionStrategyInternal> childResolutionStrategy = resolutionStrategy != null ? Factories.constant(resolutionStrategy.copy()) : resolutionStrategyFactory;
            DefaultConfiguration copiedConfiguration = defaultConfigurationFactory.create(
                newName,
                configurationsProvider,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  8. src/time/time.go

    //
    // The Add and Sub computations are oblivious to the choice of epoch.
    //
    // The presentation computations - year, month, minute, and so on - all
    // rely heavily on division and modulus by positive constants. For
    // calendrical calculations we want these divisions to round down, even
    // for negative values, so that the remainder is always positive, but
    // Go's division (like most hardware division instructions) rounds to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    // 3. all dependencies added to `buildSrc/build.gradle.kts` will be available to all build scripts
    // 3. all members from `buildSrc/src/main/kotlin` will be available to all build scripts
    // 4. handy for constants, objects, functions, extension functions
    // 5. perfect for Gradle Tasks, Gradle Plugins and DSL Extensions
    
    
    [[kotdsl:containers]]
    == Working with container objects
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    type RuleWithOperations = v1.RuleWithOperations
    
    // OperationType specifies an operation for a request.
    // +enum
    type OperationType = v1.OperationType
    
    // The constants should be kept in sync with those defined in k8s.io/kubernetes/pkg/admission/interface.go.
    const (
    	OperationAll OperationType = v1.OperationAll
    	Create       OperationType = v1.Create
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
Back to top