Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for sourceDir (0.22 sec)

  1. pkg/proxy/winkernel/proxier.go

    		return nil, err
    	}
    
    	var sourceVip string
    	var hostMac string
    	if isOverlay(hnsNetworkInfo) {
    		if !utilfeature.DefaultFeatureGate.Enabled(kubefeatures.WinOverlay) {
    			return nil, fmt.Errorf("WinOverlay feature gate not enabled")
    		}
    		err = hcn.RemoteSubnetSupported()
    		if err != nil {
    			return nil, err
    		}
    		sourceVip = config.SourceVip
    		if len(sourceVip) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier_test.go

    			sourceIP: "10.0.0.2",
    			destIP:   testNodeIP,
    			destPort: svcNodePort,
    			output:   "REJECT",
    		},
    		{
    			name:     "external to NodePort with no endpoints",
    			sourceIP: testExternalClient,
    			destIP:   testNodeIP,
    			destPort: svcNodePort,
    			output:   "REJECT",
    		},
    		{
    			name:     "pod to LoadBalancer IP with no endpoints",
    			sourceIP: "10.0.0.2",
    			destIP:   svcLBIP,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier_test.go

    	tracer.runChain(utiliptables.TableFilter, kubeServicesChain, sourceIP, protocol, destIP, destPort)
    	tracer.runChain(utiliptables.TableFilter, kubeExternalServicesChain, sourceIP, protocol, destIP, destPort)
    	tracer.runChain(utiliptables.TableFilter, kubeNodePortsChain, sourceIP, protocol, destIP, destPort)
    	tracer.runChain(utiliptables.TableFilter, kubeProxyFirewallChain, sourceIP, protocol, destIP, destPort)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r50/ToolingApiIdeaModelCrossVersionSpec.groovy

    import org.gradle.tooling.model.idea.IdeaContentRoot
    import org.gradle.tooling.model.idea.IdeaModule
    import org.gradle.tooling.model.idea.IdeaProject
    
    /**
     * NOTE: Starting with Gradle 5.0 the contract of IdeaModule#sourceDirs and IdeaModule#testSourceDirs changes in
     * a way that the resource directories are excluded.
     */
    @TargetGradleVersion(">=5.0")
    class ToolingApiIdeaModelCrossVersionSpec extends ToolingApiSpecification {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo.cc

    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/string_view.h"
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/Support/SourceMgr.h"
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/Diagnostics.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/OwningOpRef.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. testing/internal-testing/src/main/groovy/org/gradle/util/internal/Resources.java

            if (!destDir.mkdir()) {
                throw new IOException("Could not create root unzip directory " + destDir);
            }
    
            try (JarFile sourceJar = new JarFile(sourceJarPath)) {
                for (JarEntry sourceJarEntry : Collections.list(sourceJar.entries())) {
                    File currFile = new File(destDir, sourceJarEntry.getName());
                    if (sourceJarEntry.isDirectory()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/utils/utils.cc

    #include "absl/status/statusor.h"
    #include "absl/strings/str_format.h"
    #include "absl/strings/string_view.h"
    #include "llvm/Support/MemoryBuffer.h"
    #include "llvm/Support/SMLoc.h"
    #include "llvm/Support/SourceMgr.h"
    #include "llvm/Support/ToolOutputFile.h"
    #include "llvm/Support/raw_ostream.h"
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    #include "mlir/Dialect/Func/Extensions/AllExtensions.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 03:47:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.h

    #include <memory>
    #include <optional>
    #include <string>
    #include <unordered_set>
    #include <vector>
    
    #include "absl/strings/string_view.h"
    #include "absl/types/span.h"
    #include "llvm/Support/SourceMgr.h"
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/OwningOpRef.h"  // from @llvm-project
    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 08:30:24 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. pkg/proxy/winkernel/hns_test.go

    package winkernel
    
    import (
    	"encoding/json"
    
    	"github.com/Microsoft/hcsshim/hcn"
    	"github.com/stretchr/testify/assert"
    
    	"strings"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    )
    
    const (
    	sourceVip         = "192.168.1.2"
    	serviceVip        = "11.0.0.1"
    	addressPrefix     = "192.168.1.0/24"
    	gatewayAddress    = "192.168.1.1"
    	epMacAddress      = "00-11-22-33-44-55"
    	epIpAddress       = "192.168.1.3"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/ExternalScriptExecutionIntegrationTest.groovy

    logging.captureStandardOutput(LogLevel.ERROR)
    println 'error message'
    assert project != null
    assert "${externalScript.absolutePath.replace("\\", "\\\\")}" == buildscript.sourceFile as String
    assert "${externalScript.toURI()}" == buildscript.sourceURI as String
    assert buildscript.classLoader == getClass().classLoader.parent
    assert buildscript.classLoader == Thread.currentThread().contextClassLoader
    assert project.buildscript.classLoader != buildscript.classLoader
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top