Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for registered_ (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    		},
    		{
    			desc:    "Unexpected config type",
    			config:  "testdata/invalid-configs/kms/invalid-config-type.yaml",
    			want:    nil,
    			wantErr: `no kind "EncryptionConfigurations" is registered for version "apiserver.config.k8s.io/v1"`,
    		},
    		{
    			desc:   "Install Healthz",
    			config: "testdata/valid-configs/kms/default-timeout.yaml",
    			want: []healthChecker{
    				&kmsPluginProbe{
    					name: "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  2. src/net/url/url_test.go

    	{'+', encodeUserPassword, false},
    	{',', encodeUserPassword, false},
    	{';', encodeUserPassword, false},
    	{'=', encodeUserPassword, false},
    
    	// Host (IP address, IPv6 address, registered name, port suffix; ยง3.2.2)
    	{'!', encodeHost, false},
    	{'$', encodeHost, false},
    	{'&', encodeHost, false},
    	{'\'', encodeHost, false},
    	{'(', encodeHost, false},
    	{')', encodeHost, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// Now we retain restart count of container as a container label. Each time a container
    	// restarts, pod will read the restart count from the registered dead container, increment
    	// it to get the new restart count, and then add a label with the new restart count on
    	// the newly started container.
    	// However, there are some limitations of this method:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

        hallowlist.insert(pair.second.begin(), pair.second.end());
        for (auto op : pair.second) {
          ASSERT_TRUE(all_ops.contains(op));
        }
      }
    
      // Check that all registered XLA operation are in the allowlist
      // table or are known to not be in it.
    
      absl::flat_hash_set<string> known_not_in_list =
          tensorflow::testing::GetKnownXLAAllowlistOp();
      std::vector<string> unknow_op;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    )
    
    // Test is the main entrypoint that runs tests in the GOROOT/test directory.
    //
    // Each .go file test case in GOROOT/test is registered as a subtest with a
    // a full name like "Test/fixedbugs/bug000.go" ('/'-separated relative path).
    func Test(t *testing.T) {
    	if *target != "" {
    		// When -target is set, propagate it to GOOS/GOARCH in our environment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

            }
          }
        }
      }
    
      return MergeClusters(from, to);
    }
    
    Status MarkForCompilationPassImpl::Run() {
      // Make sure that kernels have been registered on the JIT device.
      XlaOpRegistry::RegisterCompilationKernels();
    
      // Start the timer after XlaOpRegistry::RegisterCompilationKernels which does
      // some one-time work.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. src/runtime/malloc.go

    // There is no corresponding free function.
    //
    // hintList is a list of hint addresses for where to allocate new
    // heap arenas. It must be non-nil.
    //
    // register indicates whether the heap arena should be registered
    // in allArenas.
    //
    // sysAlloc returns a memory region in the Reserved state. This region must
    // be transitioned to Prepared and then Ready before use.
    //
    // h must be locked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	}
    	return events
    }
    
    // PreEnqueue checks if there are known reasons why a pod currently cannot be
    // scheduled. When this fails, one of the registered events can trigger another
    // attempt.
    func (pl *dynamicResources) PreEnqueue(ctx context.Context, pod *v1.Pod) (status *framework.Status) {
    	if err := pl.foreachPodResourceClaim(pod, nil); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. pkg/controller/endpoint/endpoints_controller_test.go

    	waitForChanReceive(t, 1*time.Second, blockNextAction, "Service Delete should have caused a request to be sent to the test server")
    
    	// If endpoints cache has not updated before service update is registered
    	// Services add will not trigger a Create endpoint request.
    	controller.serviceStore.Add(svc)
    	controller.onServiceUpdate(svc)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context.go

    	// new version.
    	LastPushStatus *PushContext
    	// LastPushMutex will protect the LastPushStatus
    	LastPushMutex sync.Mutex
    
    	// All metrics we registered.
    	metrics = []monitoring.Metric{
    		DNSNoEndpointClusters,
    		EndpointNoPod,
    		ProxyStatusNoService,
    		ProxyStatusEndpointNotReady,
    		ProxyStatusConflictOutboundListenerTCPOverTCP,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top