Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 791 for redirection (0.19 sec)

  1. cluster/images/kubemark/Dockerfile

    # limitations under the License.
    
    # The line below points to the latest go-runner image, a wrapper around
    # gcr.io/distroless/static which adds the go-runner command that we need
    # for redirecting log output.
    #
    # See https://console.cloud.google.com/gcr/images/k8s-staging-build-image/global/go-runner
    # for a list of available versions. This base image should be updated
    # periodically.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder.go

    					},
    				}
    			}
    		}
    	}
    
    	ec := newClusterWrapper(c)
    	cb.setUpstreamProtocol(ec, port)
    	addTelemetryMetadata(c, port, service, direction, inboundServices)
    	if direction == model.TrafficDirectionOutbound {
    		// If stat name is configured, build the alternate stats name.
    		if len(cb.req.Push.Mesh.OutboundClusterStatName) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.kt

    interface Intf {
        fun run()
    }
    
    abstract class Ordinary
    
    annotation class Anno
    
    @Anno
    class Generic<T> : Ordinary(), Intf {
        override fun run() {}
    }
    
    enum class Direction {
        NORTH, SOUTH, WEST, EAST
    }
    
    sealed class Operation {
        class Add(val firstValue: Int, val secondValue: Int) : Operation()
        class Subtract(val minuend: Int, val subtrahend: Int) : Operation()
        class Negate(val value: Int) : Operation()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 07 16:22:01 UTC 2023
    - 426 bytes
    - Viewed (0)
  4. src/main/webapp/js/suggestor.js

                suggestingSts = false;
              },
    
              selectlist: function(direction) {
                if ($boxElement.css("display") === "none") {
                  return;
                }
    
                if (direction === "down") {
                  listSelNum++;
                } else if (direction === "up") {
                  listSelNum--;
                } else {
                  return;
                }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/selection.go

    func (s *Selection) Index() []int { return s.index }
    
    // Indirect reports whether any pointer indirection was required to get from
    // x to f in x.f.
    //
    // Beware: Indirect spuriously returns true (Go issue #8353) for a
    // MethodVal selection in which the receiver argument and parameter
    // both have type *T so there is no indirection.
    // Unfortunately, a fix is too risky.
    func (s *Selection) Indirect() bool { return s.indirect }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. pilot/pkg/model/service_test.go

    			d, s, h, p := ParseSubsetKey(tt.input)
    			if d != tt.direction {
    				t.Errorf("Expected direction %v got %v", tt.direction, d)
    			}
    			if s != tt.subsetName {
    				t.Errorf("Expected subset %v got %v", tt.subsetName, s)
    			}
    			if h != tt.hostname {
    				t.Errorf("Expected hostname %v got %v", tt.hostname, h)
    			}
    			if p != tt.port {
    				t.Errorf("Expected direction %v got %v", tt.port, p)
    			}
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/redirector/JULRedirector.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.redirector;
    
    import java.io.IOException;
    import java.util.logging.ConsoleHandler;
    import java.util.logging.LogManager;
    import java.util.logging.Logger;
    
    /**
     * Some hackery to get JUL output redirected to test output
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Predicate.java

     * java.util.function.Predicate} is expected, use the method reference {@code
     * guavaPredicate::apply}. For the other direction, use {@code javaUtilPredicate::test}. A future
     * version of this interface will be made to <i>extend</i> {@code java.util.function.Predicate}, so
     * that conversion will be necessary in only one direction. At that time, this interface will be
     * officially discouraged.
     *
     * @author Kevin Bourrillion
     * @since 2.0
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. src/go/types/selection.go

    func (s *Selection) Index() []int { return s.index }
    
    // Indirect reports whether any pointer indirection was required to get from
    // x to f in x.f.
    //
    // Beware: Indirect spuriously returns true (Go issue #8353) for a
    // MethodVal selection in which the receiver argument and parameter
    // both have type *T so there is no indirection.
    // Unfortunately, a fix is too risky.
    func (s *Selection) Indirect() bool { return s.indirect }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue39938.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    // All but E2 and E5 provide an "indirection" and break infinite expansion of a type.
    type E0[P any] []P
    type E1[P any] *P
    type E2[P any] struct{ _ P }
    type E3[P any] struct{ _ *P }
    type E5[P any] struct{ _ [10]P }
    
    type T0 struct {
            _ E0[T0]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 948 bytes
    - Viewed (0)
Back to top