Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 933 for Extract (0.15 sec)

  1. docs/en/docs/advanced/path-operation-advanced-configuration.md

    And you could do this even if the data type in the request is not JSON.
    
    For example, in this application we don't use FastAPI's integrated functionality to extract the JSON Schema from Pydantic models nor the automatic validation for JSON. In fact, we are declaring the request content type as YAML, not JSON:
    
    === "Pydantic v2"
    
        ```Python hl_lines="17-22  24"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/go/internal/vcs/discovery.go

    		}
    		if f := strings.Fields(attrValue(e.Attr, "content")); len(f) == 3 {
    			imports = append(imports, metaImport{
    				Prefix:   f[0],
    				VCS:      f[1],
    				RepoRoot: f[2],
    			})
    		}
    	}
    
    	// Extract mod entries if we are paying attention to them.
    	var list []metaImport
    	var have map[string]bool
    	if mod == PreferMod {
    		have = make(map[string]bool)
    		for _, m := range imports {
    			if m.VCS == "mod" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 11 18:14:49 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top