Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 306 for Rbrack (0.2 sec)

  1. pkg/kube/inject/testdata/inject/startup_live.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: hello
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      template:
        metadata:
          labels:
            app: hello
            tier: backend
            track: stable
        spec:
          containers:
            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 952 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/plugin-markers.puml

    @startuml
    
    skinparam monochrome true
    skinparam component {
        BackgroundColor white
        BorderColor Black
    	ArrowColor Black
    }
    
    database "maven-repo" {
      file "<b>groupId</b> com.example.hello\n<b>artifactId</b> com.example.hello.gradle.plugin\n<b>version</b> 1.0.0" as marker1
      file "<b>groupId</b> com.example.goodbye\n<b>artifactId</b> com.example.goodbye.gradle.plugin\n<b>version</b> 1.0.0" as marker2
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 595 bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/hello-probes-proxyHoldApplication-ProxyConfig.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: hello
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      template:
        metadata:
          labels:
            app: hello
            tier: backend
            track: stable
          annotations:
            proxy.istio.io/config: '{ "holdApplicationUntilProxyStarts": true }'
        spec:
          containers:
          - name: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 13 08:52:02 UTC 2020
    - 995 bytes
    - Viewed (0)
  4. src/cmd/cover/html.go

    		<title>{{$pkg := .PackageName}}{{if $pkg}}{{$pkg}}: {{end}}Go Coverage Report</title>
    		<style>
    			body {
    				background: black;
    				color: rgb(80, 80, 80);
    			}
    			body, pre, #legend span {
    				font-family: Menlo, monospace;
    				font-weight: bold;
    			}
    			#topbar {
    				background: black;
    				position: fixed;
    				top: 0; left: 0; right: 0;
    				height: 42px;
    				border-bottom: 1px solid rgb(80, 80, 80);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 14:33:36 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/user-volume.yaml

    kind: Deployment
    metadata:
      name: user-volume
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: user-volume
          tier: backend
          track: stable
      template:
        metadata:
          labels:
            app: user-volume
            tier: backend
            track: stable
          annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 874 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/request/webhook_duration_test.go

    			t.Error("expected values to be initialized to 0")
    		}
    
    		for _, d := range tc.Durations {
    			wd.MutatingWebhookTracker.Track(func() { clk.Step(d) })
    			wd.ValidatingWebhookTracker.Track(func() { clk.Step(d) })
    			wd.APFQueueWaitTracker.Track(func() { clk.Step(d) })
    		}
    
    		wd, ok = LatencyTrackersFrom(ctx)
    		if !ok {
    			t.Errorf("expected webhook duration to be initialized")
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 09:15:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. src/go/printer/testdata/comments.golden

    	i < 9;		/* comment after semicolon */
    	i++ {		// comment after opening curly brace
    	}
    
    	// TODO(gri) the last comment in this example should be aligned */
    	for i = 0;	// comment after semicolon
    	i < 9;		/* comment before semicolon - ok to move after semicolon */
    	i++ /* comment before opening curly brace */ {
    	}
    }
    
    // If there is no newline following punctuation, commas move before the punctuation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  8. maven-bom/src/site/site.xml

        <src>https://maven.apache.org/images/apache-maven-project.png</src>
        <href>https://maven.apache.org/</href>
      </bannerLeft>
    
      <bannerRight>
        <src>https://maven.apache.org/images/maven-logo-black-on-white.png</src>
        <href>https://maven.apache.org/</href>
      </bannerRight>
    
      <skin>
        <groupId>org.apache.maven.skins</groupId>
        <artifactId>maven-fluido-skin</artifactId>
        <version>1.11.2</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 24 21:16:47 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. test/fixedbugs/issue20014.dir/main.go

    		}
    	}
    	sort.Strings(fields) // for stable output, regardless of optimizations
    	for _, field := range fields {
    		println(field)
    	}
    }
    
    type T struct {
    	X int `go:"track"`
    	Y int `go:"track"`
    	Z int // untracked
    }
    
    func (t *T) GetX() int {
    	return t.X
    }
    func (t *T) GetY() int {
    	return t.Y
    }
    func (t *T) GetZ() int {
    	return t.Z
    }
    
    func samePackage() {
    	var t T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 19:48:35 UTC 2022
    - 1K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

        private static final char SECOND_ESC_CHAR = '[';
    
        /**
         * <a href="https://en.wikipedia.org/wiki/ANSI_escape_code#Colors">ANSI 8 colors</a> for fluent API
         */
        public enum Color {
            BLACK(0, "BLACK"),
            RED(1, "RED"),
            GREEN(2, "GREEN"),
            YELLOW(3, "YELLOW"),
            BLUE(4, "BLUE"),
            MAGENTA(5, "MAGENTA"),
            CYAN(6, "CYAN"),
            WHITE(7, "WHITE"),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top