Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for regexec (0.19 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "dev": true,
          "dependencies": {
            "shebang-regex": "^1.0.0"
          },
          "engines": {
            "node": ">=0.10.0"
          }
        },
        "node_modules/npm-run-all/node_modules/shebang-regex": {
          "version": "1.0.0",
          "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/istio-service-dashboard.json

            "includeAll": false,
            "multi": false,
            "name": "datasource",
            "options": [],
            "query": "prometheus",
            "queryValue": "",
            "refresh": 1,
            "regex": "",
            "skipUrlSync": false,
            "type": "datasource"
          },
          {
            "current": {
              "selected": false,
              "text": "details.default.svc.cluster.local",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  3. samples/addons/grafana.yaml

    title":"Goroutines","type":"timeseries"}],"refresh":"","schemaVersion":38,"style":"dark","tags":[],"templating":{"list":[{"hide":0,"includeAll":false,"multi":false,"name":"datasource","options":[],"query":"prometheus","queryValue":"","refresh":1,"regex":"","skipUrlSync":false,"type":"datasource"}]},"time":{"from":"now-30m","to":"now"},"timepicker":{"refresh_intervals":["30s","1m","5m","15m","30m","1h","2h","1d"],"time_options":["5m","15m","1h","6h","12h","24h","2d","7d","30d"]},"timezone":"","title":"Istio...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    			}
    			return anonCmdLine
    		}
    
    		// Server start command regex groups:
    		// 1 - minio server
    		// 2 - flags e.g. `--address :9000 --certs-dir /etc/minio/certs`
    		// 3 - pool args e.g. `https://node{01...16}.domain/data/disk{001...204} https://node{17...32}.domain/data/disk{001...204}`
    		re := regexp.MustCompile(`^(.*minio\s+server\s+)(--[^\s]+\s+[^\s]+\s+)*(.*)`)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  5. pkg/scheduler/schedule_one_test.go

    			}
    
    			regex, err := regexp.Compile(test.expectedPatchDataPattern)
    			if err != nil {
    				t.Fatalf("Error compiling regexp for %v: %v", test.expectedPatchDataPattern, err)
    			}
    
    			if test.expectedPatchRequests > 0 && !regex.MatchString(actualPatchData) {
    				t.Fatalf("Patch data mismatch: Actual was %v, but expected to match regexp %v", actualPatchData, test.expectedPatchDataPattern)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    	}
    	// TODO(tallclair): Pass a proper timeout value.
    	return kl.runner.RunInContainer(ctx, container.ID, cmd, 0)
    }
    
    // GetExec gets the URL the exec will be served from, or nil if the Kubelet will serve it.
    func (kl *Kubelet) GetExec(ctx context.Context, podFullName string, podUID types.UID, containerName string, cmd []string, streamOpts remotecommandserver.Options) (*url.URL, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/validation/validation_test.go

    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods_test.go

    			fakeRuntime := &containertest.FakeStreamingRuntime{FakeRuntime: testKubelet.fakeRuntime}
    			kubelet.containerRuntime = fakeRuntime
    			kubelet.streamingRuntime = fakeRuntime
    
    			redirect, err := kubelet.GetExec(ctx, tc.podFullName, podUID, tc.container, tc.command, remotecommand.Options{})
    			if tc.expectError {
    				assert.Error(t, err, description)
    			} else {
    				assert.NoError(t, err, description)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    				t.Fatalf("Server logs count mismatch\ngot %d, want %d\n\nGot\n%s\n", g, w, blob)
    			}
    
    			lastSpuriousLine := <-lastLine
    			firstSpuriousLine := lastSpuriousLine - 3
    			// Now ensure that the regexes match exactly.
    			//      "http: superfluous response.WriteHeader call from <fn>.func\d.\d (<curFile>:lastSpuriousLine-[1, 3]"
    			for i, logEntry := range logEntries {
    				wantLine := firstSpuriousLine + i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top