Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 260 for zeroing (0.95 sec)

  1. pilot/pkg/model/destination_rule.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    // This function merges one or more destination rules for a given host string
    // into a single destination rule. Note that it does not perform inheritance style merging.
    // IOW, given three dest rules (*.foo.com, *.foo.com, *.com) without selectors, calling this function for
    // each config will result in a final dest rule set (*.foo.com, and *.com).
    //
    // The following is the merge logic:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. releasenotes/notes/multi-service-merge.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue: []
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 08 19:04:03 UTC 2022
    - 220 bytes
    - Viewed (0)
  3. releasenotes/notes/33841.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 33841
    releaseNotes:
      - |
        **Fixed** a bug where specifying same port number with different protocols (TCP and UDP)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:06:37 UTC 2021
    - 254 bytes
    - Viewed (0)
  4. releasenotes/notes/42248.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 42249
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 05 23:34:05 UTC 2022
    - 219 bytes
    - Viewed (0)
  5. operator/pkg/util/merge_iop_test.go

    		},
    	}
    
    	for _, tc := range cases {
    		t.Run(tc.path, func(t *testing.T) {
    			b, err := os.ReadFile(tc.path)
    			if err != nil {
    				t.Fatal(err)
    			}
    			// overlaying tree over itself exercises all paths for merging
    			if _, err := OverlayIOP(string(b), string(b)); err != nil {
    				t.Fatal(err)
    			}
    		})
    	}
    }
    
    // TestOverlayIOPExhaustiveness exhaustiveness check of `OverlayIOP`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 15 20:10:17 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  6. releasenotes/notes/36959.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    
    # issue is a list of GitHub issues resolved in this note.
    issue:
      - 31187
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 07 19:11:07 UTC 2022
    - 239 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/common_v1.py

        sess.run(tf.initializers.global_variables())
        builder = tf.saved_model.builder.SavedModelBuilder(save_model_path)
        builder.add_meta_graph_and_variables(
            sess,
            [tf.saved_model.tag_constants.SERVING],
            signature_def_map,
            main_op=init_op,
            assets_collection=assets_collection,
            strip_default_attrs=True,
        )
        builder.save()
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 20 13:19:26 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/main/main.go

    package main
    
    import (
    	"fmt"
    
    	webhooktesting "k8s.io/apiserver/pkg/admission/plugin/webhook/testing"
    )
    
    func main() {
    	server := webhooktesting.NewTestServer(nil)
    	server.StartTLS()
    	fmt.Println("serving on", server.URL)
    	select {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Aug 25 00:00:45 UTC 2019
    - 807 bytes
    - Viewed (0)
  9. src/cmd/go/internal/vcweb/svn.go

    	svnservePath string // the path to the 'svnserve' executable
    	svnserveErr  error
    
    	listenOnce sync.Once
    	s          chan *svnState // 1-buffered
    }
    
    // An svnState describes the state of a port serving the 'svn://' protocol.
    type svnState struct {
    	listener  net.Listener
    	listenErr error
    	conns     map[net.Conn]struct{}
    	closing   bool
    	done      chan struct{}
    }
    
    func (h *svnHandler) Available() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:44:48 UTC 2022
    - 5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/discovery.k8s.io.v1.EndpointSlice.json

          }
        ]
      },
      "addressType": "addressTypeValue",
      "endpoints": [
        {
          "addresses": [
            "addressesValue"
          ],
          "conditions": {
            "ready": true,
            "serving": true,
            "terminating": true
          },
          "hostname": "hostnameValue",
          "targetRef": {
            "kind": "kindValue",
            "namespace": "namespaceValue",
            "name": "nameValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top