Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 853 for Extract (0.21 sec)

  1. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

        override fun close() {
            val projectPathToLeftoverFiles = mutableMapOf<String, LeftoverFiles>()
            // First run: delete any temporary directories used to extract resources from jars
            parameters.projectStates.get().values.forEach { projectExtension ->
                cleanUp(projectExtension.tmpExtractedResourcesDirs())
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:19:47 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

          try {
            return extract();
          } finally {
            monitor.leave();
          }
        } else {
          return null;
        }
      }
    
      @CanIgnoreReturnValue
      @Override
      public E take() throws InterruptedException {
        final Monitor monitor = this.monitor;
        monitor.enterWhen(notEmpty);
        try {
          return extract();
        } finally {
          monitor.leave();
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_download_concurrent_read.txt

    # this failed with ERROR_ACCESS_DENIED when another process (usually an
    # anti-virus scanner) opened files in the temporary directory. This test
    # simulates that behavior, verifying golang.org/issue/36568.
    #
    # Since 1.16, we extract to the final directory, but we create a .partial file
    # so that if we crash, other processes know the directory is incomplete.
    
    [!GOOS:windows] skip
    [short] skip
    
    go run downloader.go
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/DefaultNodeInitializerRegistry.java

    import org.gradle.model.internal.manage.schema.ModelSchema;
    import org.gradle.model.internal.manage.schema.ModelSchemaStore;
    import org.gradle.model.internal.manage.schema.extract.*;
    import org.gradle.model.internal.type.ModelType;
    import org.gradle.model.internal.type.ModelTypes;
    
    import java.util.ArrayList;
    import java.util.List;
    import java.util.concurrent.ExecutionException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ZipExtractor.java

                }
            } catch (final MaxLengthExceededException e) {
                throw e;
            } catch (final Exception e) {
                if (buf.length() == 0) {
                    throw new ExtractException("Could not extract a content.", e);
                }
            }
    
            return new ExtractData(buf.toString().trim());
        }
    
        public void setMaxContentSize(final long maxContentSize) {
            this.maxContentSize = maxContentSize;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_download_partial.txt

    stderr 'outside main module or its selected dependencies'
    
    # 'go list -m' should not print the directory.
    go list -m -f '{{.Dir}}' rsc.io/quote
    ! stdout .
    
    # 'go mod download' should re-extract the module and remove the .partial file.
    go mod download -modcacherw rsc.io/quote
    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.partial
    exists $GOPATH/pkg/mod/rsc.io/quote@v1.5.2/go.mod
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 10 19:08:19 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  7. src/os/path.go

    	if err == nil {
    		if dir.IsDir() {
    			return nil
    		}
    		return &PathError{Op: "mkdir", Path: path, Err: syscall.ENOTDIR}
    	}
    
    	// Slow path: make sure parent exists and then call Mkdir for path.
    
    	// Extract the parent folder from path by first removing any trailing
    	// path separator and then scanning backward until finding a path
    	// separator or reaching the beginning of the string.
    	i := len(path) - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. pkg/volume/flexvolume/mounter.go

    	extraOptions[optionKeyPodNamespace] = f.podNamespace
    	extraOptions[optionKeyPodUID] = string(f.podUID)
    	// service account metadata
    	extraOptions[optionKeyServiceAccountName] = f.podServiceAccountName
    
    	// Extract secret and pass it as options.
    	if err := addSecretsToOptions(extraOptions, f.spec, f.podNamespace, f.driverName, f.plugin.host); err != nil {
    		os.Remove(dir)
    		return err
    	}
    
    	// Implicit parameters
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/ObjectBasedValueSource.java

                return null;
            }
    
            try {
                return ReflectionValueExtractor.evaluate(expression, root, false);
            } catch (Exception e) {
                addFeedback("Failed to extract \'" + expression + "\' from: " + root, e);
            }
    
            return null;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/PropertyAccessorExtractionContext.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.manage.schema.extract;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.internal.Cast;
    import org.gradle.internal.reflect.PropertyAccessorType;
    import org.gradle.model.internal.asm.AsmClassGeneratorUtils;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top