Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 65 for sourceDir (0.16 sec)

  1. 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)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/convert_custom_aggregation_op_to_quant_stats.cc

    #include <algorithm>
    #include <memory>
    #include <string>
    #include <tuple>
    #include <utility>
    
    #include "llvm/ADT/StringRef.h"
    #include "llvm/Support/SourceMgr.h"
    #include "mlir/Dialect/Quant/QuantOps.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cmd/bucket-policy.go

    	}
    
    	args := map[string][]string{
    		"CurrentTime":      {currTime.Format(time.RFC3339)},
    		"EpochTime":        {strconv.FormatInt(currTime.Unix(), 10)},
    		"SecureTransport":  {strconv.FormatBool(r.TLS != nil)},
    		"SourceIp":         {handlers.GetSourceIPRaw(r)},
    		"UserAgent":        {r.UserAgent()},
    		"Referer":          {r.Referer()},
    		"principaltype":    {principalType},
    		"userid":           {username},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/RuleVisitor.java

    public class RuleVisitor extends ExpressionReplacingVisitorSupport {
    
        public static final String INVALID_ARGUMENT_LIST = "argument list must be exactly 1 literal non empty string";
        public static final String SOURCE_URI_TOKEN = "@@sourceuri@@";
        public static final String SOURCE_DESC_TOKEN = "@@sourcedesc@@";
    
        private static final String AST_NODE_METADATA_INPUTS_KEY = RuleVisitor.class.getName() + ".inputs";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

        absl::string_view input_arrays, absl::string_view input_dtypes,
        absl::string_view input_shapes, absl::string_view output_arrays,
        absl::string_view control_output_arrays, llvm::SourceMgr* source_mgr,
        MLIRContext* context) {
      // Set up the input file.
      std::string error_message;
      auto file = mlir::openInputFile(input_filename, &error_message);
      if (!file) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top