Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 53 for registered_ (0.19 sec)

  1. pkg/kubelet/server/server_test.go

    	// Ideally, these would move to registered web services and this list would get shorter
    	expectedPaths := []string{"/healthz", "/metrics", "/metrics/cadvisor"}
    	for _, expectedPath := range expectedPaths {
    		if _, expected := expectedCases["GET:"+expectedPath]; !expected {
    			t.Errorf("Expected registered handle path %s was missing", expectedPath)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

     * be registered as a listener of that type. Alternatively, service implementations can be annotated with {@link org.gradle.internal.service.scopes.ListenerService} to indicate that the should be
     * registered as a listener.</p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

         * When a node exits the graph, its constraints need to be cleaned up.
         * This means:
         * * Rescheduling any deferred selection impacted by a constraint coming from this node
         * * Making sure we no longer are registered as pending interest on nodes pointed by constraints
         */
        private void cleanupConstraints() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  4. src/testing/testing.go

    //	    }
    //	  })
    //	}
    //
    // A fuzz test maintains a seed corpus, or a set of inputs which are run by
    // default, and can seed input generation. Seed inputs may be registered by
    // calling (*F).Add or by storing files in the directory testdata/fuzz/<Name>
    // (where <Name> is the name of the fuzz test) within the package containing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    //sys	SetupDiCallClassInstaller(installFunction DI_FUNCTION, deviceInfoSet DevInfo, deviceInfoData *DevInfoData) (err error) = setupapi.SetupDiCallClassInstaller
    
    // CallClassInstaller member calls the appropriate class installer, and any registered co-installers, with the specified installation request (DIF code).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ///
      /// A filesystem is registered for a specific scheme and all of the methods
      /// should work with URIs. Hence, each filesystem needs to be able to
      /// translate from an URI to a path on the filesystem. For example, this
      /// function could translate `fs:///path/to/a/file` into `/path/to/a/file`, if
      /// implemented by a filesystem registered to handle the `fs://` scheme.
      ///
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.3.md

    ## Highlights
    
    * Authorization:
      * **Alpha** RBAC authorization API group
    * Federation
      * federation api group is now **beta**
      * Services from all federated clusters are now registered in Cloud DNS (AWS and GCP).
    * Stateful Apps:
      * **alpha** PetSets manage stateful apps
      * **alpha** Init containers provide one-time setup for stateful containers
    * Updating:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    	return u.frame.pc
    }
    
    // cgoCallers populates pcBuf with the cgo callers of the current frame using
    // the registered cgo unwinder. It returns the number of PCs written to pcBuf.
    // If the current frame is not a cgo frame or if there's no registered cgo
    // unwinder, it returns 0.
    func (u *unwinder) cgoCallers(pcBuf []uintptr) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	RouteMetaAction           = "x-kubernetes-action"
    )
    
    type APIInstaller struct {
    	group             *APIGroupVersion
    	prefix            string // Path prefix where API resources are to be registered.
    	minRequestTimeout time.Duration
    }
    
    // Struct capturing information about an action ("GET", "POST", "WATCH", "PROXY", etc).
    type action struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. src/net/http/transport.go

    // protocol were not registered.
    func (t *Transport) RegisterProtocol(scheme string, rt RoundTripper) {
    	t.altMu.Lock()
    	defer t.altMu.Unlock()
    	oldMap, _ := t.altProto.Load().(map[string]RoundTripper)
    	if _, exists := oldMap[scheme]; exists {
    		panic("protocol " + scheme + " already registered")
    	}
    	newMap := make(map[string]RoundTripper)
    	for k, v := range oldMap {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top