Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 104 for bigfile (0.25 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

            }
    
            return null
        }
    
        private fun getFullyResolvedFirFile(file: KtFile): FirFile {
            val firFile = file.getOrBuildFirFile(firResolveSession)
            firFile.lazyResolveToPhaseRecursively(FirResolvePhase.BODY_RESOLVE)
            return firFile
        }
    
        private fun computeErrors(
            diagnostics: Collection<DiagnosticMarker>,
    Plain Text
    - Registered: Fri Apr 19 08:18:09 GMT 2024
    - Last Modified: Thu Apr 18 12:36:23 GMT 2024
    - 31.9K bytes
    - Viewed (1)
  2. build-logic/packaging/src/main/kotlin/gradlebuild.install.gradle.kts

    }
    
    fun validateInstallDir(installDir: Directory) = installDir.also { dir ->
        val dirFile = dir.asFile
        if (dirFile.isFile) {
            throw RuntimeException("Install directory $dir is not valid: it is actually a file")
        }
        if (dirFile.list()?.isEmpty() != false) {
            return@also
        }
        val binDirFiles = dirFile.resolve("bin").list()
    Plain Text
    - Registered: Wed Jan 24 11:36:10 GMT 2024
    - Last Modified: Wed Mar 22 07:17:43 GMT 2023
    - 2K bytes
    - Viewed (0)
  3. cmd/admin-bucket-handlers.go

    	}
    	for _, bi := range buckets {
    		for _, cfgFile := range cfgFiles {
    			cfgPath := pathJoin(bi.Name, cfgFile)
    			bucket := bi.Name
    			switch cfgFile {
    			case bucketNotificationConfig:
    				config, err := globalBucketMetadataSys.GetNotificationConfig(bucket)
    				if err != nil {
    					adminLogIf(ctx, err)
    					writeErrorResponse(ctx, w, exportError(ctx, err, cfgFile, bucket), r.URL)
    					return
    				}
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 32.5K bytes
    - Viewed (0)
  4. ci/devinfra/docker_windows/Dockerfile

        msys 'pacman --noconfirm -Syy flex gawk gcc-libs grep gzip inetutils info'; \
        msys 'pacman --noconfirm -Syy less lndir mintty ncurses pactoys-git patch'; \
        msys 'pacman --noconfirm -Syy pax-git pkgfile rebase sed tar tftp-hpa time tzcode util-linux which'; \
        $old_path = [Environment]::GetEnvironmentVariable(\"PATH\", \"Machine\"); \
    Plain Text
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Fri Aug 18 17:24:20 GMT 2023
    - 13.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/zip/ZipFileUtil.java

            assertArgumentNotNull("zipFile", zipFile);
    
            try {
                zipFile.close();
            } catch (final IOException e) {
                logger.log(format("ECL0017", e.getMessage()), e);
            }
        }
    
    Java
    - Registered: Fri Apr 19 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  6. src/packaging/rpm/init.d/fess

        fi
        if [ -n "$pidfile" ] && [ ! -e "$pidfile" ]; then
            touch "$pidfile" && chown "$FESS_USER":"$FESS_GROUP" "$pidfile"
        fi
    
        echo -n $"Starting $prog: "
        # if not running, start it up here, usually something like "daemon $exec"
        daemon --user $FESS_USER --pidfile="$pidfile" $exec -d
        retval=$?
    Shell Script
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 3.7K bytes
    - Viewed (1)
  7. src/main/assemblies/files/fess

            if [ x"$pidfile" != "x" ] ; then
                echo $! > $pidfile
            fi
            return $?
        fi
    }
    
    # Print command line usage / help
    usage() {
        echo "Usage: $0 [-vdh] [-p pidfile] [-D prop] [-X prop]"
        echo "Start fess."
        echo "    -d            daemonize (run in background)"
        echo "    -p pidfile    write PID to <pidfile>"
        echo "    -h"
    Shell Script
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  8. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

    logFile = File("/tmp/key.log"), tlsVersions = tlsVersions, launch = launch)`
     * 3. Register with `client.eventListenerFactory(eventListenerFactory)`
     * 4. Launch wireshark if not done externally `val process = eventListenerFactory.launchWireShark()`
     */
    @SuppressSignatureCheck
    class WireSharkListenerFactory(
      private val logFile: File,
      private val tlsVersions: List<TlsVersion>,
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 10.7K bytes
    - Viewed (1)
  9. maven-core/src/test/resources-project-builder/id-container-joining-with-empty-elements/pom.xml

                <id>equal-build-exec-id</id>
                <phase>initialize</phase>
                <goals>
                  <goal>reset</goal>
                </goals>
                <configuration>
                  <logFile>target/exec.log</logFile>
                  <string>test</string>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    
      <reporting>
        <plugins>
    XML
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 2.8K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/plugin-exec-inheritance/pom.xml

                <inherited>true</inherited>
                <phase>validate</phase>
                <goals>
                  <goal>log-string</goal>
                </goals>
                <configuration>
                  <logFile>target/executions.txt</logFile>
                  <string>inherited-execution</string>
                </configuration>
              </execution>
              <execution>
                <id>non-inherited-execution</id>
    XML
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
Back to top