Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for sourceDir (0.18 sec)

  1. pkg/proxy/winkernel/hns.go

    	lbDistributionType := hcn.LoadBalancerDistributionNone
    
    	if flags.sessionAffinity {
    		lbDistributionType = hcn.LoadBalancerDistributionSourceIP
    	}
    
    	loadBalancer := &hcn.HostComputeLoadBalancer{
    		SourceVIP: sourceVip,
    		PortMappings: []hcn.LoadBalancerPortMapping{
    			{
    				Protocol:         uint32(protocol),
    				InternalPort:     internalPort,
    				ExternalPort:     externalPort,
    				DistributionType: lbDistributionType,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 21:21:12 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

    #include <vector>
    
    #include "absl/strings/match.h"
    #include "absl/strings/str_cat.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/Support/CommandLine.h"
    #include "llvm/Support/Path.h"
    #include "llvm/Support/SourceMgr.h"
    #include "llvm/Support/ToolOutputFile.h"
    #include "llvm/Support/raw_ostream.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter_test.cc

    #include <memory>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include <gmock/gmock.h>
    #include <gtest/gtest.h>
    #include "absl/memory/memory.h"
    #include "llvm/Support/Casting.h"
    #include "llvm/Support/SourceMgr.h"
    #include "llvm/Support/raw_ostream.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/Operation.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

            buildFile """
                def fileCollection = objects.fileCollection()
                def sourceDirs = objects.sourceDirectorySet('main', 'main files')
                sourceDirs.srcDirs("dir1", "dir2")
                fileCollection.from(sourceDirs.srcDirTrees)
                println("files = \${fileCollection.files.name.sort()}")
            """
    
            given:
            file("dir1/file1").createFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/SourceFoldersCreator.java

        }
    
        private List<DirectoryTree> sortSourceDirsAsPerUsualConvention(Iterable<DirectoryTree> sourceDirs) {
            return CollectionUtils.sort(sourceDirs, Comparator.comparing(SourceFoldersCreator::toComparable));
        }
    
        private static Integer toComparable(SourceSet sourceSet) {
            String name = sourceSet.getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

    #include "llvm/ADT/SmallVector.h"
    #include "llvm/ADT/StringExtras.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/Support/CommandLine.h"
    #include "llvm/Support/FormatVariadic.h"
    #include "llvm/Support/SourceMgr.h"
    #include "llvm/Support/ToolOutputFile.h"
    #include "llvm/Support/raw_ostream.h"
    #include "mlir/Dialect/Func/Extensions/AllExtensions.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. pkg/proxy/apis/config/types.go

    type KubeProxyWinkernelConfiguration struct {
    	// networkName is the name of the network kube-proxy will use
    	// to create endpoints and policies
    	NetworkName string
    	// sourceVip is the IP address of the source VIP endpoint used for
    	// NAT when loadbalancing
    	SourceVip string
    	// enableDSR tells kube-proxy whether HNS policies should be created
    	// with DSR
    	EnableDSR bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. cmd/kube-proxy/app/server_test.go

    			ssErr:   true,
    			ssFatal: true,
    			dsErr:   true,
    			dsFatal: true,
    		},
    
    		{
    			name: "ok winkernel.sourceVip",
    			proxy: &ProxyServer{
    				Config: &kubeproxyconfig.KubeProxyConfiguration{
    					Winkernel: kubeproxyconfig.KubeProxyWinkernelConfiguration{
    						SourceVip: "10.0.0.1",
    					},
    				},
    				PrimaryIPFamily: v1.IPv4Protocol,
    			},
    			ssErr: false,
    			dsErr: false,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. pkg/proxy/winkernel/proxier_test.go

    		hostname:            testHostName,
    		nodeIP:              nodeIP,
    		serviceHealthServer: healthcheck.NewFakeServiceHealthServer(),
    		network:             *hnsNetworkInfo,
    		sourceVip:           sourceVip,
    		hostMac:             macAddress,
    		isDSR:               false,
    		hns: &hns{
    			hcn: hcnMock,
    		},
    		hcn:                   hcnMock,
    		endPointsRefCount:     make(endPointsReferenceCountMap),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/networkfilter_test.go

    	}{
    		{
    			"destination rule without sourceip",
    			[]*networking.RouteDestination{
    				{
    					Destination: &networking.Destination{
    						Host: "testsimple.com",
    						Port: &networking.PortSelector{
    							Number: 9999,
    						},
    					},
    				},
    			},
    			config.Meta{Name: "testsimple.com", Namespace: "ns"},
    			false,
    		},
    		{
    			"destination rule has sourceip",
    			[]*networking.RouteDestination{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top