Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 323 for relabel (0.23 sec)

  1. test/fixedbugs/issue18149.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Verify that //line directives with filenames
    // containing ':' (Windows) are correctly parsed.
    // (For a related issue, see test/fixedbugs/bug305.go)
    
    package main
    
    import (
    	"fmt"
    	"runtime"
    )
    
    func check(file string, line int) {
    	_, f, l, ok := runtime.Caller(1)
    	if !ok {
    		panic("runtime.Caller(1) failed")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 01 22:01:33 UTC 2016
    - 704 bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/invocation/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    /**
     * Implementation of {@link org.gradle.api.invocation.Gradle} and related services.
     */
    @NonNullApi
    package org.gradle.invocation;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 17:39:38 UTC 2024
    - 786 bytes
    - Viewed (0)
  3. ci/README.md

    # TensorFlow continuous integration
    
    > **Warning** This folder is still under construction. It is part of an ongoing
    > effort to improve the structure of CI and build related files within the
    > TensorFlow repo. This warning will be removed when the contents of this
    > directory are stable and appropriate documentation around its usage is in
    > place.
    
    Maintainer: TensorFlow DevInfra
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 21:00:01 UTC 2023
    - 825 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/BaseProblemDescriptor.java

     */
    
    package org.gradle.tooling.events.problems;
    
    import org.gradle.api.Incubating;
    import org.gradle.tooling.events.OperationDescriptor;
    
    /**
     * A common base interface for Problem API related descriptors.
     *
     * @since 8.6
     */
    @Incubating
    public interface BaseProblemDescriptor extends OperationDescriptor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 14:55:23 UTC 2023
    - 923 bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/transform/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Artifact transform execution specific interfaces and classes related to event notifications.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 766 bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/credentials/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    /**
     * general credentials related classes.
     *
     * @since 2.4
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 744 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    	DefaultDBMetricPollInterval = 30 * time.Second
    	DefaultHealthcheckTimeout   = 2 * time.Second
    	DefaultReadinessTimeout     = 2 * time.Second
    )
    
    // TransportConfig holds all connection related info,  i.e. equal TransportConfig means equal servers we talk to.
    type TransportConfig struct {
    	// ServerList is the list of storage servers to connect with.
    	ServerList []string
    	// TLS credentials
    	KeyFile       string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. src/net/http/httputil/example_test.go

    }
    
    func ExampleReverseProxy() {
    	backendServer := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		fmt.Fprintln(w, "this call was relayed by the reverse proxy")
    	}))
    	defer backendServer.Close()
    
    	rpURL, err := url.Parse(backendServer.URL)
    	if err != nil {
    		log.Fatal(err)
    	}
    	frontendProxy := httptest.NewServer(&httputil.ReverseProxy{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 16 20:01:36 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  9. cni/pkg/iptables/testdata/default_ipv6.golden

    iptables -t mangle -A ISTIO_PRERT -p tcp -m tcp --dport 15008 -m mark ! --mark 0x539/0xfff -j TPROXY --on-port 15008 --tproxy-mark 0x111/0xfff
    iptables -t mangle -A ISTIO_PRERT -p tcp -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
    iptables -t mangle -A ISTIO_PRERT ! -d 127.0.0.1/32 -p tcp -m mark ! --mark 0x539/0xfff -j TPROXY --on-port 15006 --tproxy-mark 0x111/0xfff
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 20:16:04 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. pkg/test/framework/components/ambient/waypoint.go

    			_, err = c.Kube().CoreV1().Services(ns.Name()).Update(t.Context(), svc, metav1.UpdateOptions{})
    			return err
    		}
    
    		if err = doLabel(newLabels); err != nil {
    			t.Fatalf("error updating svc %s, err %v", service, err)
    		}
    		t.Cleanup(func() {
    			if err := doLabel(oldLabels); err != nil {
    				scopes.Framework.Errorf("failed resetting waypoint for %s/%s; this will likely break other tests", ns.Name(), service)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top