Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 200 for pats (0.15 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// `name` is the name of the service.
    	// Required
    	Name string `json:"name" protobuf:"bytes,2,opt,name=name"`
    
    	// `path` is an optional URL path which will be sent in any request to
    	// this service.
    	// +optional
    	Path *string `json:"path,omitempty" protobuf:"bytes,3,opt,name=path"`
    
    	// If specified, the port on the service that hosting webhook.
    	// Default to 443 for backward compatibility.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  2. istioctl/pkg/describe/describe.go

    								continue
    							}
    							// parse gateway
    							gns := vsNamespace
    							parts := strings.SplitN(gatewayName, "/", 2)
    							if len(parts) == 2 {
    								gatewayName = parts[1]
    								gns = parts[0]
    							}
    							// todo: check istiod env `PILOT_SCOPE_GATEWAY_TO_NAMESPACE`, if true, need to match gateway namespace
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // Required
      optional string namespace = 1;
    
      // `name` is the name of the service.
      // Required
      optional string name = 2;
    
      // `path` is an optional URL path which will be sent in any request to
      // this service.
      // +optional
      optional string path = 3;
    
      // If specified, the port on the service that hosting webhook.
      // Default to 443 for backward compatibility.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// `name` is the name of the service.
    	// Required
    	Name string `json:"name" protobuf:"bytes,2,opt,name=name"`
    
    	// `path` is an optional URL path which will be sent in any request to
    	// this service.
    	// +optional
    	Path *string `json:"path,omitempty" protobuf:"bytes,3,opt,name=path"`
    
    	// If specified, the port on the service that hosting webhook.
    	// Default to 443 for backward compatibility.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  5. cmd/api-errors.go

    		Description:    "You must specify at least one part",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidPartOrder: {
    		Code:           "InvalidPartOrder",
    		Description:    "The list of parts was not in ascending order. The parts list must be specified in order by part number.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidObjectState: {
    		Code:           "InvalidObjectState",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    // to resource directories enforcing namespace rules.
    func NamespaceKeyRootFunc(ctx context.Context, prefix string) string {
    	key := prefix
    	ns, ok := genericapirequest.NamespaceFrom(ctx)
    	if ok && len(ns) > 0 {
    		key = key + "/" + ns
    	}
    	return key
    }
    
    // NamespaceKeyFunc is the default function for constructing storage paths to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  7. pkg/kubelet/stats/cri_stats_provider_test.go

    	}
    
    	ctrl := gomock.NewController(t)
    	defer ctrl.Finish()
    
    	fakeOS := &kubecontainertest.FakeOS{}
    	fakeOS.ReadDirFn = func(path string) ([]os.DirEntry, error) {
    		var dirEntries []os.DirEntry
    		mockDE := kubecontainertest.NewMockDirEntry(ctrl)
    		switch path {
    		case kuberuntime.BuildPodLogsDirectory(testPodLogDirectory, "sandbox0-ns", "sandbox0-name", types.UID("sandbox0-uid")):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  8. src/testing/testing.go

    // Simple implementation to avoid pulling in path/filepath.
    func toOutputDir(path string) string {
    	if *outputDir == "" || path == "" {
    		return path
    	}
    	// On Windows, it's clumsy, but we can be almost always correct
    	// by just looking for a drive letter and a colon.
    	// Absolute paths always have a drive letter (ignoring UNC).
    	// Problem: if path == "C:A" and outputdir == "C:\Go" it's unclear
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        val response = call.execute()
        assertThat(response.body.string()).isEqualTo("This is the new location!")
        val request1 = server.takeRequest()
        assertThat(request1.path).isEqualTo("/")
        val request2 = server.takeRequest()
        assertThat(request2.path).isEqualTo("/foo")
      }
    
      @ParameterizedTest
      @ArgumentsSource(ProtocolParamProvider::class)
      fun readAfterLastByte(
        protocol: Protocol,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

      private lateinit var filesystem: FaultyFileSystem
      private var windows: Boolean = false
    
      @TempDir lateinit var cacheDirFile: File
      lateinit var cacheDir: Path
      private val appVersion = 100
      private lateinit var journalFile: Path
      private lateinit var journalBkpFile: Path
      private val taskFaker = TaskFaker()
      private val taskRunner = taskFaker.taskRunner
      private lateinit var cache: DiskLruCache
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top