Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 875 for dofiles (0.3 sec)

  1. src/cmd/go/internal/load/pkg_test.go

    			pkg.ImportPath = tt.in
    			pkg.GoFiles = tt.files
    			pkg.Internal.CmdlineFiles = len(tt.files) > 0
    			gotMod := pkg.DefaultExecName()
    			if gotMod != tt.wantMod {
    				t.Errorf("pkg.DefaultExecName with ImportPath = %q in module mode = %v; want %v", tt.in, gotMod, tt.wantMod)
    			}
    		}
    		{
    			cfg.ModulesEnabled = false
    			pkg := new(Package)
    			pkg.ImportPath = tt.in
    			pkg.GoFiles = tt.files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 14:05:53 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/DefaultClassLoaderScopeTest.groovy

            then:
            def local = scope.localClassLoader.loadClass(TestClass1.name)
            def exported = scope.exportClassLoader.loadClass(TestClass2.name)
            scope.defines(local)
            scope.defines(exported)
            !scope.defines(TestClass1)
            !scope.defines(TestClass2)
        }
    
        def "requesting loaders before locking creates pessimistic setup"() {
            given:
            scope.localClassLoader // trigger
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 24 13:56:30 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classpath/DefaultClassPathTest.groovy

            expect:
            cp1.asFiles == [file1, file2]
            cp2.asFiles == [file1, file2]
        }
    
        def "can add classpaths together"() {
            def file1 = new File("a.jar")
            def file2 = new File("b.jar")
            def cp1 = DefaultClassPath.of(file1)
            def cp2 = DefaultClassPath.of(file2)
    
            expect:
            def cp3 = cp1 + cp2
            cp3.asFiles == [file1, file2]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. pkg/volume/util/hostutil/hostutil.go

    type FileType string
    
    const (
    	// FileTypeBlockDev defines a constant for the block device FileType.
    	FileTypeBlockDev FileType = "BlockDevice"
    	// FileTypeCharDev defines a constant for the character device FileType.
    	FileTypeCharDev FileType = "CharDevice"
    	// FileTypeDirectory defines a constant for the directory FileType.
    	FileTypeDirectory FileType = "Directory"
    	// FileTypeFile defines a constant for the file FileType.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 13:38:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_symlink_dotgo.txt

    env GO111MODULE=on
    [!symlink] skip
    
    symlink dir.go -> dir
    
    # Issue #39841: symlinks to directories should be ignored, not treated as source files.
    go list -f '{{range .GoFiles}}{{.}}{{"\n"}}{{end}}' .
    stdout 'p\.go$'
    ! stdout 'dir\.go$'
    
    -- go.mod --
    module example.com
    go 1.15
    -- p.go --
    package p
    -- dir/README.txt --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 25 03:29:25 UTC 2020
    - 372 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/quantization_options.proto

      }
    
      QuantizationComponent quantization_component = 1;
    
      // Defines the target bit of the data.
      BitWidth bit_width = 2;
    
      // Defines the type of data of the quantized component.
      BitType bit_type = 3;
    
      // Defines whether quantization is done in narrow range.
      bool enable_narrow_range = 4;
    
      // Defines whether quantiation is done per-channel.
      bool enable_per_channel_quantization = 5;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 22 02:20:05 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    )
    
    const (
    	// DefaultServiceDNSDomain defines default cluster-internal domain name for Services and Pods
    	DefaultServiceDNSDomain = "cluster.local"
    	// DefaultServicesSubnet defines default service subnet range
    	DefaultServicesSubnet = "10.96.0.0/12"
    	// DefaultClusterDNSIP defines default DNS IP
    	DefaultClusterDNSIP = "10.96.0.10"
    	// DefaultKubernetesVersion defines default kubernetes version
    	DefaultKubernetesVersion = "stable-1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

            then:
            cachedClasspath.asFiles == [cachedFile]
            cachedFile.assertIsFile()
    
            and:
            1 * fileAccessTimeJournal.setLastAccessTime(cachedFile.parentFile, _)
            0 * fileAccessTimeJournal._
    
            when:
            def cachedClasspath2 = transformer.transform(classpath, BuildLogic)
    
            then:
            cachedClasspath2.asFiles == [cachedFile]
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/SourcePathProviderTest.kt

                    scriptFile = null,
                    projectDir = folder("project"),
                    gradleHomeDir = folder("gradle"),
                    sourceDistributionResolver = mock()
                ).asFiles,
                hasItems(
                    folder("project/buildSrc/src/main/foo"),
                    folder("project/buildSrc/src/main/bar"),
                    folder("gradle/src/gradle-foo"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 17:35:41 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/http/NetworkExplorer.java

            }
            catch ( CIFSException ex ) {
                throw new ServletException("Failed to initialize CIFS context", ex);
            }
        }
    
    
        protected void doFile ( HttpServletRequest req, HttpServletResponse resp, SmbFile file ) throws IOException {
            byte[] buf = new byte[8192];
    
            @SuppressWarnings ( "resource" )
            ServletOutputStream out = resp.getOutputStream();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 21.3K bytes
    - Viewed (0)
Back to top