Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 145 for accept4 (4.1 sec)

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

    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.28
    // ValidatingAdmissionPolicy describes the definition of an admission validation policy that accepts or rejects an object without changing it.
    type ValidatingAdmissionPolicy struct {
    	metav1.TypeMeta `json:",inline"`
    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. src/net/url/url_test.go

    			Path:   "/foo",
    		},
    		"",
    	},
    	{
    		// Malformed IPv6 but still accepted.
    		"http://2b01:e34:ef40:7730:8e70:5aff:fefe:edac:8080/foo",
    		&URL{
    			Scheme: "http",
    			Host:   "2b01:e34:ef40:7730:8e70:5aff:fefe:edac:8080",
    			Path:   "/foo",
    		},
    		"",
    	},
    	{
    		// Malformed IPv6 but still accepted.
    		"http://2b01:e34:ef40:7730:8e70:5aff:fefe:edac:/foo",
    		&URL{
    			Scheme: "http",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    |===
    
    [NOTE]
    ====
    `File` can be any type accepted by link:{groovyDslPath}/org.gradle.api.Project.html#org.gradle.api.Project:file(java.lang.Object)[Project.file(java.lang.Object)] and `Iterable<File>` can be any type accepted by link:{groovyDslPath}/org.gradle.api.Project.html#org.gradle.api.Project:files(java.lang.Object++[]++)[Project.files(java.lang.Object...)].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types.go

    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.30
    
    // ValidatingAdmissionPolicy describes the definition of an admission validation policy that accepts or rejects an object without changing it.
    type ValidatingAdmissionPolicy struct {
    	metav1.TypeMeta `json:",inline"`
    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. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    func (a *APIInstaller) newWebService() *restful.WebService {
    	ws := new(restful.WebService)
    	ws.Path(a.prefix)
    	// a.prefix contains "prefix/group/version"
    	ws.Doc("API at " + a.prefix)
    	// Backwards compatibility, we accepted objects with empty content-type at V1.
    	// If we stop using go-restful, we can default empty content-type to application/json on an
    	// endpoint by endpoint basis
    	ws.Consumes("*/*")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

          op_name: Name of the op to match.
          attr_name: Name of the attribute of the op to match.
          attr_val: Value of the attr_name to check.
          node_name: Name of the node to match. Accepts regex2 format.
    
        Returns:
          True if there exists a node whose name matches `op_name` and 'attr_val' if
          'attr_name' is given.
        """
    
        def match_node_name(name):
          if not node_name:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  7. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    java.io.File) throws java.net.URISyntaxException; } org/gradle/wrapper/BootstrapMainStarter$1.class package org.gradle.wrapper; synchronized class BootstrapMainStarter$1 implements java.io.FilenameFilter { void BootstrapMainStarter$1(); public boolean accept(java.io.File, String); } org/gradle/wrapper/BootstrapMainStarter.class package org.gradle.wrapper; public synchronized class BootstrapMainStarter { public void BootstrapMainStarter(); public void start(String[], java.io.File) throws Exception; static...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
  8. src/go/build/build.go

    		info.header, err = readComments(f)
    	}
    	f.Close()
    	if err != nil {
    		return info, fmt.Errorf("read %s: %v", info.name, err)
    	}
    
    	// Look for go:build comments to accept or reject the file.
    	ok, sawBinaryOnly, err := ctxt.shouldBuild(info.header, allTags)
    	if err != nil {
    		return nil, fmt.Errorf("%s: %v", name, err)
    	}
    	if !ok && !ctxt.UseAllFiles {
    		return nil, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

      private static <K extends Comparable<? super K>, V> ImmutableSortedMap<K, V> fromEntries(
          Entry<K, V>... entries) {
        return fromEntries(Ordering.natural(), false, entries, entries.length);
      }
    
      /**
       * Accepts a collection of possibly-null entries. If {@code sameComparator}, then it is assumed
       * that they do not need to be sorted or checked for dupes.
       */
      private static <K, V> ImmutableSortedMap<K, V> fromEntries(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		}
    		// If UpdateContainerResources is error-free, it means desired values for 'resourceName' was accepted by runtime.
    		// So we update currentContainerResources for 'resourceName', which is our view of most recently configured resources.
    		// Note: We can't rely on GetPodStatus as runtime may lag in actuating the resource values it just accepted.
    		switch resourceName {
    		case v1.ResourceMemory:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top