Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 121 for UInt32 (0.33 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/generated.pb.go

    				return fmt.Errorf("proto: wrong wireType = %d for field TimeoutSeconds", wireType)
    			}
    			var v int32
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				v |= int32(b&0x7F) << shift
    				if b < 0x80 {
    					break
    				}
    			}
    			m.TimeoutSeconds = &v
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 200.5K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    	db := newTestDB(t, "foo")
    	defer closeDB(t, db)
    	exec(t, db, "CREATE|t1|name=string,age=int32,dead=bool")
    	_, err := db.Prepare("INSERT|t1|name=?,age=bogusconversion")
    	if err == nil {
    		t.Fatalf("expected error")
    	}
    	if err.Error() != `fakedb: invalid conversion to int32 from "bogusconversion"` {
    		t.Errorf("unexpected error: %v", err)
    	}
    }
    
    func TestExec(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          ('use_constant_with_int32_input', dtypes.int32, False, True),
          ('use_variable_with_int32_input', dtypes.int32, True, True),
          ('use_constant_with_int64_input', dtypes.int64, False, True),
          ('use_variable_with_int64_input', dtypes.int64, True, True),
          ('small_gather_use_constant', dtypes.int32, False, False),
          ('small_gather_use_variable', dtypes.int32, True, False),
      )
      @test_util.run_v2_only
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authorization/v1beta1/generated.pb.go

    			}
    			if iNdEx >= l {
    				return io.ErrUnexpectedEOF
    			}
    			b := dAtA[iNdEx]
    			iNdEx++
    			wire |= uint64(b&0x7F) << shift
    			if b < 0x80 {
    				break
    			}
    		}
    		fieldNum := int32(wire >> 3)
    		wireType := int(wire & 0x7)
    		if wireType == 4 {
    			return fmt.Errorf("proto: ExtraValue: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/authorization/v1/generated.pb.go

    			}
    			if iNdEx >= l {
    				return io.ErrUnexpectedEOF
    			}
    			b := dAtA[iNdEx]
    			iNdEx++
    			wire |= uint64(b&0x7F) << shift
    			if b < 0x80 {
    				break
    			}
    		}
    		fieldNum := int32(wire >> 3)
    		wireType := int(wire & 0x7)
    		if wireType == 4 {
    			return fmt.Errorf("proto: ExtraValue: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 100.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.pb.go

    			}
    			if iNdEx >= l {
    				return io.ErrUnexpectedEOF
    			}
    			b := dAtA[iNdEx]
    			iNdEx++
    			wire |= uint64(b&0x7F) << shift
    			if b < 0x80 {
    				break
    			}
    		}
    		fieldNum := int32(wire >> 3)
    		wireType := int(wire & 0x7)
    		if wireType == 4 {
    			return fmt.Errorf("proto: AuditAnnotation: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 117.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    			ExpectedResult: `{}`,
    		},
    		"int32 medium": {
    			Old:            `{"int32":1000000}`,
    			New:            `{"int32":1000000,"name":"newname"}`,
    			ExpectedPatch:  `{"name":"newname"}`,
    			ExpectedResult: `{"int32":1000000,"name":"newname"}`,
    		},
    		"int32 max": {
    			Old:            `{"int32":2147483647}`,
    			New:            `{"int32":2147483647,"name":"newname"}`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

            tensor<2x2x!tf_type.qint32>, tensor<2x!tf_type.qint32>,
            tensor<f32>, tensor<i32>,
            tensor<f32>, tensor<i32>,
            tensor<2xf32>, tensor<i32>) -> tensor<2x2x!tf_type.qint32>
      func.return
    }
    
    // -----
    
    func.func @testUniformQuantizedClipByValue(
        %operand: tensor<*x!tf_type.qint32>, %min: tensor<!tf_type.qint32>, %max: tensor<!tf_type.qint32>, 
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/framework_test.go

    }()
    
    var defaultWeights = map[string]int32{
    	scoreWithNormalizePlugin1: 1,
    	scoreWithNormalizePlugin2: 2,
    	scorePlugin1:              1,
    }
    
    var state = &framework.CycleState{}
    
    // Pod is only used for logging errors.
    var pod = &v1.Pod{}
    var node = &v1.Node{
    	ObjectMeta: metav1.ObjectMeta{
    		Name: nodeName,
    	},
    }
    var lowPriority, highPriority = int32(0), int32(1000)
    var lowPriorityPod = &v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "desiredReplicas": {
                "default": 0,
                "description": "desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.",
                "format": "int32",
                "type": "integer"
              },
              "lastScaleTime": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
Back to top