Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 238 for west (0.09 sec)

  1. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    		index := 0
    		for event := range fakeRecorder.Events {
    			if len(test.expectedEvents) < index {
    				t.Errorf("Test %q: unexpected event received: %s", test.name, event)
    			} else {
    				expectedEvent := test.expectedEvents[index]
    				if expectedEvent != event {
    					t.Errorf("Test %q: event %d: expected %q, got %q", test.name, index, expectedEvent, event)
    				}
    			}
    			index++
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    		// version on a line by itself but then can contain other
    		// metadata about the release, one item per line.
    		if i := strings.Index(b, "\n"); i >= 0 {
    			rest := b[i+1:]
    			b = chomp(b[:i])
    			for _, line := range strings.Split(rest, "\n") {
    				f := strings.Fields(line)
    				if len(f) == 0 {
    					continue
    				}
    				switch f[0] {
    				default:
    					fatalf("VERSION: unexpected line: %s", line)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      public void testAssignableParameterizedTypeToClass() {
        @SuppressWarnings("rawtypes") // Trying to test raw class
        TypeToken<List> tokL = new TypeToken<List>() {};
        assertTrue(tokL.isSupertypeOf(StringList.class));
        assertTrue(tokL.isSupertypeOf(StringList.class.getGenericInterfaces()[0]));
    
        @SuppressWarnings("rawtypes") // Trying to test raw class
        TypeToken<Second> tokS = new TypeToken<Second>() {};
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

    from tensorflow.python.ops import nn_ops
    from tensorflow.python.platform import test
    from tensorflow.python.saved_model import load
    from tensorflow.python.saved_model import save
    from tensorflow.python.saved_model import tag_constants
    from tensorflow.python.types import core
    
    _CalibrationMethod = qc.CalibrationOptions.CalibrationMethod
    
    
    # Test cases for Static Range Quantization.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/ptr"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/spiffe"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    func createConfigs(configs []*config.Config, store model.ConfigStore, t testing.TB) {
    	t.Helper()
    	for _, cfg := range configs {
    		_, err := store.Create(*cfg)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

    import org.gradle.integtests.fixtures.cache.CachingIntegrationFixture
    import org.gradle.integtests.resolve.AbstractModuleDependencyResolveTest
    import org.gradle.test.fixtures.HttpModule
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.fixtures.server.http.IvyHttpModule
    import org.gradle.test.fixtures.server.http.MavenHttpModule
    
    
    @RequiredFeature(feature = GradleMetadataResolveRunner.REPOSITORY_TYPE, value = "ivy")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  7. common/scripts/metallb-native.yaml

                type: string
              kind:
                description: 'Kind is a string value representing the REST resource this
                  object represents. Servers may infer this from the endpoint the client
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/CacheBuilder.java

       * building caches whose key or value types are incompatible with the types accepted by the
       * weigher already provided; the {@code CacheBuilder} type cannot do this. For best results,
       * simply use the standard method-chaining idiom, as illustrated in the documentation at top,
       * configuring a {@code CacheBuilder} and building your {@link Cache} all in a single statement.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. pkg/controller/disruption/disruption_test.go

    			}
    		})
    	}
    }
    
    // This test checks that the disruption controller does not write stale data to
    // a PDB status during race conditions with the eviction handler. Specifically,
    // failed updates due to ResourceVersion conflict should not cause a stale value
    // of DisruptionsAllowed to be written.
    //
    // In this test, DisruptionsAllowed starts at 2.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

                final NoArgClosureExpression configBlock = new NoArgClosureExpression(shouldRunAfterCall);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
Back to top