Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for pieces (0.3 sec)

  1. pkg/printers/internalversion/printers.go

    }
    
    func makePortString(ports []api.ServicePort) string {
    	pieces := make([]string, len(ports))
    	for ix := range ports {
    		port := &ports[ix]
    		pieces[ix] = fmt.Sprintf("%d/%s", port.Port, port.Protocol)
    		if port.NodePort > 0 {
    			pieces[ix] = fmt.Sprintf("%d:%d/%s", port.Port, port.NodePort, port.Protocol)
    		}
    	}
    	return strings.Join(pieces, ",")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      const int64_t base_inner_size =
          std::accumulate(base_inner_dims.begin(), base_inner_dims.end(), 1,
                          std::multiplies<int64_t>());
    
      // Splits each input operand into outer_size pieces and combines them in
      // round-robin ordering.
      std::vector<Attribute> out_attrs(output_type.getNumElements());
      int64_t out = 0;
      for (int64_t outer = 0; outer < outer_size; ++outer) {
        for (auto op : operands) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier_test.go

    		t.Errorf("unexpected number of local ready endpoints, expected 0 but got: %d", len(localReadyEndpoints))
    	}
    }
    
    // TODO(thockin): add *more* tests for syncProxyRules() or break it down further and test the pieces.
    
    // This test ensures that the iptables proxier supports translating Endpoints to
    // iptables output when internalTrafficPolicy is specified
    func TestInternalTrafficPolicy(t *testing.T) {
    	type endpoint struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"pineapple":                            "\U0001f34d",
    	"ping_pong":                            "\U0001f3d3",
    	"pirate_flag":                          "\U0001f3f4\u200d\u2620\ufe0f",
    	"pisces":                               "\u2653",
    	"pitcairn_islands":                     "\U0001f1f5\U0001f1f3",
    	"pizza":                                "\U0001f355",
    	"placard":                              "\U0001faa7",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&pre;":                             "\u2aaf",
    	"&prec;":                            "\u227a",
    	"&precapprox;":                      "\u2ab7",
    	"&preccurlyeq;":                     "\u227c",
    	"&preceq;":                          "\u2aaf",
    	"&precnapprox;":                     "\u2ab9",
    	"&precneqq;":                        "\u2ab5",
    	"&precnsim;":                        "\u22e8",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    	Err              error    // the error itself
    	IsImportCycle    bool     // the error is an import cycle
    	Hard             bool     // whether the error is soft or hard; soft errors are ignored in some places
    	alwaysPrintStack bool     // whether to always print the ImportStack
    }
    
    func (p *PackageError) Error() string {
    	// TODO(#43696): decide when to print the stack or the position based on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    		t.Fatalf("initialize ca: %v", err)
    	}
    	c.options.CAContentProvider = caContent
    
    	// Allow claims to refer to the serving URL of the test server.  For this,
    	// substitute all references to {{.URL}} in appropriate places.
    	// Use {{.Expired}} to handle the token expiry date string with correct timezone handling.
    	v := struct {
    		URL     string
    		Expired string
    	}{
    		URL:     ts.URL,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    // standard output, even if the test printed them to its own standard
    // error. (The go command's standard error is reserved for printing
    // errors building the tests.)
    //
    // The go command places $GOROOT/bin at the beginning of $PATH
    // in the test's environment, so that tests that execute
    // 'go' commands use the same 'go' as the parent 'go test' command.
    //
    // Go test runs in two different modes:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        "Replicate TensorList init ops for correct shape assignments in shape inference";
    
      let description = [{
        If we pass same TensorList to a while op as multiple arguments or just use
        the same TensorList at multiple places and assign different
        TensorListSetItem to elements of TensorList, the shape inference is then
        unable to identify the Shape of these args and thus the input TensorList
        shape is unidentifiable.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "apiVersion": {
              "description": "API version of the referent.",
              "type": "string"
            },
            "fieldPath": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top