Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,135 for wbMove (0.11 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

         *
         * @since 7.4
         */
        <T> void addProviderConvertible(String configurationName, ProviderConvertible<T> dependencyNotation);
    
        /**
         * Creates a dependency without adding it to a configuration.
         *
         * @param dependencyNotation The dependency notation, in one of the notations described above.
         * @return The dependency.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/sym/symkind.go

    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/apis.go

    	//         ...
    	//       }
    	//     }
    	//
    	// At the point where ClearCounters executes, main.XYZ has not yet
    	// finished running, thus as soon as the call returns the line
    	// marked "HERE" above will trigger the writing of a non-zero
    	// value into main.XYZ's counter slab. However since we've just
    	// finished clearing the entire counter segment, we will have lost
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-configuration/src/main/java/org/gradle/internal/buildconfiguration/tasks/UpdateDaemonJvmModifier.java

            JavaVersion minimumSupportedVersion = JavaVersion.VERSION_1_8;
            if (version.compareTo(minimumSupportedVersion) < 0) {
                String exceptionMessage = String.format("Unsupported Java version '%s' provided for the 'jvm-version' option. Gradle can only run with Java %s and above.",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/math/big/float.go

    	// general case
    	if prec > MaxPrec {
    		prec = MaxPrec
    	}
    	old := z.prec
    	z.prec = uint32(prec)
    	if z.prec < old {
    		z.round(0)
    	}
    	return z
    }
    
    func makeAcc(above bool) Accuracy {
    	if above {
    		return Above
    	}
    	return Below
    }
    
    // SetMode sets z's rounding mode to mode and returns an exact z.
    // z remains unchanged otherwise.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/extra-models.md

    So, continuing with the `user_dict` from above, writing:
    
    ```Python
    UserInDB(**user_dict)
    ```
    
    would result in something equivalent to:
    
    ```Python
    UserInDB(
        username="john",
        password="secret",
        email="******@****.***",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    //     * Redistributions in binary form must reproduce the above
    // copyright notice, this list of conditions and the following disclaimer
    // in the documentation and/or other materials provided with the
    // distribution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/events.md

    async with lifespan(app):
        await do_stuff()
    ```
    
    When you create a context manager or an async context manager like above, what it does is that, before entering the `with` block, it will execute the code before the `yield`, and after exiting the `with` block, it will execute the code after the `yield`.
    
    In our code example above, we don't use it directly, but we pass it to FastAPI for it to use it.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. helm/minio/README.md

    You can specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
    
    ```bash
    helm install --name my-release --set persistence.size=1Ti minio/minio
    ```
    
    The above command deploys MinIO server with a 1Ti backing persistent volume.
    
    Alternately, you can provide a YAML file that specifies parameter values while installing the chart. For example,
    
    ```bash
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 07:27:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/openapi-webhooks.md

    !!! info
        Webhooks are available in OpenAPI 3.1.0 and above, supported by FastAPI `0.99.0` and above.
    
    ## An app with webhooks
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top