Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 654 for declareNS (0.24 sec)

  1. guava/src/com/google/common/net/MediaType.java

       * font/woff} to be the correct media type for WOFF, but this may be necessary in certain
       * situations for compatibility.
       *
       * @since 17.0
       */
      public static final MediaType WOFF = createConstant(APPLICATION_TYPE, "font-woff");
    
      /**
       * <a href="https://tools.ietf.org/html/rfc8081">RFC 8081</a> declares {@link #FONT_WOFF2
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	// InvalidInitSig occurs when an init function declares parameters or
    	// results.
    	//
    	// Example:
    	//  func init() int { return 1 }
    	InvalidInitSig
    
    	// InvalidInitDecl occurs when init is declared as anything other than a
    	// function.
    	//
    	// Example:
    	//  var init = 1
    	InvalidInitDecl
    
    	// InvalidMainDecl occurs when main is declared as anything other than a
    	// function, in a main package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/dependencies/index.md

    So, the interactive docs will have all the information from these dependencies too:
    
    <img src="/img/tutorial/dependencies/image01.png">
    
    ## Simple usage
    
    If you look at it, *path operation functions* are declared to be used whenever a *path* and *operation* matches, and then **FastAPI** takes care of calling the function with the correct parameters, extracting the data from the request.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    * If no ranges are involved, then the highest version that is not rejected will be selected.
    ** If a version declared as `strictly` is lower than that version, selection will fail.
    * If ranges are involved:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/stmt0.go

    	case a /* ERROR "send or receive" */ := ch:
    	}
    
    	// test for issue 9570: ch2 in second case falsely resolved to
    	// ch2 declared in body of first case
    	ch1 := make(chan int)
    	ch2 := make(chan int)
    	select {
    	case <-ch1:
    		var ch2 /* ERROR "declared and not used: ch2" */ chan bool
    	case i := <-ch2:
    		print(i + 1)
    	}
    }
    
    func gos() {
    	go 1; /* ERROR "must be function call" */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/internal/types/errors/codes.go

    	//
    	// Example:
    	//  func init()
    	MissingInitBody
    
    	// InvalidInitSig occurs when an init function declares parameters or
    	// results.
    	//
    	// Deprecated: no longer emitted by the type checker. _InvalidInitDecl is
    	// used instead.
    	InvalidInitSig
    
    	// InvalidInitDecl occurs when init is declared as anything other than a
    	// function.
    	//
    	// Example:
    	//  var init = 1
    	//
    	// Example:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  7. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/ResolutionBackedVariantDependencyResolver.java

     * resolved coordinates for a given dependency.
     *
     * <p>The configuration being resolved should declare the same dependencies as the variant
     * being published. Then, each outgoing edge of the analyzed resolution result will correspond
     * to each declared dependency on the published variant. We build a mapping from requested
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    Remember to run a full build regularly.
    ====
    
    == Declare properties in `gradle.properties` file
    
    In Gradle, properties can be defined in the build script, in a `gradle.properties` file or as parameters on the command line.
    
    It's common to declare properties on the command line for ad-hoc scenarios.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    * The configurations in blue, also known as resolvable denoted by \(R), are internal to the component, for its own use
    
    The following configurations are used to declare dependencies:
    
    `testImplementation`::
    Used for declaring implementation dependencies for all variants of the test component.
    This is where you should declare dependencies of any variants.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/custom-response.md

    !!! note
        If you use a response class with no media type, FastAPI will expect your response to have no content, so it will not document the response format in its generated OpenAPI docs.
    
    ## Use `ORJSONResponse`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top