Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 72 for const1 (0.13 sec)

  1. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    	}
    }
    func rewriteValueRISCV64_OpConst16(v *Value) bool {
    	// match: (Const16 [val])
    	// result: (MOVDconst [int64(val)])
    	for {
    		val := auxIntToInt16(v.AuxInt)
    		v.reset(OpRISCV64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		return true
    	}
    }
    func rewriteValueRISCV64_OpConst32(v *Value) bool {
    	// match: (Const32 [val])
    	// result: (MOVDconst [int64(val)])
    	for {
    		val := auxIntToInt32(v.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  2. src/html/entity.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package html
    
    import "sync"
    
    // All entities that do not end with ';' are 6 or fewer bytes long.
    const longestEntityWithoutSemicolon = 6
    
    // entity is a map from HTML entity names to their values. The semicolon matters:
    // https://html.spec.whatwg.org/multipage/named-characters.html
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_node_status_test.go

    	kubeletvolume "k8s.io/kubernetes/pkg/kubelet/volumemanager"
    	taintutil "k8s.io/kubernetes/pkg/util/taints"
    	"k8s.io/kubernetes/pkg/volume/util"
    	netutils "k8s.io/utils/net"
    )
    
    const (
    	maxImageTagsForTest = 20
    )
    
    // generateTestingImageLists generate randomly generated image list and corresponding expectedImageList.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

    std::string GetTypeName() {
    # if GTEST_HAS_RTTI
    
      const char* const name = typeid(T).name();
    #  if GTEST_HAS_CXXABI_H_ || defined(__HP_aCC)
      int status = 0;
      // gcc's implementation of typeid(T).name() mangles the type name,
      // so we have to demangle it.
    #   if GTEST_HAS_CXXABI_H_
      using abi::__cxa_demangle;
    #   endif  // GTEST_HAS_CXXABI_H_
      char* const readable_name = __cxa_demangle(name, 0, 0, &status);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 181.3K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

    std::string GetTypeName() {
    # if GTEST_HAS_RTTI
    
      const char* const name = typeid(T).name();
    #  if GTEST_HAS_CXXABI_H_ || defined(__HP_aCC)
      int status = 0;
      // gcc's implementation of typeid(T).name() mangles the type name,
      // so we have to demangle it.
    #   if GTEST_HAS_CXXABI_H_
      using abi::__cxa_demangle;
    #   endif  // GTEST_HAS_CXXABI_H_
      char* const readable_name = __cxa_demangle(name, 0, 0, &status);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 181.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    							t.Errorf("expected cost to be %d, but got %d", tt.expectedCost, tt.costBudget-remainingBudget)
    						}
    						return
    					}
    					if tt.expectSkipped {
    						// Skipped validations should have no cost. The only possible false positive here would be the CEL expression 'true'.
    						if remainingBudget != tt.costBudget {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    }
    
    def TFL_ExternalConstOp : Op<TFL_Dialect, "external_const", [
        Pure,
        QuantizableResult,
        DeclareOpInterfaceMethods<TFL_RuntimeVerification>]> {
      let summary = "External const op.";
    
      let description = [{
        External const op holds a `buffer_index` which points to a constant
        in the flatbuffer.
      }];
    
      let arguments = (ins I32Attr:$buffer_index);
    
      let results = (outs AnyTensor:$output);
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    // precedence is used for operator precedence. This is used to avoid
    // unnecessary parentheses when printing expressions in the LLVM style.
    type precedence int
    
    // The precedence values, in order from high to low.
    const (
    	precPrimary precedence = iota
    	precPostfix
    	precUnary
    	precCast
    	precPtrMem
    	precMul
    	precAdd
    	precShift
    	precSpaceship
    	precRel
    	precEqual
    	precAnd
    	precXor
    	precOr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    	clocktesting "k8s.io/utils/clock/testing"
    	"k8s.io/utils/ptr"
    )
    
    var realClock = &clock.RealClock{}
    var alwaysReady = func() bool { return true }
    
    const fastSyncJobBatchPeriod = 10 * time.Millisecond
    const fastJobApiBackoff = 10 * time.Millisecond
    const fastRequeue = 10 * time.Millisecond
    
    // testFinishedAt represents time one second later than unix epoch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build zos && s390x
    
    package unix
    
    const (
    	SYS_LOG                             = 0x17  // 23
    	SYS_COSH                            = 0x18  // 24
    	SYS_TANH                            = 0x19  // 25
    	SYS_EXP                             = 0x1A  // 26
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
Back to top