Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 146 for sourceDir (0.39 sec)

  1. 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)
  2. 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)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/SourcePathProviderTest.kt

                }
                "sourceDistribution" {
                    "src-foo" {}
                    "src-bar" {}
                }
            }
    
            val resolver = mock<SourceDistributionProvider> {
                on { sourceDirs() } doReturn subDirsOf(folder("sourceDistribution"))
            }
    
            assertThat(
                sourcePathFor(
                    classPath = ClassPath.EMPTY,
                    scriptFile = null,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 17:35:41 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. docs/iam/access-management-plugin.md

          "EpochTime": [
            "1651948301"
          ],
          "Prefix": [
            ""
          ],
          "Referer": [
            ""
          ],
          "SecureTransport": [
            "false"
          ],
          "SourceIp": [
            "127.0.0.1"
          ],
          "User-Agent": [
            "MinIO (linux; amd64) minio-go/v7.0.24 mc/DEVELOPMENT.2022-04-20T23-07-53Z"
          ],
          "UserAgent": [
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 13 22:28:48 UTC 2022
    - 4.4K 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. tensorflow/compiler/mlir/lite/experimental/tac/tac_translate.cc

    #include "absl/strings/string_view.h"
    #include "llvm/ADT/SmallString.h"
    #include "llvm/Support/CommandLine.h"
    #include "llvm/Support/MemoryBuffer.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/Attributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 14:25:57 UTC 2022
    - 5.9K bytes
    - Viewed (0)
Back to top