Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 158 of 158 for silver (1.5 sec)

  1. pilot/pkg/networking/core/sidecar_simulation_test.go

    				"*.example.org":                       nil,                                                  // Not imported
    			},
    		},
    		{
    			name: "sidecar filter",
    			cfg: []Configer{
    				vsArgs{
    					Namespace: "not-default",
    					Match:     "*.default.svc.cluster.local",
    					Dest:      "arbitrary.example.com",
    				},
    				vsArgs{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    // using its result.
    func (state *debugState) mergePredecessors(b *Block, blockLocs []*BlockDebug, previousBlock *Block, forLocationLists bool) (abt.T, bool) {
    	// Filter out back branches.
    	var predsBuf [10]*Block
    
    	preds := predsBuf[:0]
    	locs := blockLocs[b.ID]
    
    	blockChanged := !locs.everProcessed // the first time it always changes.
    	updating := locs.everProcessed
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

          gateway.networking.k8s.io/gateway-name: "{{.Destination}}"
      configPatches:
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
          listener:
            filterChain:
              filter:
                name: "envoy.filters.network.http_connection_manager"
                subFilter:
                  name: "envoy.filters.http.router"
        patch:
          operation: INSERT_BEFORE
          value:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * <pre>
         * copy {
         *    into 'build/webroot'
         *    exclude '**&#47;.svn/**'
         *    from('src/main/webapp') {
         *       include '**&#47;*.jsp'
         *       filter(ReplaceTokens, tokens:[copyright:'2009', version:'2.3.1'])
         *    }
         *    from('src/main/js') {
         *       include '**&#47;*.js'
         *    }
         * }
         * </pre>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Even adding a new property will invalidate the cache if this pattern is used.
    
    Using a custom predicate to filter environment variables is an example of this discouraged pattern:
    
    ====
    include::sample[dir="snippets/valueProviders/envVarsSysPropsDont/kotlin",files="build.gradle.kts[]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// StatusReasonServerTimeout means the server can be reached and understood the request,
    	// but cannot complete the action in a reasonable time. The client should retry the request.
    	// This is may be due to temporary server load or a transient communication issue with
    	// another server. Status code 500 is used because the HTTP spec provides no suitable
    	// server-requested client retry and the 5xx class represents actionable errors.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  7. pkg/kubelet/pod_workers.go

    	// worker to be terminated. If the pod has been force deleted and the pod worker
    	// has completed termination this method will return false, so this method should
    	// only be used to filter out pods from the desired set such as in admission.
    	//
    	// Intended for use by the kubelet config loops, but not subsystems, which should
    	// use ShouldPod*().
    	IsPodKnownTerminated(uid types.UID) bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    		ctxt.Logf("\n")
    	}
    
    	cmd := exec.Command(argv[0], argv[1:]...)
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		Exitf("running %s failed: %v\n%s\n%s", argv[0], err, cmd, out)
    	}
    
    	// Filter out useless linker warnings caused by bugs outside Go.
    	// See also cmd/go/internal/work/exec.go's gccld method.
    	var save [][]byte
    	var skipLines int
    	for _, line := range bytes.SplitAfter(out, []byte("\n")) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top