Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 512 for fetches (0.14 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions.cc

    using ::stablehlo::quantization::QuantizationSpec;
    using ::stablehlo::quantization::QuantizationSpecs;
    using ::tsl::protobuf::TextFormat;
    
    // TODO - b/303543789: Move the helper functions below to a separate util.
    // Fetches the default or null attribute, used for pattern matching.
    Attribute DefaultOrNullAttr(OpBuilder& builder, const Attribute& attr) {
      if (attr) return attr;
      return builder.getStringAttr(kNullAttributeValue);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. tools/bug-report/pkg/kubectlcmd/kubectlcmd.go

    }
    
    func (r *Runner) printRunningTasks() {
    	r.runningTasksMu.RLock()
    	defer r.runningTasksMu.RUnlock()
    	if r.runningTasks.IsEmpty() {
    		return
    	}
    	common.LogAndPrintf("The following fetches are still running: \n")
    	for t := range r.runningTasks {
    		common.LogAndPrintf("  %s\n", t)
    	}
    	common.LogAndPrintf("\n")
    }
    
    func (r *Runner) addRunningTask(task string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ProjectConnection.java

     *
     * @since 1.0-milestone-3
     */
    public interface ProjectConnection extends Closeable {
        /**
         * Fetches a snapshot of the model of the given type for this project. This method blocks until the model is available.
         *
         * <p>This method is simply a convenience for calling {@code model(modelType).get()}</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. internal/config/dns/etcd_dns.go

    	for i, j := 0, len(ks)-1; i < j; i, j = i+1, j-1 {
    		ks[i], ks[j] = ks[j], ks[i]
    	}
    	return strings.Join(ks, ".")
    }
    
    // Retrieves list of entries under the key passed.
    // Note that this method fetches entries upto only two levels deep.
    func (c *CoreDNS) list(key string, domain bool) ([]SrvRecord, error) {
    	ctx, cancel := context.WithTimeout(context.Background(), defaultContextTimeout)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	// Parse should call usage and return nil.
    	Parse(usage func()) []string
    }
    
    // A Fetcher reads and returns the profile named by src, using
    // the specified duration and timeout. It returns the fetched
    // profile and a string indicating a URL from where the profile
    // was fetched, which may be different than src.
    type Fetcher interface {
    	Fetch(src string, duration, timeout time.Duration) (*profile.Profile, string, error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. pkg/kube/krt/fetch.go

    		list = c.List()
    	}
    	list = slices.FilterInPlace(list, func(i T) bool {
    		o := c.augment(i)
    		return d.filter.Matches(o, true)
    	})
    	if log.DebugEnabled() {
    		log.WithLabels(
    			"parent", h.name(),
    			"fetch", c.name(),
    			"filter", d.filter,
    			"size", len(list),
    		).Debugf("Fetch")
    	}
    	return list
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. pkg/wasm/httpfetcher_test.go

    				c.handler(w, r, gotNumRequest)
    				gotNumRequest++
    			}))
    			defer ts.Close()
    			fetcher := NewHTTPFetcher(DefaultHTTPRequestTimeout, DefaultHTTPRequestMaxRetries)
    			fetcher.initialBackoff = time.Microsecond
    			ctx, cancel := context.WithTimeout(context.Background(), c.timeout)
    			defer cancel()
    			b, err := fetcher.Fetch(ctx, ts.URL, false)
    			if c.wantNumRequest != gotNumRequest {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 15:56:41 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. architecture/security/istio-agent.md

    |OUTPUT_CERT|write all fetched certificates to some directory. Used to support applications that need certificates (Prometheus) as well as rotating mTLS control plane authentication.|
    |FILE_MOUNTED_CERTS|completely disable CA path, exclusively use certs mounted into the pod with set certificate file locations|
    |CREDENTIAL_FETCHER_TYPE|allows using custom credential fetcher, for VMs with existing identity|
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 22 16:45:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. docs/sts/client_grants/__init__.py

            """
            Search for credentials with client_grants
            """
            if self.cid is not None:
                fetcher = self._create_credentials_fetcher()
                return RefreshableCredentials.create_from_metadata(
                    metadata=fetcher(),
                    refresh_using=fetcher,
                    method=self.METHOD,
                )
            else:
                return None
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/version.go

    		// Fetch version from the internet.
    		url := fmt.Sprintf("%s/%s.txt", bucketURL, versionLabel)
    		body, err := fetcher(url, getReleaseVersionTimeout)
    		if err != nil {
    			if clientVersionErr == nil {
    				// Handle air-gapped environments by falling back to the client version.
    				klog.Warningf("could not fetch a Kubernetes version from the internet: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:50:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top