Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 241 for probing (0.1 sec)

  1. src/cmd/go/testdata/script/work_regression_hang.txt

    # This test makes checks against a regression of a bug in the Go command
    # where the module loader hung forever because all main module dependencies
    # kept workspace pruning instead of adopting the pruning in their go.mod
    # files, and the loader kept adding dependencies on the queue until they
    # were either pruned or unpruned, never breaking a module dependency cycle.
    #
    # This is the module graph in the test:
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 08 17:48:45 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  2. releasenotes/notes/36278.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 211 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler.go

    		if !requestInfo.IsResourceRequest {
    			klog.V(3).Infof("Not a resource request skipping proxying")
    			handler.ServeHTTP(w, r)
    			return
    		}
    
    		// Request has already been proxied once, it must be served locally
    		if r.Header.Get(PeerProxiedHeader) == "true" {
    			klog.V(3).Infof("Already rerouted once, skipping proxying to peer")
    			handler.ServeHTTP(w, r)
    			return
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/config.yml

    blank_issues_enabled: false
    contact_links:
      - name: MinIO Community Support
        url: https://slack.min.io
        about: Join here for Community Support
      - name: MinIO SUBNET Support
        url: https://min.io/pricing
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jul 08 15:44:43 UTC 2020
    - 257 bytes
    - Viewed (0)
  5. releasenotes/notes/dns-localhost-loop.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    issue:
    - 30309
    releaseNotes:
    - |
      **Fixed** an issue causing [DNS proxying](/docs/ops/configuration/traffic-management/dns-proxy/) to not work
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 05 20:28:01 UTC 2021
    - 246 bytes
    - Viewed (0)
  6. architecture/ambient/ztunnel.md

        end
        Client--Plain-->CZ
        CZ-."HBONE (target)".->Server
        CZ--"HBONE (actual)"-->SZ
        SZ--Plain-->Server
    ```
    
    ### Pooling
    
    User connections can be multiplexed over shared HBONE connections.
    This is done through standard HTTP/2 pooling.
    The pooling is keyed off the `{source identity, destination identity, destination ip}`.
    
    ### Headers
    
    Ztunnel uses the following well-known headers in HBONE:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/remove_unused_while_results.cc

    struct RemoveUnusedWhileResultsPass
        : public impl::RemoveUnusedWhileResultsPassBase<
              RemoveUnusedWhileResultsPass> {
      void runOnOperation() override;
    };
    
    // Prunes result defining op if possible, returns true if pruning was done.
    bool TryPruneResultDefiningOp(TF::WhileRegionOp while_op, OpResult result) {
      // Don't prune if result is used.
      if (!result.use_empty()) return false;
    
      Block& body_block = while_op.getBody().front();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 16 01:49:07 UTC 2022
    - 5K bytes
    - Viewed (0)
  8. pkg/scheduler/apis/config/v1/default_plugins.go

    	defaultPlugins.Permit = mergePluginSet(logger, defaultPlugins.Permit, customPlugins.Permit)
    	defaultPlugins.PreBind = mergePluginSet(logger, defaultPlugins.PreBind, customPlugins.PreBind)
    	defaultPlugins.Bind = mergePluginSet(logger, defaultPlugins.Bind, customPlugins.Bind)
    	defaultPlugins.PostBind = mergePluginSet(logger, defaultPlugins.PostBind, customPlugins.PostBind)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. test/fixedbugs/bug457.go

    // run
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 4197: growing a slice of zero-width elements
    // panics on a division by zero.
    
    package main
    
    func main() {
    	var x []struct{}
    	x = append(x, struct{}{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 331 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    	// decoding step from pruning fields which are not specified
    	// in the validation schema. This affects fields recursively,
    	// but switches back to normal pruning behaviour if nested
    	// properties or additionalProperties are specified in the schema.
    	// False means that the pruning behaviour is inherited from the parent.
    	// False does not mean to activate pruning.
    	XPreserveUnknownFields bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top