Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,057 for fetching (0.26 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/exported_model.proto

      string init_node_name = 2;
    
      // Path to the directory where checkpoint files are saved. This directoy is
      // not expected to be persistent (usually a temporary directory). When
      // fetching the restore op (see `restore_node_name`), this value is provided
      // to the "file_prefix" tensor to identify the checkpoint directory.
      string checkpoint_dir = 5;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 06:12:59 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. pkg/kube/krt/fetch.go

    // limitations under the License.
    
    package krt
    
    import (
    	"istio.io/istio/pkg/slices"
    )
    
    func FetchOne[T any](ctx HandlerContext, c Collection[T], opts ...FetchOption) *T {
    	res := Fetch[T](ctx, c, opts...)
    	switch len(res) {
    	case 0:
    		return nil
    	case 1:
    		return &res[0]
    	default:
    		panic("FetchOne found for more than 1 item")
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/versiongetter.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	kubeadmutil "k8s.io/kubernetes/cmd/kubeadm/app/util"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/image"
    )
    
    // VersionGetter defines an interface for fetching different versions.
    // Easy to implement a fake variant of this interface for unit testing
    type VersionGetter interface {
    	// ClusterVersion should return the version of the cluster i.e. the API Server version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. internal/config/identity/openid/provider/provider.go

    	ErrAccessTokenExpired = errors.New("access_token expired or unauthorized")
    )
    
    // Provider implements identity provider specific admin operations, such as
    // looking up users, fetching additional attributes etc.
    type Provider interface {
    	LoginWithUser(username, password string) error
    	LoginWithClientID(clientID, clientSecret string) error
    	LookupUser(userid string) (User, error)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/stats.go

    	activeFetchCount.WithContext(ctx).WithLabelValues(fetchBlockedTag).Inc()
    	return activeFetchCount.WithContext(ctx).WithLabelValues(fetchBlockedTag).Dec
    }
    
    func (statsCollector) fetching(ctx context.Context) func(ok bool) {
    	activeFetchCount.WithContext(ctx).WithLabelValues(fetchInFlightTag).Inc()
    	return func(ok bool) {
    		var tag string
    		if ok {
    			tag = fetchOkTag
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 01 18:49:09 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  6. security/pkg/credentialfetcher/plugin/mock.go

    		return nil, err
    	}
    	return ms, nil
    }
    
    func (ms *MetadataServer) setToken(t string) {
    	ms.mutex.Lock()
    	defer ms.mutex.Unlock()
    	ms.credential = t
    }
    
    // NumGetTokenCall returns the number of token fetching request.
    func (ms *MetadataServer) NumGetTokenCall() int {
    	ms.mutex.RLock()
    	defer ms.mutex.RUnlock()
    
    	return ms.numGetTokenCall
    }
    
    // Reset resets members to default values.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapFile.java

         * crawlers to retrieve only a subset of the Sitemaps in the index i.e. a
         * crawler may only retrieve Sitemaps that were modified since a certain
         * date. This incremental Sitemap fetching mechanism allows for the rapid
         * discovery of new URLs on very large sites.
         */
        private String lastmod;
    
        /*
         * (non-Javadoc)
         *
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.h

      /// the block from the filesystem, transitioning the state of the block to
      /// FETCHING. After completing, if the read was successful the state should
      /// be FINISHED. Otherwise the state should be ERROR. A subsequent read can
      /// re-fetch the block if the state is ERROR.
      enum class FetchState {
        CREATED,
        FETCHING,
        FINISHED,
        ERROR,
      };
    
      /// \brief A block of a file.
      ///
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 31 04:46:34 UTC 2020
    - 10.6K bytes
    - Viewed (0)
  9. pilot/pkg/security/model/authentication.go

    	SDSClusterName = pm.SDSClusterName
    
    	// SDSDefaultResourceName is the default name in sdsconfig, used for fetching normal key/cert.
    	SDSDefaultResourceName = pm.SDSDefaultResourceName
    
    	// SDSRootResourceName is the sdsconfig name for root CA, used for fetching root cert.
    	SDSRootResourceName = pm.SDSRootResourceName
    
    	// ThirdPartyJwtPath is the token volume mount file name for k8s trustworthy jwt token.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/transfer/CacheAwareExternalResourceAccessor.java

         * @return a locally available resource, if found
         * @throws IOException whenever an error occurs when downloading of fetching from the cache
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top