Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 207 for testLang (0.36 sec)

  1. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    	"math/rand"
    	"sort"
    	"strings"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	v1 "k8s.io/api/core/v1"
    	policy "k8s.io/api/policy/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/client-go/informers"
    	clientsetfake "k8s.io/client-go/kubernetes/fake"
    	clienttesting "k8s.io/client-go/testing"
    	"k8s.io/client-go/tools/events"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    	func BenchmarkXxx(b *testing.B) { ... }
    
    A fuzz test is one named FuzzXxx and should have the signature,
    
    	func FuzzXxx(f *testing.F) { ... }
    
    An example function is similar to a test function but, instead of using
    *testing.T to report success or failure, prints output to os.Stdout.
    If the last comment in the function starts with "Output:" then the output
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. src/regexp/testdata/testregex.c

    					test |= TEST_VERIFY;
    					test &= ~(TEST_AND|TEST_OR);
    					state.verify = state.passed;
    					continue;
    				case '&':
    					test |= TEST_VERIFY|TEST_AND;
    					test &= ~TEST_OR;
    					continue;
    				case '|':
    					test |= TEST_VERIFY|TEST_OR;
    					test &= ~TEST_AND;
    					continue;
    				case ';':
    					test |= TEST_OR;
    					test &= ~TEST_AND;
    					continue;
    
    				case '{':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  4. pkg/proxy/endpointschangetracker_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package proxy
    
    import (
    	"fmt"
    	"reflect"
    	"testing"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	discovery "k8s.io/api/discovery/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/utils/ptr"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    When configuring an executable explicitly for link:{groovyDslPath}/org.gradle.api.tasks.compile.ForkOptions.html#org.gradle.api.tasks.compile.ForkOptions:executable[`JavaCompile`] or link:{groovyDslPath}/org.gradle.api.tasks.testing.Test.html#org.gradle.api.tasks.testing.Test:executable[`Test`] tasks, Gradle will now emit an error if this executable does not exist.
    In the past, the task would be executed with the default toolchain or JVM running the build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

      - On artifact foo-1.0.jar (org:foo:1.0) in repository 'maven': Artifact was signed with key 'D7BF96A169F77B28C934AB1614F53F0824875D73' (Gradle Test (This is used for testing the gradle-signing-plugin) <******@****.***>) but signature didn't match
    
    This can indicate that a dependency has been compromised. Please carefully verify the signatures and checksums."""
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  7. src/cmd/internal/testdir/testdir_test.go

    	"hash/fnv"
    	"internal/testenv"
    	"io"
    	"io/fs"
    	"log"
    	"os"
    	"os/exec"
    	"path"
    	"path/filepath"
    	"regexp"
    	"runtime"
    	"slices"
    	"sort"
    	"strconv"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    	"unicode"
    )
    
    var (
    	allCodegen     = flag.Bool("all_codegen", defaultAllCodeGen(), "run all goos/goarch for codegen")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. gradle/verification-metadata.xml

                <pgp value="3A82F1B557594A6194BE271D0E621275CDADB760"/>
             </artifact>
          </component>
          <component group="com.google.testing.compile" name="compile-testing" version="0.21.0">
             <artifact name="compile-testing-0.21.0.jar">
                <pgp value="BDB5FA4FE719D787FB3D3197F6D4A1D411E9D1AE"/>
             </artifact>
          </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/CacheBuilder.java

       *
       * <p>If {@code maximumSize} is zero, elements will be evicted immediately after being loaded into
       * cache. This can be useful in testing, or to disable caching temporarily.
       *
       * <p>This feature cannot be used in conjunction with {@link #maximumWeight}.
       *
       * @param maximumSize the maximum size of the cache
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      string xla_cpu_device = "/job:worker/replica:0/task:0/device:XLA_CPU:0";
      testing::FindNodeByName(graph.get(), "A")
          ->set_assigned_device_name(xla_cpu_device);
      testing::FindNodeByName(graph.get(), "tanh0")
          ->set_assigned_device_name(xla_cpu_device);
      testing::FindNodeByName(graph.get(), "tanh1")
          ->set_assigned_device_name(xla_cpu_device);
      testing::FindNodeByName(graph.get(), "tanh2")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
Back to top