Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 371 for Automatic (0.12 sec)

  1. test/fixedbugs/issue44739.go

    	return a.y == b.y
    }
    
    func g(a T) {
    	// test load of unaligned
    	// 8 byte gostring, store
    	// to unaligned static
    	copy(a.y[:], gostring2)
    }
    
    func main() {
    	var t1, t2 T
    
    	// test copy to automatic storage,
    	// load of unaligned gostring.
    	copy(st.y[:], gostring2)
    	copy(t1.y[:], st.y[:])
    	copy(t2.y[:], gostring3)
    	// test initialization of params
    	if !f(t1, 'a', t2) {
    		// gostring1 added so it has a use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 10 19:33:23 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/header-params.md

    !!! info
        To declare headers, you need to use `Header`, because otherwise the parameters would be interpreted as query parameters.
    
    ## Automatic conversion
    
    `Header` has a little extra functionality on top of what `Path`, `Query` and `Cookie` provide.
    
    Most of the standard headers are separated by a "hyphen" character, also known as the "minus symbol" (`-`).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/provider/ValueSource.java

     * </p>
     *
     * <p>
     * A value source implementation doesn't have to be thread-safe, as the single call
     * to {@link #obtain()} is synchronized.
     * </p>
     *
     * <p>
     * A value source implementation is exempt from the automatic detection of work graph cache inputs.
     * For example, if the {@link #obtain()} method calls {@code System.getenv("FOO")} then changes to
     * the {@code FOO} environment variable only invalidate the cache if the value returned by the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 13:02:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. docs/en/docs/index.md

    * **Easy**: Designed to be easy to use and learn. Less time reading docs.
    * **Short**: Minimize code duplication. Multiple features from each parameter declaration. Fewer bugs.
    * **Robust**: Get production-ready code. With automatic interactive documentation.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/test/JavaModuleTestCompilationIntegrationTest.groovy

            classFile('java', 'test', 'consumer/test/MainModuleTest.class').exists()
        }
    
        def "fails blackbox test compilation with old junit version"() {
            given:
            // JUnit 4.12 does not declare an Automatic-Module-Name
            buildFile << """
                dependencies { testImplementation 'junit:junit:4.12' }
            """
            consumingModuleInfo('exports consumer')
            consumingModuleClass()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. releasenotes/notes/injector-selectors.yaml

        If this behavior is not desired, it can be temporarily disabled with `--set values.sidecarInjectorWebhook.useLegacySelectors=true`.
        This option will be removed in future releases.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  7. test/ken/strvar.go

    	x =	s1.a +
    		s1.b +
    		s1.c +
    		s1.d +
    
    		s2.a +
    		s2.b +
    		s2.c +
    		s2.d.a +
    		s2.d.b +
    		s2.d.c +
    		s2.d.d;
    
    	if(x != 130) { panic(x); }
    
    	// test an automatic struct
    	s3.a = 7;
    	s3.b = 11;
    	s3.c = 13;
    	s3.d.a = 17;
    	s3.d.b = 19;
    	s3.d.c = 23;
    	s3.d.d = 29;
    
    	if(s3.d.c != 23) { panic(s3.d.c); }
    
    	x =	s3.a +
    		s3.b +
    		s3.c +
    		s3.d.a +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 1.1K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/body-nested-models.md

        }
    }
    ```
    
    Again, doing just that declaration, with **FastAPI** you get:
    
    * Editor support (completion, etc.), even for nested models
    * Data conversion
    * Data validation
    * Automatic documentation
    
    ## Special types and validation
    
    Apart from normal singular types like `str`, `int`, `float`, etc. you can use more complex singular types that inherit from `str`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. samples/websockets/README.md

    1. First install the application service:
    
        - With manual sidecar injection:
    
        ```command
        kubectl create -f <(istioctl kube-inject -f samples/websockets/app.yaml)
        ```
    
        - With automatic sidecar injection
    
        ```command
        kubectl create -f samples/websockets/app.yaml
        ```
    
    1. Create the Ingress `Gateway` and `VirtualService` that enables the upgrade to Websocket for incoming traffic:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  10. .github/workflows/replication.yaml

            run: |
              sudo sysctl net.ipv6.conf.all.disable_ipv6=0
              sudo sysctl net.ipv6.conf.default.disable_ipv6=0
              make test-replication
    
          - name: Test MinIO IDP for automatic site replication
            run: |
              sudo sysctl net.ipv6.conf.all.disable_ipv6=0
              sudo sysctl net.ipv6.conf.default.disable_ipv6=0
              make test-site-replication-minio
    
          - name: Test Versioning
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top