Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,797 for place (0.06 sec)

  1. releasenotes/notes/update-envoy-filters-in-place.yaml

    area: traffic-management
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 18 06:50:06 UTC 2023
    - 274 bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

          if (prevSlot && prevSlot <= place.Pos) {
            // We already have a higher slot in this stack.
          } else {
            stackMap.set(place.Stack, place.Pos);
          }
        }
    
        // Now partition the stacks.
        const groups = [];           // Array of Group {name, src, sum, self, places}
        const groupMap = new Map();  // Map from Source to Group
        for (const place of places) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/testdata/fallthrough.go

    func _() {
    	var x int
    	switch x {
    	case 0:
    		fallthrough
    
    	case 1:
    		fallthrough // ERROR fallthrough statement out of place
    		{
    		}
    
    	case 2:
    		{
    			fallthrough // ERROR fallthrough statement out of place
    		}
    
    	case 3:
    		for {
    			fallthrough // ERROR fallthrough statement out of place
    		}
    
    	case 4:
    		fallthrough // trailing empty statements are ok
    		;
    		;
    
    	case 5:
    		fallthrough
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 946 bytes
    - Viewed (0)
  4. src/crypto/cipher/example_test.go

    	stream := cipher.NewCFBDecrypter(block, iv)
    
    	// XORKeyStream can work in-place if the two arguments are the same.
    	stream.XORKeyStream(ciphertext, ciphertext)
    	fmt.Printf("%s", ciphertext)
    	// Output: some plaintext
    }
    
    func ExampleNewCFBEncrypter() {
    	// Load your secret key from a safe place and reuse it across multiple
    	// NewCipher calls. (Obviously don't use this example key for anything
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 30 16:23:44 UTC 2018
    - 11.8K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/additional-responses.md

        The correct place is:
    
        * In the key `content`, that has as value another JSON object (`dict`) that contains:
            * A key with the media type, e.g. `application/json`, that contains as value another JSON object, that contains:
                * A key `schema`, that has as the value the JSON Schema from the model, here's the correct place.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/python/BUILD

            # is run. The natural place is libtensorflow_framework.so.
            # While adding graph_optimization_pass_registration to
            # libtensorflow_framework.so is possible with some modification in
            # dependency, many tests will fail due to multiple copies of LLVM.
            # See https://github.com/tensorflow/tensorflow/pull/39231 for details.
            # Alternatively, we place graph_optimization_pass_registration here
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 07 23:17:10 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. operator/cmd/mesh/upgrade.go

    type upgradeArgs struct {
    	*InstallArgs
    }
    
    // UpgradeCmd upgrades Istio control plane in-place with eligibility checks.
    func UpgradeCmd(ctx cli.Context) *cobra.Command {
    	rootArgs := &RootArgs{}
    	upgradeArgs := &upgradeArgs{
    		InstallArgs: &InstallArgs{},
    	}
    	cmd := &cobra.Command{
    		Use:   "upgrade",
    		Short: "Upgrade Istio control plane in-place",
    		Long:  "The upgrade command is an alias for the install command",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. releasenotes/notes/filter-order.yaml

          * WASM Authz
          * Authz
          * WASM Stats
          * Stats
          * WASM unspecified
          
          This changes the following areas:
          * Inbound TCP filters now place Metadata Exchange before Authn.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 15 18:28:50 UTC 2023
    - 895 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/configuration/internal/ListenerBuildOperationDecorator.java

         * @param registrationPoint the place that the listener was registered - used in the operation description / details
         * @param listener the listener
         */
        <T> T decorate(String registrationPoint, Class<T> cls, T listener);
    
        /**
         * Decorates a listener of unknown type.
         * <p>
         * @param registrationPoint the place that the listener was registered - used in the operation description / details
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

        /**
         * Artifact type name for a JAR file containing test classes. If the main artifact is placed on the class-path
         * ({@value #JAR} or {@value #CLASSPATH_JAR} types), then the test artifact will also be placed on the class-path.
         * Otherwise, if the main artifact is placed on the module-path ({@value #JAR} or {@value #MODULAR_JAR} types),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top