Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 163 for root1 (0.18 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    		},
    		{
    			name:             "nested types with root rule with all supporting maxLength",
    			schemaGenerator:  genAllMaxNestedSpecWithRootRule(`self.all(x, x["y"].required == "z")`),
    			expectedCalcCost: 7340027,
    			setMaxElements:   10,
    			expectedSetCost:  72,
    		},
    		{
    			name:             "nested types with root rule with one supporting maxLength",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    func (Preconditions) SwaggerDoc() map[string]string {
    	return map_Preconditions
    }
    
    var map_RootPaths = map[string]string{
    	"":      "RootPaths lists the paths available at root. For example: \"/healthz\", \"/apis\".",
    	"paths": "paths are the paths available at root.",
    }
    
    func (RootPaths) SwaggerDoc() map[string]string {
    	return map_RootPaths
    }
    
    var map_ServerAddressByClientCIDR = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  3. configure.py

                                           'contrib', 'makefile', 'downloads')
      if os.path.isdir(makefile_download_dir):
        for root, _, filenames in os.walk(makefile_download_dir):
          for f in filenames:
            if f.endswith('BUILD'):
              os.remove(os.path.join(root, f))
    
    
    def get_var(environ_cp,
                var_name,
                query_item,
                enabled_by_default,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            when:
            configurationCacheFails 'alsoBroken'
    
            then:
            def reportDir4 = reportDir()
            reportDir4 == reportDir2
        }
    
        def "report is written to root project's buildDir"() {
            file("build.gradle") << """
                buildDir = 'out'
                tasks.register('broken') {
                    doFirst { println(project.name) }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

          path: Path of a directory or a file to calculate the total size.
    
        Returns:
          Total size of the directory or a file.
        """
        total = 0
        for root, _, files in os.walk(path):
          for filename in files:
            total += os.path.getsize(os.path.join(root, filename))
        return total
    
      def _any_log_contains(
          self, substring: str, log_record_list: List['logging.LogRecord']
      ) -> bool:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Specifies the target ResourceVersion
      // +optional
      optional string resourceVersion = 2;
    }
    
    // RootPaths lists the paths available at root.
    // For example: "/healthz", "/apis".
    message RootPaths {
      // paths are the paths available at root.
      repeated string paths = 1;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Specifies the target ResourceVersion
      // +optional
      optional string resourceVersion = 2;
    }
    
    // RootPaths lists the paths available at root.
    // For example: "/healthz", "/apis".
    message RootPaths {
      // paths are the paths available at root.
      // +listType=atomic
      repeated string paths = 1;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_attacher_test.go

    	for _, tc := range testCases {
    		user, err := user.Current()
    		if err != nil {
    			t.Logf("Current user could not be determined, assuming non-root: %v", err)
    		} else {
    			if tc.populateDeviceMountPath && user.Uid == "0" {
    				t.Skipf("Skipping intentional failure on existing data when running as root.")
    			}
    		}
    		t.Run(tc.testName, func(t *testing.T) {
    			if tc.skipOnWindows && goruntime.GOOS == "windows" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/types.go

    	//
    	// +optional
    	Service *ServiceReference
    
    	// `caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate.
    	// If unspecified, system trust roots on the apiserver are used.
    	// +optional
    	CABundle []byte
    }
    
    // ServiceReference holds a reference to Service.legacy.k8s.io
    type ServiceReference struct {
    	// `namespace` is the namespace of the service.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_client_test.go

    	if err != nil {
    		t.Fatalf("failed to parse test issuer")
    	}
    	roots := x509.NewCertPool()
    	roots.AddCert(issuer)
    	clientConfig := &Config{
    		MaxVersion:         ver,
    		ClientSessionCache: NewLRUClientSessionCache(32),
    		ServerName:         "example.golang",
    		RootCAs:            roots,
    	}
    	serverConfig := testConfig.Clone()
    	serverConfig.MaxVersion = ver
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
Back to top