Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for destination_prefix (0.22 sec)

  1. tensorflow/cc/saved_model/testdata/half_plus_two_pbtxt/00000123/saved_model.pbtxt

            }
          }
          op {
            name: "MergeV2Checkpoints"
            input_arg {
              name: "checkpoint_prefixes"
              type: DT_STRING
            }
            input_arg {
              name: "destination_prefix"
              type: DT_STRING
            }
            attr {
              name: "delete_old_dirs"
              type: "bool"
              default_value {
                b: true
              }
            }
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 01:10:27 UTC 2017
    - 46.9K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier_test.go

    	var policies []hcn.NetworkPolicy
    	for _, remoteSubnet := range networkInfo.remoteSubnets {
    		policySettings := hcn.RemoteSubnetRoutePolicySetting{
    			DestinationPrefix:           remoteSubnet.destinationPrefix,
    			IsolationId:                 remoteSubnet.isolationID,
    			ProviderAddress:             remoteSubnet.providerAddress,
    			DistributedRouterMacAddress: remoteSubnet.drMacAddress,
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. ci/devinfra/docker_windows/Dockerfile

        $gateway = (Get-NetRoute | Where { $_.DestinationPrefix -eq \"0.0.0.0/0\" } | Sort-Object RouteMetric \
            | Select NextHop).NextHop; \
        $ifIndex = (Get-NetAdapter -InterfaceDescription \"Hyper-V Virtual Ethernet*\" | Sort-Object \
            | Select ifIndex).ifIndex; \
        New-NetRoute -DestinationPrefix 169.254.169.254/32 -InterfaceIndex $ifIndex -NextHop $gateway
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/hns.go

    			err = json.Unmarshal(policy.Settings, &policySettings)
    			if err != nil {
    				return nil, fmt.Errorf("failed to unmarshal Remote Subnet policy settings")
    			}
    			rs := &remoteSubnetInfo{
    				destinationPrefix: policySettings.DestinationPrefix,
    				isolationID:       policySettings.IsolationId,
    				providerAddress:   policySettings.ProviderAddress,
    				drMacAddress:      policySettings.DistributedRouterMacAddress,
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 21:21:12 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

          "Value":  {
            "Type":  "SDNRoute",
            "Settings": {
              "DestinationPrefix":  "SERVICE_CIDR",
              "NeedEncap":  true
            }
          }
        },
        {
          "Name":  "EndpointPolicy",
          "Value":  {
            "Type":  "SDNRoute",
            "Settings": {
              "DestinationPrefix":  "MGMT_IP/32",
              "NeedEncap":  true
            }
          }
        }
      ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. pkg/proxy/winkernel/hns_test.go

    			{
    				Type: "Static",
    				Subnets: []hcn.Subnet{
    					{
    						IpAddressPrefix: addressPrefix,
    						Routes: []hcn.Route{
    							{
    								NextHop:           gatewayAddress,
    								DestinationPrefix: "0.0.0.0/0",
    							},
    						},
    					},
    				},
    			},
    		},
    		SchemaVersion: hcn.SchemaVersion{
    			Major: 2,
    			Minor: 0,
    		},
    	}
    
    	vsid := &hcn.VsidPolicySetting{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. pkg/proxy/winkernel/proxier.go

    }
    
    type hnsNetworkInfo struct {
    	name          string
    	id            string
    	networkType   string
    	remoteSubnets []*remoteSubnetInfo
    }
    
    type remoteSubnetInfo struct {
    	destinationPrefix string
    	isolationID       uint16
    	providerAddress   string
    	drMacAddress      string
    }
    
    const (
    	NETWORK_TYPE_OVERLAY = "overlay"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  8. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

            }
          }
          op {
            name: "MergeV2Checkpoints"
            input_arg {
              name: "checkpoint_prefixes"
              type: DT_STRING
            }
            input_arg {
              name: "destination_prefix"
              type: DT_STRING
            }
            attr {
              name: "delete_old_dirs"
              type: "bool"
              default_value {
                b: true
              }
            }
            attr {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Arg<TF_StrTensor, [{prefixes of V2 checkpoints to merge.}]>:$checkpoint_prefixes,
        Arg<TF_StrTensor, [{scalar.  The desired final prefix.  Allowed to be the same
    as one of the checkpoint_prefixes.}]>:$destination_prefix,
    
        DefaultValuedOptionalAttr<BoolAttr, "true">:$delete_old_dirs,
        DefaultValuedOptionalAttr<BoolAttr, "false">:$allow_missing_files
      );
    
      let results = (outs);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top