Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,164 for fetches (0.21 sec)

  1. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    The region attached to `tf_executor.graph` is terminated by a
    `tf_executor.fetch` operation. The non-control operands of the terminator
    correspond to the result values (or fetches) of the `tf_executor.graph`
    operation. The behavior is undefined if any of the operands of the
    `tf_executor.fetch` is dead.
    
    ```mlir {.mlir}
    %fetches = tf_executor.graph : tensor<*xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  2. release/downloadIstioCandidate.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    #
    # This file will be fetched as: curl -L https://git.io/getLatestIstio | sh -
    # so it should be pure bourne shell, not bash (and not reference other scripts)
    #
    # The script fetches the latest Istio release candidate and untars it.
    # You can pass variables on the command line to download a specific version
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 14:13:46 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/route/route.go

    }
    
    // A RIBType represents a type of routing information base.
    type RIBType int
    
    const (
    	RIBTypeRoute     RIBType = syscall.NET_RT_DUMP
    	RIBTypeInterface RIBType = syscall.NET_RT_IFLIST
    )
    
    // FetchRIB fetches a routing information base from the operating
    // system.
    //
    // The provided af must be an address family.
    //
    // The provided arg must be a RIBType-specific argument.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/util/util.go

    	if err != nil {
    		return nil, fmt.Errorf(
    			"error performing CSI migration checks and translation for inline volume %q: %v",
    			podVolume.Name,
    			err)
    	}
    	return spec, nil
    }
    
    // getPVCFromCache fetches the PVC object with the given namespace and
    // name from the shared internal PVC store.
    // This method returns an error if a PVC object does not exist in the cache
    // with the given namespace/name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/core_dependency_management.adoc

    <2> *Here we declare remote and local repositories for dependency locations.*
    +
    You can <<declaring_repositories.adoc#declaring-repositories,declare _repositories_>> to tell Gradle where to fetch local or remote _dependencies_. +
    In this example, Gradle fetches _dependencies_ from the link:https://repo1.maven.org/maven2/[Maven Central] and link:https://maven.google.com/[Google] _repositories_. +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/apiclient/wait.go

    	WaitForPodsWithLabel(kvLabel string) error
    	// WaitForPodToDisappear waits for the given Pod in the kube-system namespace to be deleted
    	WaitForPodToDisappear(staticPodName string) error
    	// WaitForStaticPodSingleHash fetches sha256 hash for the control plane static pod
    	WaitForStaticPodSingleHash(nodeName string, component string) (string, error)
    	// WaitForStaticPodHashChange waits for the given static pod component's static pod hash to get updated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/envelope.go

    		t.transformers.Add(base64.StdEncoding.EncodeToString(encKey), transformer)
    		metrics.RecordDekCacheFillPercent(float64(t.transformers.Len()) / float64(t.cacheSize))
    	}
    	return transformer, nil
    }
    
    // getTransformer fetches the transformer corresponding to encKey from cache, if it exists.
    func (t *envelopeTransformer) getTransformer(encKey []byte) value.Transformer {
    	if !t.cacheEnabled {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 14:23:50 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/git.go

    	refsErr error
    
    	localTagsOnce sync.Once
    	localTags     sync.Map // map[string]bool
    }
    
    const (
    	// How much have we fetched into the git repo (in this process)?
    	fetchNone = iota // nothing yet
    	fetchSome        // shallow fetches of individual hashes
    	fetchAll         // "fetch -t origin": get all remote branches and tags
    )
    
    // loadLocalTags loads tag references from the local git cache
    // into the map r.localTags.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. pkg/kubelet/stats/host_stats_provider.go

    }
    
    type hostStatsProvider struct {
    	// osInterface is the interface for syscalls.
    	osInterface kubecontainer.OSInterface
    	// podEtcHostsPathFunc fetches a pod etc hosts path by uid.
    	podEtcHostsPathFunc PodEtcHostsPathFunc
    	// podLogsDirectory is the root directory path for pod logs.
    	podLogsDirectory string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/timing_ratio_histogram.go

    	// At this point we know v.NewForLabelValuesChecked(..) returns a permanent noop,
    	// which we precisely want to avoid using.  Instead, make our own gauge that
    	// fetches the element on every Set.
    	return &timingRatioHistogramInner{
    		getGaugeOfRatio: func() Gauge { return v.delegate.WithLabelValues(labelValues...) },
    		numerator:       initialNumerator,
    		denominator:     initialDenominator,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top