Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,097 for uvarint (0.12 sec)

  1. staging/src/k8s.io/api/apps/v1/types.go

    	// replicas is the number of Pods created by the StatefulSet controller.
    	Replicas int32 `json:"replicas" protobuf:"varint,2,opt,name=replicas"`
    
    	// readyReplicas is the number of pods created for this StatefulSet with a Ready Condition.
    	ReadyReplicas int32 `json:"readyReplicas,omitempty" protobuf:"varint,3,opt,name=readyReplicas"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta1/types.go

    	// replicas is the number of Pods created by the StatefulSet controller.
    	Replicas int32 `json:"replicas" protobuf:"varint,2,opt,name=replicas"`
    
    	// readyReplicas is the number of pods created by this StatefulSet controller with a Ready Condition.
    	ReadyReplicas int32 `json:"readyReplicas,omitempty" protobuf:"varint,3,opt,name=readyReplicas"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  3. src/debug/dwarf/buf.go

    			b.data = b.data[i+1:]
    			return c, bits
    		}
    	}
    	return 0, 0
    }
    
    // Unsigned int is just a varint.
    func (b *buf) uint() uint64 {
    	x, _ := b.varint()
    	return x
    }
    
    // Signed int is a sign-extended varint.
    func (b *buf) int() int64 {
    	ux, bits := b.varint()
    	x := int64(ux)
    	if x&(1<<(bits-1)) != 0 {
    		x |= -1 << bits
    	}
    	return x
    }
    
    // Address-sized uint.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 21 17:14:08 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// replicas is the number of Pods created by the StatefulSet controller.
    	Replicas int32 `json:"replicas" protobuf:"varint,2,opt,name=replicas"`
    
    	// readyReplicas is the number of pods created by this StatefulSet controller with a Ready Condition.
    	ReadyReplicas int32 `json:"readyReplicas,omitempty" protobuf:"varint,3,opt,name=readyReplicas"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/replicate_tensor_list_init_ops.mlir

        "tf.Yield"(%barg1, %barg2) : (tensor<!tf_type.variant<tensor<?x1xf32>>>, tensor<!tf_type.variant<tensor<?x1xf32>>>) -> ()
      }) {is_stateless = false} : (tensor<!tf_type.variant<tensor<?x1xf32>>>, tensor<!tf_type.variant<tensor<?x1xf32>>>) -> (tensor<!tf_type.variant<tensor<?x1xf32>>>, tensor<!tf_type.variant<tensor<?x1xf32>>>)
      func.return
    }
    
    // CHECK: while_region_op_two_sep_args_empty_tensor_list
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Jan 22 17:28:34 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/legalize-tensorlist.mlir

      %1 = "tf.AddN"(%arg0, %arg1) : (tensor<!tf_type.variant<tensor<*xi32>>>, tensor<!tf_type.variant<tensor<*xi32>>>) -> tensor<!tf_type.variant<tensor<*xi32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tensor_list_ops_decomposition.mlir

      %zeros-like = "tf.ZerosLike"(%addn) : (tensor<!tf_type.variant<tensor<f32>>>) -> tensor<!tf_type.variant<tensor<f32>>>
      // CHECK-NEXT: %[[ADDN2:.*]] = "tf.AddN"(%[[ADDN]], %[[ZEROS_LIKE]]) : (tensor<10xf32>, tensor<10xf32>) -> tensor<10xf32>
      %addn2 = "tf.AddN"(%addn, %zeros-like) : (tensor<!tf_type.variant<tensor<f32>>>, tensor<!tf_type.variant<tensor<f32>>>) -> tensor<!tf_type.variant<tensor<f32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 38.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/features/FeaturesResolveIntegrationTest.groovy

            then:
            failure.assertHasCause("""Unable to find a variant of org:foo:1.0 providing the requested capability org:feature-3:
       - Variant api provides org:foo:1.0
       - Variant feature1 provides org:feature-1:1.0
       - Variant feature2 provides org:feature-2:1.0
       - Variant runtime provides org:foo:1.0""")
        }
    
        def "can select a variant providing the required set of capabilities"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 20:29:39 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/functional-control-flow-to-cfg.mlir

    // -----
    
    func.func @testIfThen(%arg0: tensor<!tf_type.variant>) -> tensor<!tf_type.variant> {
      func.return %arg0 : tensor<!tf_type.variant>
    }
    func.func @testIfElse(%arg0: tensor<!tf_type.variant>) -> tensor<!tf_type.variant> {
      func.return %arg0 : tensor<!tf_type.variant>
    }
    
    // CHECK-LABEL: func @testIfCasts(%arg0: tensor<i1>, %arg1: tensor<!tf_type.variant<tensor<f32>>>) -> tensor<!tf_type.variant<tensor<f32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

                    }
                }
            }
        }
    
        def "can select both main variant and test fixtures of a single component"() {
            given:
            repository {
                'org:foo:1.0' {
                    variant('api') {}
                    variant('runtime') {}
                    variant('test-fixtures') {
                        artifact('test-fixtures')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top