Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for RUNTIME (0.16 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				// a runtime error attempting an equality check between string and int types.
    				"type(self.something) == string && self.something == '25%'",
    				"type(self.something) == int ? self.something == 1 : self.something == '25%'",
    
    				// Because the type is dynamic it receives no type checking, and evaluates to false when compared to
    				// other types at runtime.
    				"self.something != ['anything']",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //
    // During a particular build, the following build tags are satisfied:
    //
    //   - the target operating system, as spelled by runtime.GOOS, set with the
    //     GOOS environment variable.
    //   - the target architecture, as spelled by runtime.GOARCH, set with the
    //     GOARCH environment variable.
    //   - any architecture features, in the form GOARCH.feature
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/net/http/serve_test.go

    func TestServerDuplicateBackgroundRead(t *testing.T) {
    	run(t, testServerDuplicateBackgroundRead, []testMode{http1Mode})
    }
    func testServerDuplicateBackgroundRead(t *testing.T, mode testMode) {
    	if runtime.GOOS == "netbsd" && runtime.GOARCH == "arm" {
    		testenv.SkipFlaky(t, 24826)
    	}
    
    	goroutines := 5
    	requests := 2000
    	if testing.Short() {
    		goroutines = 3
    		requests = 100
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        for (auto it = ++old_shape.rbegin(); it != old_shape.rend(); ++it) {
          if (*it != 1) {
            reshape->emitError(
                "Non-vector shape input is used, might cause runtime error");
            return failure();
          }
        }
        auto new_shape = shape.reshape(tensorflow::GetTypeFromTFTensorShape(
            {*old_shape.rbegin()}, shape.getShapedType().getElementType()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (PrefetchCacheStreamed addr mem) => (PRFM [1] addr mem)
    
    // Arch-specific inlining for small or disjoint runtime.memmove
    (SelectN [0] call:(CALLstatic {sym} s1:(MOVDstore _ (MOVDconst [sz]) s2:(MOVDstore  _ src s3:(MOVDstore {t} _ dst mem)))))
    	&& sz >= 0
    	&& isSameCall(sym, "runtime.memmove")
    	&& s1.Uses == 1 && s2.Uses == 1 && s3.Uses == 1
    	&& isInlinableMemmove(dst, src, sz, config)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/eviction_manager_test.go

    		if whichFs == "nodefs" {
    			diskStat.Node.Fs.InodesFree = &internalFsInodesFree
    		} else if whichFs == "imagefs" {
    			diskStat.Node.Runtime.ImageFs.InodesFree = &internalFsInodesFree
    		} else if whichFs == "containerfs" {
    			diskStat.Node.Runtime.ContainerFs.InodesFree = &internalFsInodesFree
    		}
    		return diskStat
    	}
    
    	testCases := map[string]struct {
    		nodeFsInodesFree              string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. pkg/apis/apps/validation/validation_test.go

    	"strings"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/google/go-cmp/cmp/cmpopts"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/dump"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    	return ct.test(t)
    }
    
    func doConcurrentTest(t testing.TB, ct concurrentTest) {
    	maxProcs, numReqs := 1, 500
    	if testing.Short() {
    		maxProcs, numReqs = 4, 50
    	}
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(maxProcs))
    
    	db := newTestDB(t, "people")
    	defer closeDB(t, db)
    
    	ct.init(t, db)
    	defer ct.finish(t)
    
    	var wg sync.WaitGroup
    	wg.Add(numReqs)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    methodVisitor
                        .visitAnnotation(descriptorOf(annotationType), retention != null && retention.value() == RetentionPolicy.RUNTIME)
                        .visitEnd();
                }
            }
    
            /**
             * Generates the init method with deprecation logging disabled.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  10. cmd/admin-handlers.go

    	"crypto/x509"
    	"encoding/base64"
    	"encoding/json"
    	"encoding/pem"
    	"errors"
    	"fmt"
    	"hash/crc32"
    	"io"
    	"math"
    	"net/http"
    	"net/url"
    	"os"
    	"path"
    	"path/filepath"
    	"regexp"
    	"runtime"
    	"sort"
    	"strconv"
    	"strings"
    	"sync/atomic"
    	"time"
    
    	"github.com/dustin/go-humanize"
    	"github.com/klauspost/compress/zip"
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/madmin-go/v3/estream"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top