Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,941 for pconstants (0.27 sec)

  1. test/codegen/constants.go

    // asmcheck
    
    // Copyright 2023 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.
    
    package codegen
    
    // A uint16 or sint16 constant shifted left.
    func shifted16BitConstants(out [64]uint64) {
    	// ppc64x: "MOVD\t[$]8193,", "SLD\t[$]27,"
    	out[0] = 0x0000010008000000
    	// ppc64x: "MOVD\t[$]-32767", "SLD\t[$]26,"
    	out[1] = 0xFFFFFE0004000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 14:03:32 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/constants/constants.go

    	// ControlPlaneTier is the value used in the tier label to identify control plane components
    	ControlPlaneTier = "control-plane"
    
    	// Mode* constants were copied from pkg/kubeapiserver/authorizer/modes
    	// to avoid kubeadm dependency on the internal module
    	// TODO: share Mode* constants in component config
    
    	// ModeAlwaysAllow is the mode to set all requests as authorized
    	ModeAlwaysAllow string = "AlwaysAllow"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/constant-fold.mlir

    func.func @testConcatOffsetWithZeros() -> (tensor<3xi32>, tensor<3xi32>, tensor<3xi32>, tensor<3xi32>) {
      %concat_dim = arith.constant dense<1> : tensor<i32>
      %shape0 = arith.constant dense<0> : tensor<3xi32>
      %shape1 = arith.constant dense<[0, 3, 0]> : tensor<3xi32>
      %shape2 = arith.constant dense<[0, 5, 0]> : tensor<3xi32>
      %shape3 = arith.constant dense<0> : tensor<3xi32>
    
      // CHECK-DAG: [[OFFSET_0:%.*]] = "tf.Const{{.*}} dense<0> : tensor<3xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 31 23:22:24 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/PacConstants.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.pac;
    
    
    @SuppressWarnings ( "javadoc" )
    public interface PacConstants {
    
        static final int PAC_VERSION = 0;
    
        static final int LOGON_INFO = 1;
        static final int CREDENTIAL_TYPE = 2;
        static final int SERVER_CHECKSUM = 6;
        static final int PRIVSVR_CHECKSUM = 7;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/constants.mlir

    // RUN: flatbuffer_translate -mlir-to-tflite-flatbuffer %s -o - | flatbuffer_translate --tflite-flatbuffer-to-mlir - -o - | FileCheck %s
    // Ensure constants roundtrip exactly
    
    func.func @bool() -> tensor<4xi1> {
      // CHECK-LABEL: @bool
      // CHECK: value = dense<[false, true, true, false]> : tensor<4xi1>
      %0 = "tfl.pseudo_const"() { value = dense<[false, true, true, false]> : tensor<4xi1> } : () -> tensor<4xi1>
      func.return %0 : tensor<4xi1>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. pkg/config/constants/constants.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package constants
    
    const (
    	// UnspecifiedIP constant for empty IP address
    	UnspecifiedIP = "0.0.0.0"
    	// UnspecifiedIPv6 constant for empty IPv6 address
    	UnspecifiedIPv6 = "::"
    
    	// PilotWellKnownDNSCertPath is the path location for Pilot dns serving cert, often used with custom CA integrations
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. cmd/build-constants.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import "runtime"
    
    // DO NOT EDIT THIS FILE DIRECTLY. These are build-time constants
    // set through ‘buildscripts/gen-ldflags.go’.
    var (
    	// GOPATH - GOPATH value at the time of build.
    	GOPATH = ""
    
    	// GOROOT - GOROOT value at the time of build.
    	GOROOT = ""
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 17:57:52 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. internal/config/constants.go

    Pedro Juarez <******@****.***> 1704126993 -0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 01 16:36:33 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/constants.go

    Dmitri Shuralyov <******@****.***> 1697571594 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 318 bytes
    - Viewed (0)
  10. src/internal/syscall/unix/constants.go

    Kir Kolyshkin <******@****.***> 1717102840 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 434 bytes
    - Viewed (0)
Back to top