Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for reserved4 (0.15 sec)

  1. src/encoding/gob/type.go

    	// Reserve some Ids for compatible expansion
    	tReserved7 = bootstrapType("_reserved1", (*struct{ r7 int })(nil))
    	tReserved6 = bootstrapType("_reserved1", (*struct{ r6 int })(nil))
    	tReserved5 = bootstrapType("_reserved1", (*struct{ r5 int })(nil))
    	tReserved4 = bootstrapType("_reserved1", (*struct{ r4 int })(nil))
    	tReserved3 = bootstrapType("_reserved1", (*struct{ r3 int })(nil))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbComNtTransaction.java

                dst[dstIndex++] = maxSetupCount;
            } else {
                dst[dstIndex++] = (byte)0x00;          // Reserved
            }
            dst[dstIndex++] = (byte)0x00;          // Reserved
            dst[dstIndex++] = (byte)0x00;          // Reserved
            writeInt4( totalParameterCount, dst, dstIndex );
            dstIndex += 4;
            writeInt4( totalDataCount, dst, dstIndex );
            dstIndex += 4;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/layout_optimization_layout_assignment_to_nhwc.mlir

      // CHECK-SAME: <{value = dense<[0, 3, 1, 2]> : tensor<4xi64>}>
      // CHECK: %[[RES_TRANSPOSE:[0-9]*]] = "tf.Transpose"(%y, %[[RES_PERM]])
      // CHECK: return %[[RES_TRANSPOSE]]
    
      %y, %batch_mean, %batch_var, %reserve_1, %reserve_2, %reserve_3
        = "tf.FusedBatchNormV3"(%arg0, %arg1, %arg1, %arg1, %arg1)
           {
             data_format = "NCHW",
             epsilon = 1.001 : f32,
             exponential_avg_factor = 1.0 : f32,
             is_training = true
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/layout_optimization_layout_assignment_to_nchw.mlir

      // CHECK-SAME: <{value = dense<[0, 2, 3, 1]> : tensor<4xi64>}>
      // CHECK: %[[RES_TRANSPOSE:[0-9]*]] = "tf.Transpose"(%y, %[[RES_PERM]])
      // CHECK: return %[[RES_TRANSPOSE]]
    
      %y, %batch_mean, %batch_var, %reserve_1, %reserve_2, %reserve_3
        = "tf.FusedBatchNormV3"(%arg0, %arg1, %arg1, %arg1, %arg1)
           {
             data_format = "NHWC",
             epsilon = 1.001 : f32,
             exponential_avg_factor = 1.0 : f32,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go

    	Imcasts    uint32
    	Omcasts    uint32
    	Iqdrops    uint32
    	Noproto    uint32
    	Recvtiming uint32
    	Xmittiming uint32
    	Lastchange Timeval32
    	Unused2    uint32
    	Hwassist   uint32
    	Reserved1  uint32
    	Reserved2  uint32
    }
    
    type IfaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	Metric  int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go

    	Imcasts    uint32
    	Omcasts    uint32
    	Iqdrops    uint32
    	Noproto    uint32
    	Recvtiming uint32
    	Xmittiming uint32
    	Lastchange Timeval32
    	Unused2    uint32
    	Hwassist   uint32
    	Reserved1  uint32
    	Reserved2  uint32
    }
    
    type IfaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	Metric  int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_source_order.txt

    [short] skip
    
    # Control
    ! go test example2_test.go example1_test.go
    
    # This test only passes if the source order is preserved
    go test example1_test.go example2_test.go
    
    -- example1_test.go --
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Make sure that go test runs Example_Z before Example_A, preserving source order.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 19 20:40:29 UTC 2020
    - 992 bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java

                dst[ dstIndex++ ] = this.maxSetupCount;
            }
            else {
                dst[ dstIndex++ ] = (byte) 0x00; // Reserved
            }
            dst[ dstIndex++ ] = (byte) 0x00; // Reserved
            dst[ dstIndex++ ] = (byte) 0x00; // Reserved
            SMBUtil.writeInt4(this.totalParameterCount, dst, dstIndex);
            dstIndex += 4;
            SMBUtil.writeInt4(this.totalDataCount, dst, dstIndex);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 13:43:42 UTC 2020
    - 3.9K bytes
    - Viewed (0)
  9. src/syscall/ztypes_darwin_amd64.go

    	Imcasts    uint32
    	Omcasts    uint32
    	Iqdrops    uint32
    	Noproto    uint32
    	Recvtiming uint32
    	Xmittiming uint32
    	Lastchange Timeval32
    	Unused2    uint32
    	Hwassist   uint32
    	Reserved1  uint32
    	Reserved2  uint32
    }
    
    type IfaMsghdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Addrs     int32
    	Flags     int32
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Metric    int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  10. src/cmd/cover/testdata/directives.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file is processed by the cover command, then a test verifies that
    // all compiler directives are preserved and positioned appropriately.
    
    //go:a
    
    //go:b
    package main
    
    //go:c1
    
    //go:c2
    //doc
    func c() {
    }
    
    //go:d1
    
    //doc
    //go:d2
    type d int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 23:38:38 UTC 2017
    - 502 bytes
    - Viewed (0)
Back to top