Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,043 for Unregistered (0.15 sec)

  1. src/crypto/internal/boring/bcache/cache_test.go

    	x := new(T)
    	*x = T(seq.Add(1))
    	return x
    }
    
    func str[T int | int32](x *T) string {
    	if x == nil {
    		return "nil"
    	}
    	return fmt.Sprint(*x)
    }
    
    func TestCache(t *testing.T) {
    	// Use unregistered cache for functionality tests,
    	// to keep the runtime from clearing behind our backs.
    	c := new(Cache[int, int32])
    
    	// Create many entries.
    	m := make(map[*int]*int32)
    	for i := 0; i < 10000; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 00:30:19 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. pkg/kubelet/kubeletconfig/configfiles/configfiles_test.go

    			desc: "missing version",
    			file: newString(`{"kind":"KubeletConfiguration"}`),
    			err:  "failed to decode",
    		},
    		{
    			desc: "unregistered kind",
    			file: newString(`{"kind":"BogusKind","apiVersion":"kubelet.config.k8s.io/v1beta1"}`),
    			err:  "failed to decode",
    		},
    		{
    			desc: "unregistered version",
    			file: newString(`{"kind":"KubeletConfiguration","apiVersion":"bogusversion"}`),
    			err:  "failed to decode",
    		},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 12:18:41 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. pkg/kubelet/pluginmanager/cache/actual_state_of_world.go

    	// because for the actual state of world cache, there won't be a scenario where
    	// we need to update an existing plugin if the timestamps don't match. This is
    	// because the plugin should have been unregistered in the reconciler and therefore
    	// removed from the actual state of world cache first before adding it back into
    	// the actual state of world cache again with the new timestamp
    	AddPlugin(pluginInfo PluginInfo) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 24 21:20:24 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtraPropertiesExtensionTest.groovy

            expect:
            extension.foo == null
    
            when:
            extension.foo = "bar"
    
            then:
            extension.foo == "bar"
        }
    
        def "cannot read or write unregistered property using groovy syntax"() {
            when:
            extension.foo
    
            then:
            thrown(MissingPropertyException)
    
            when:
            extension.foo = "bar"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. pkg/kubelet/pluginmanager/operationexecutor/operation_executor.go

    // still succeed if the plugin is already registered, etc.). However,
    // they depend on the plugin handlers (for each plugin type) to implement this
    // behavior.
    //
    // Once an operation completes successfully, the actualStateOfWorld is updated
    // to indicate the plugin is registered/unregistered.
    //
    // Once the operation is started, since it is executed asynchronously,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 04 06:56:50 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/lower_globals_to_ml_program.mlir

    // RUN: tf-opt %s --allow-unregistered-dialect --tf-saved-model-lower-globals-to-mlprogram --split-input-file | FileCheck %s
    
    // CHECK-LABEL: module
    module attributes {tf_saved_model.semantics} {
      // CHECK: ml_program.global private mutable [[V:@.+]](dense<1.000000e+00> : tensor<1xf32>) : tensor<?xf32>
      // CHECK: func.func @f
      // CHECK: [[T:%.+]] = ml_program.global_load [[V]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 21:57:26 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/caching/configuration/internal/BuildCacheConfigurationIntegrationTest.groovy

                }
            """
            expect:
            succeeds("help", "--build-cache", "--offline", "--info")
            outputContains("Remote build cache is disabled when running with --offline.")
        }
    
        def "unregistered build cache type is reported even when disabled"() {
            settingsFile << """
                class CustomBuildCache extends AbstractBuildCache {}
    
                buildCache {
                    remote(CustomBuildCache) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 19 20:09:35 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/lower_variable_ops_to_ml_program.mlir

    // RUN: tf-opt --allow-unregistered-dialect --split-input-file --tf-saved-model-lower-variable-ops-to-mlprogram %s | FileCheck %s
    
    // CHECK-LABEL: module
    module attributes {tf_saved_model.semantics} {
      // CHECK: ml_program.global {{.*}} @vars.v
      // CHECK: ml_program.global {{.*}} @vars.bar
      "tf_saved_model.global_tensor"() { is_mutable, sym_name = "v", type = tensor<10xf32>, value = dense<[0.,1.,2.,3.,4.,5.,6.,7.,8.,9.]> : tensor<10xf32> } : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 19 19:00:41 UTC 2022
    - 6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.h

      bool restrict_functionalization_to_compiled_nodes = false;
      // If true, enables shape inference on input.
      // TODO(jpienaar): This will be removed shortly.
      bool enable_shape_inference = true;
      // _output_shapes is an unregistered attribute which is used during
      // GraphConstructor::ConvertGraph to override shapes. It is unfortunately
      // not always set correctly (which is undesirable and should be addressed)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:56:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. src/internal/trace/testtrace/validation.go

    				}
    				state.state = new
    			} else {
    				if old != trace.GoUndetermined && old != trace.GoNotExist {
    					e.Errorf("bad old state for unregistered goroutine %d: %s", id, old)
    				}
    				state = &goState{state: new}
    				v.gs[id] = state
    			}
    			// Validate sched context.
    			if new.Executing() {
    				ctx := v.getOrCreateThread(e, ev, ev.Thread())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top