Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for addPass (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          mlir::tf_executor::CreateTFExecutorGraphPruningPass());
      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::CreateExecutorDialectToFunctionalConversionPass());
      if (!include_variables_in_initializers) {
        pm.addPass(
            mlir::tf_saved_model::CreateRemoveVariablesInSessionInitializerPass());
      }
      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::TF::
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_node_status_test.go

    			Before: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "127.0.0.1"},
    				{Type: v1.NodeInternalIP, Address: "127.0.0.2"},
    				{Type: v1.NodeInternalIP, Address: "127.0.0.3"},
    				{Type: v1.NodeHostName, Address: testKubeletHostname},
    			},
    			After: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "127.0.0.1"},
    				{Type: v1.NodeInternalIP, Address: "127.0.0.2"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier_test.go

    						Port:     80,
    						Protocol: "TCP",
    					}: {
    						Address:   netutils.ParseIPSloppy("10.20.30.41"),
    						Protocol:  "TCP",
    						Port:      uint16(80),
    						Scheduler: "rr",
    					},
    					{
    						IP:       "100.101.102.103",
    						Port:     3001,
    						Protocol: "TCP",
    					}: {
    						Address:   netutils.ParseIPSloppy("100.101.102.103"),
    						Protocol:  "TCP",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  4. istioctl/pkg/authz/testdata/configdump.yaml

       "version_info": "2023-06-20T09:08:58Z/4",
       "static_listeners": [
        {
         "listener": {
          "@type": "type.googleapis.com/envoy.config.listener.v3.Listener",
          "address": {
           "socket_address": {
            "address": "0.0.0.0",
            "port_value": 15090
           }
          },
          "filter_chains": [
           {
            "filters": [
             {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
  5. tests/integration/pilot/common/routing.go

    				aInCluster = match.Cluster(client.Config().Cluster.Config()).GetMatches(t.Apps.A)
    			}
    			address := aInCluster[0].Config().ClusterLocalFQDN() + "?"
    			if tt.protocol != "" {
    				address += "&protocol=" + tt.protocol
    			}
    			if tt.server != "" {
    				address += "&server=" + tt.server
    			}
    			expected := aInCluster[0].Address()
    			t.RunTraffic(TrafficTestCase{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_builder_test.go

    						{
    							HostIdentifier: &endpoint.LbEndpoint_Endpoint{
    								Endpoint: &endpoint.Endpoint{
    									Address: &core.Address{
    										Address: &core.Address_SocketAddress{
    											SocketAddress: &core.SocketAddress{
    												Address: "192.168.1.1",
    												PortSpecifier: &core.SocketAddress_PortValue{
    													PortValue: 10001,
    												},
    											},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  7. src/debug/elf/elf.go

    	DT_PLTGOT       DynTag = 3  /* Processor-dependent address. */
    	DT_HASH         DynTag = 4  /* Address of symbol hash table. */
    	DT_STRTAB       DynTag = 5  /* Address of string table. */
    	DT_SYMTAB       DynTag = 6  /* Address of symbol table. */
    	DT_RELA         DynTag = 7  /* Address of ElfNN_Rela relocations. */
    	DT_RELASZ       DynTag = 8  /* Total size of ElfNN_Rela relocations. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  8. pkg/config/validation/validation_test.go

    		valid   bool
    		warning bool
    	}{
    		{
    			name:  "valid",
    			in:    &networking.WorkloadEntry{Address: "1.2.3.4"},
    			valid: true,
    		},
    		{
    			name:  "missing address",
    			in:    &networking.WorkloadEntry{},
    			valid: false,
    		},
    		{
    			name:    "missing address with network",
    			in:      &networking.WorkloadEntry{Network: "network-2"},
    			valid:   true,
    			warning: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    	if ldr.SymValue(etext) == 0 {
    		// Set the address of the start/end symbols, if not already
    		// (i.e. not darwin+dynlink or AIX+external, see above).
    		ldr.SetSymValue(etext, int64(va))
    		ldr.SetSymValue(text, int64(Segtext.Sections[0].Vaddr))
    	}
    }
    
    // assigns address for a text symbol, returns (possibly new) section, its number, and the address.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    					continue
    				}
    				if !netutil.IsValidIPAddress(endpoint.Address) {
    					if err := agent.ValidateFQDN(endpoint.Address); err != nil { // Otherwise could be an FQDN
    						errs = AppendValidation(errs,
    							fmt.Errorf("endpoint address %q is not a valid FQDN or an IP address", endpoint.Address))
    					}
    				}
    				errs = AppendValidation(errs,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top