Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,669 for inplace (0.14 sec)

  1. pkg/config/analysis/analyzers/testdata/envoy-filter-replace-operation.yaml

    # If the patch operation is REPLACE but priority is set, then the analyzer will not do anything
    # If the patch operation is REPLACE but the applyTo is not HTTP_FILTER or NETWORK_FILTER, then an error will occur
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: test-replace-1
      namespace: bookinfo
    spec:
      workloadSelector:
        labels:
          app: reviews1
      priority: 10
      configPatches:
      - applyTo: CLUSTER
        match:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  2. dbflute_fess/playsql/replace-schema.sql

    jflute <******@****.***> 1437804256 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 449 bytes
    - Viewed (0)
  3. RELEASE.md

          * Replace `tf.keras.mixed_precision.experimental.set_policy` with `tf.keras.mixed_precision.set_global_policy`. The experimental symbol `set_policy` was renamed to `set_global_policy` in the non-experimental API.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  4. 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)
  5. CHANGELOG/CHANGELOG-1.29.md

    - Added CEL expressions to `v1alpha1 AuthenticationConfiguration`. ([#121078](https://github.com/kubernetes/kubernetes/pull/121078), [@aramase](https://github.com/aramase))
    - Added Windows support for InPlace Pod Vertical Scaling feature. ([#112599](https://github.com/kubernetes/kubernetes/pull/112599), [@fabi200123](https://github.com/fabi200123)) [SIG Autoscaling, Node, Scalability, Scheduling and Windows]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  6. hack/update-vendor.sh

         # print lines between 'replace (' ... ')' lines
         /^replace [(]/      { inreplace=1; next                   }
         inreplace && /^[)]/ { inreplace=0; next                   }
         inreplace           { print > \"${go_mod_replace}\"; next }
    
         # print ungrouped replace directives with the replace directive trimmed
         /^replace [^(]/ { sub(/^replace /,\"\"); print > \"${go_mod_replace}\"; next }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/inline/interleaved/interleaved.go

    	// Consider the expression "f(g())". We want to be able to replace
    	// "g()" in-place with its inlined representation. But if we first
    	// replace "f(...)" with its inlined representation, then "g()" will
    	// instead appear somewhere within this new AST.
    	//
    	// To mitigate this, each matched node n is wrapped in a ParenExpr,
    	// so we can reliably replace n in-place by assigning ParenExpr.X.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. src/cmd/gofmt/rewrite.go

    	fmt.Println()
    }
    */
    
    // rewriteFile applies the rewrite rule 'pattern -> replace' to an entire file.
    func rewriteFile(fileSet *token.FileSet, pattern, replace ast.Expr, p *ast.File) *ast.File {
    	cmap := ast.NewCommentMap(fileSet, p, p.Comments)
    	m := make(map[string]reflect.Value)
    	pat := reflect.ValueOf(pattern)
    	repl := reflect.ValueOf(replace)
    
    	var rewriteVal func(val reflect.Value) reflect.Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/runtimeshaded/ImplementationDependencyRelocator.java

            if (literal.startsWith("class$")) {
                String className = literal.substring(6).replace('$', '.');
                String replacement = maybeRelocateResource(className.replace('.', '/'));
                if (replacement == null) {
                    return null;
                }
                String fieldNameReplacement = "class$" + replacement.replace('/', '$');
                return new ClassLiteralRemapping(className, replacement, fieldNameReplacement);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/kotlin/build.gradle.kts

                        addCapability("org.ow2.asm", "asm", id.version)
                    }
                }
            }
        }
    }
    // end::fix_asm[]
    
    if (project.hasProperty("replace")) {
    
        // tag::use_slf4j[]
        configurations.all {
            resolutionStrategy.capabilitiesResolution.withCapability("log4j:log4j") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top