Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for tienes (0.32 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. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    tiaa
    
    // tickets : 2015-02-05 XYZ.COM LLC
    tickets
    
    // tienda : 2013-11-14 Binky Moon, LLC
    tienda
    
    // tiffany : 2015-01-30 Tiffany and Company
    tiffany
    
    // tips : 2013-09-20 Binky Moon, LLC
    tips
    
    // tires : 2014-11-07 Binky Moon, LLC
    tires
    
    // tirol : 2014-04-24 punkt Tirol GmbH
    tirol
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top