Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 256 for fetches (0.22 sec)

  1. pilot/pkg/model/envoyfilter.go

    			} else {
    				// pre-compile the regex for proxy version if it exists
    				// ignore the error because validation catches invalid regular expressions.
    				cpw.ProxyVersionRegex, _ = regexp.Compile(cp.Match.Proxy.ProxyVersion)
    			}
    		}
    
    		if _, exists := out.Patches[cp.ApplyTo]; !exists {
    			out.Patches[cp.ApplyTo] = make([]*EnvoyFilterConfigPatchWrapper, 0)
    		}
    		if cpw.Operation == networking.EnvoyFilter_Patch_INSERT_AFTER ||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. pilot/pkg/trustbundle/trustbundle.go

    		if err != nil {
    			trustBundleLog.Errorf("unable to fetch trust Anchors from endpoint %s: %s", endpoint, err)
    			continue
    		}
    		certs := trustDomainAnchorMap[currentTrustDomain]
    		for _, cert := range certs {
    			certStr := string(pem.EncodeToMemory(&pem.Block{Type: "CERTIFICATE", Bytes: cert.Raw}))
    			trustBundleLog.Debugf("from endpoint %v, fetched trust anchor cert: %v", endpoint, certStr)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. internal/config/cache/cache.go

    	// store and retrieve pre-condition check entities such as
    	// Etag and ModTime of an object + version
    	Endpoint string `json:"endpoint"`
    
    	// BlockSize indicates the maximum object size below which
    	// data is cached and fetched remotely from DRAM.
    	BlockSize int64
    
    	// Is the HTTP client used for communicating with mcache server
    	clnt *http.Client
    }
    
    var configLock sync.RWMutex
    
    // Enabled - indicates if cache is enabled or not
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/swig/swig_test.go

    		}
    		return x
    	}
    	var major, minor, patch int
    	major = atoi(string(matches[1]))
    	if len(matches[2]) > 0 {
    		minor = atoi(string(matches[2][1:]))
    	}
    	if len(matches[3]) > 0 {
    		patch = atoi(string(matches[3][1:]))
    	}
    	if parseError != nil {
    		t.Logf("error parsing swig version %q, continuing anyway: %s", string(matches[0]), parseError)
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:38:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. src/index/suffixarray/suffixarray.go

    	if len(s) > 0 && n != 0 {
    		matches := x.lookupAll(s)
    		count := matches.len()
    		if n < 0 || count < n {
    			n = count
    		}
    		// 0 <= n <= count
    		if n > 0 {
    			result = make([]int, n)
    			if matches.int32 != nil {
    				for i := range result {
    					result[i] = int(matches.int32[i])
    				}
    			} else {
    				for i := range result {
    					result[i] = int(matches.int64[i])
    				}
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/options/security.go

    	credFetcher, err := credentialfetcher.NewCredFetcher(credFetcherTypeEnv, o.TrustDomain, jwtPath, o.CredIdentityProvider)
    	if err != nil {
    		return nil, fmt.Errorf("failed to create credential fetcher: %v", err)
    	}
    	log.Infof("using credential fetcher of %s type in %s trust domain", credFetcherTypeEnv, o.TrustDomain)
    	o.CredFetcher = credFetcher
    
    	if o.CAProviderName == security.GkeWorkloadCertificateProvider {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. tests/integration/pilot/cni_race_test.go

    		Delete(context.Background(), "istio-cni-node", metav1.DeleteOptions{}); err != nil {
    		ctx.Fatalf("failed to delete CNI Daemonset %v", err)
    	}
    
    	// Wait until the CNI Daemonset pod cannot be fetched anymore
    	retry.UntilSuccessOrFail(ctx, func() error {
    		scopes.Framework.Infof("Checking if CNI Daemonset pods are deleted...")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1/types.go

    	// matches only a single label. You cannot have a wildcard label by itself (e.g. Host == "*").
    	// Requests will be matched against the Host field in the following way:
    	// 1. If host is precise, the request matches this rule if the http host header is equal to Host.
    	// 2. If host is a wildcard, then the request matches this rule if the http host header
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

    }
    
    // Creates return nodes per operand of a FetchOp. If names is supplied, those
    // names will be used per node in order instead of generating a unique name.
    Status Exporter::AddFetchNode(FuncOp function, mlir::tf_executor::FetchOp fetch,
                                  llvm::ArrayRef<llvm::StringRef> names) {
      auto& return_nodes = returns_[fetch];
      for (auto operand_and_idx : llvm::enumerate(fetch.getOperands())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  10. src/internal/trace/reader.go

    		r.cpuSamples = r.gen.cpuSamples
    
    		// Reset frontier.
    		for m, batches := range r.gen.batches {
    			bc := &batchCursor{m: m}
    			ok, err := bc.nextEvent(batches, r.gen.freq)
    			if err != nil {
    				return Event{}, err
    			}
    			if !ok {
    				// Turns out there aren't actually any events in these batches.
    				continue
    			}
    			r.frontier = heapInsert(r.frontier, bc)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top