Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 82 for i32test (0.11 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy_test.go

    									XValidations: apiextensions.ValidationRules{
    										{
    											Rule:            "isTest == true",
    											Message:         "isTest should be true.",
    											OptionalOldSelf: ptr.To(true),
    										},
    									},
    									Properties: map[string]apiextensions.JSONSchemaProps{
    										"isTest": {
    											Type: "boolean",
    										},
    									},
    								},
    							},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  2. internal/bucket/replication/rule_test.go

    			opts:           ObjectOpts{Name: "c2test", DeleteMarker: false, OpType: ObjectReplicationType, Replica: true}, // 1. Replica mod sync enabled; a replica
    			expectedResult: false,
    		},
    		// case 3 - rule with replica modification disabled; not a replica
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java/customDirs/kotlin/build.gradle.kts

    sourceSets {
        main {
            java {
                srcDir("thirdParty/src/main/java")
            }
        }
    }
    // end::custom-extra-src-dir[]
    
    
    // tag::custom-source-set[]
    sourceSets {
        create("intTest")
    }
    // end::custom-source-set[]
    
    // tag::custom-report-dirs[]
    reporting.baseDir = file("my-reports")
    java.testResultsDir = layout.buildDirectory.dir("my-test-results")
    
    tasks.register("showDirs") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/internal/lazyregexp/lazyre.go

    	return r.re().SubexpNames()
    }
    
    var inTest = len(os.Args) > 0 && strings.HasSuffix(strings.TrimSuffix(os.Args[0], ".exe"), ".test")
    
    // New creates a new lazy regexp, delaying the compiling work until it is first
    // needed. If the code is being run as part of tests, the regexp compiling will
    // happen immediately.
    func New(str string) *Regexp {
    	lr := &Regexp{str: str}
    	if inTest {
    		// In tests, always compile the regexps early.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/internal/lazyregexp/lazyre.go

    	return r.re().SubexpNames()
    }
    
    var inTest = len(os.Args) > 0 && strings.HasSuffix(strings.TrimSuffix(os.Args[0], ".exe"), ".test")
    
    // New creates a new lazy regexp, delaying the compiling work until it is first
    // needed. If the code is being run as part of tests, the regexp compiling will
    // happen immediately.
    func New(str string) *Regexp {
    	lr := &Regexp{str: str}
    	if inTest {
    		// In tests, always compile the regexps early.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 27 23:49:01 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java/customDirs/groovy/build.gradle

    sourceSets {
        main {
            java {
                srcDir 'thirdParty/src/main/java'
            }
        }
    }
    // end::custom-extra-src-dir[]
    
    
    // tag::custom-source-set[]
    sourceSets {
        intTest
    }
    // end::custom-source-set[]
    
    // tag::custom-report-dirs[]
    reporting.baseDir = "my-reports"
    java.testResultsDir = layout.buildDirectory.dir("my-test-results")
    
    tasks.register('showDirs') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/divconst_test.go

    	for i := 0; i < b.N; i++ {
    		u64res = uint64(i) / 7
    		boolres = uint64(i)%7 == 0
    	}
    }
    
    var i32res int32
    
    func BenchmarkDivconstI32(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		i32res = int32(i) / 7
    	}
    }
    
    func BenchmarkModconstI32(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		i32res = int32(i) % 7
    	}
    }
    
    func BenchmarkDivisiblePow2constI32(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 00:07:35 UTC 2020
    - 7.7K bytes
    - Viewed (0)
  8. src/testing/iotest/writer.go

    // Copyright 2009 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 iotest
    
    import "io"
    
    // TruncateWriter returns a Writer that writes to w
    // but stops silently after n bytes.
    func TruncateWriter(w io.Writer, n int64) io.Writer {
    	return &truncateWriter{w, n}
    }
    
    type truncateWriter struct {
    	w io.Writer
    	n int64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 674 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/BUILD

            "@local_tsl//tsl/platform:env",
            "@local_tsl//tsl/platform:errors",
            "@local_tsl//tsl/platform:statusor",
        ],
    )
    
    tf_cc_test(
        name = "io_test",
        srcs = ["io_test.cc"],
        deps = [
            ":io",
            "@com_google_absl//absl/functional:any_invocable",
            "@com_google_absl//absl/status",
            "@com_google_absl//absl/status:statusor",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. src/go/doc/example.go

    				continue
    			}
    			f, ok := decl.(*ast.FuncDecl)
    			if !ok || f.Recv != nil {
    				continue
    			}
    			numDecl++
    			name := f.Name.Name
    			if isTest(name, "Test") || isTest(name, "Benchmark") || isTest(name, "Fuzz") {
    				hasTests = true
    				continue
    			}
    			if !isTest(name, "Example") {
    				continue
    			}
    			if params := f.Type.Params; len(params.List) != 0 {
    				continue // function has params; not a valid example
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top