Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 512 for fetches (0.27 sec)

  1. cni/pkg/plugin/kubernetes.go

    				pi.ProxyType = c.Args[1]
    			}
    			if c.SecurityContext != nil {
    				pi.ProxyUID = c.SecurityContext.RunAsUser
    				pi.ProxyGID = c.SecurityContext.RunAsGroup
    			}
    		}
    	}
    	return pi
    }
    
    // containers fetches all containers in the pod.
    // This is used to extract init containers (istio-init and istio-validation), and the sidecar.
    // The sidecar can be a normal container or init in Kubernetes 1.28+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/caclient/credentials.go

    // this is safe themselves.
    func (t *DefaultTokenProvider) RequireTransportSecurity() bool {
    	return false
    }
    
    // GetToken fetches a token to attach to a request. Returning "", nil will cause no header to be
    // added; while a non-nil error will block the request If the token selected is not found, no error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. pkg/volume/metrics_block.go

    	if mb.device == "" {
    		return metrics, NewNoPathDefinedError()
    	}
    
    	err := mb.getBlockInfo(metrics)
    	if err != nil {
    		return metrics, err
    	}
    
    	return metrics, nil
    }
    
    // getBlockInfo fetches metrics.Capacity by opening the device and seeking to
    // the end.
    func (mb *metricsBlock) getBlockInfo(metrics *Metrics) error {
    	dev, err := os.Open(mb.device)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 14:33:37 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/jit_compilation_pass_registration.cc

    // The EncapsulateSubgraphs pass must run after the MarkForCompilationPass. We
    // also need to run it after the graph been rewritten to have _Send nodes added
    // for fetches. Before the _Send nodes are added, fetch nodes are identified by
    // name, and encapsulation might remove that node from the graph.
    REGISTER_OPTIMIZATION(OptimizationPassRegistry::POST_REWRITE_FOR_EXEC, 50,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 11 21:53:08 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/flags.cc

           "it is expected to be in the proto binary format."},
          {"dump_fetch_nodes", &flags->dump_fetch_nodes,
           "If set, only flags related to fetches are processed, and the resulting "
           "fetch nodes will be dumped to stdout in a comma-separated list.  "
           "Typically used to format arguments for other tools, e.g. "
           "freeze_graph."},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 05 16:55:24 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  6. samples/crawler/src/main/java/okhttp3/sample/Crawler.java

          String originalName = currentThread.getName();
          currentThread.setName("Crawler " + url);
          try {
            fetch(url);
          } catch (IOException e) {
            System.out.printf("XXX: %s %s%n", url, e);
          } finally {
            currentThread.setName(originalName);
          }
        }
      }
    
      public void fetch(HttpUrl url) throws IOException {
        // Skip hosts that we've visited many times.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Aug 12 07:26:27 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  7. misc/linkcheck/linkcheck.go

    	"strings"
    	"sync"
    )
    
    var (
    	root    = flag.String("root", "http://localhost:6060", "Root to crawl")
    	verbose = flag.Bool("verbose", false, "verbose")
    )
    
    var wg sync.WaitGroup        // outstanding fetches
    var urlq = make(chan string) // URLs to crawl
    
    // urlFrag is a URL and its optional #fragment (without the #)
    type urlFrag struct {
    	url, frag string
    }
    
    var (
    	mu          sync.Mutex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  8. security/pkg/credentialfetcher/plugin/gce.go

    		exp.String(), gracePeriod.String(), rotate)
    	return rotate
    }
    
    // GetPlatformCredential fetches the GCE VM identity jwt token from its metadata server,
    // and write it to jwtPath. The local copy of the token in jwtPath is used by both
    // Envoy STS client and istio agent to fetch certificate and access token.
    // Note: this function only works in a GCE VM environment.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. pkg/wasm/httpfetcher.go

    	gzMagicNumber = []byte{0x1f, 0x8b}
    )
    
    // HTTPFetcher fetches remote wasm module with HTTP get.
    type HTTPFetcher struct {
    	client          *http.Client
    	insecureClient  *http.Client
    	initialBackoff  time.Duration
    	requestMaxRetry int
    }
    
    // NewHTTPFetcher create a new HTTP remote wasm module fetcher.
    // requestTimeout is a timeout for each HTTP/HTTPS request.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/tac_module.h

    // 1) users should create object form this class, with desired options
    //    (TacModule::Options).
    // 2) Use SetImporter/SetExporter to the desired importer
    //    and exporter.
    // 3) Call Run()
    //
    // The module fetches all TargetHardware backends registered in the binary
    // and only create TargetHardware requested in Options.
    //
    // This class is not thread safe.
    class TacModule {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top