Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 189 for _ignored (0.23 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    +
    For the input tracking to ignore these file system checks on the specific paths, the Gradle property `org.gradle.configuration-cache.inputs.unsafe.ignore.file-system-checks`, with the list of the paths, relative to the root project directory and separated by `;`, can be used.
    To ignore multiple paths, use `*` to match arbitrary strings within one segment, or `pass:[**]` across segments.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // fieldValidation instructs the server on how to handle
      // objects in the request (POST/PUT/PATCH) containing unknown
      // or duplicate fields. Valid values are:
      // - Ignore: This will ignore any unknown fields that are silently
      // dropped from the object, and will ignore all but the last duplicate
      // field that the decoder encounters. This is the default behavior
      // prior to v1.23.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // fieldValidation instructs the server on how to handle
      // objects in the request (POST/PUT/PATCH) containing unknown
      // or duplicate fields. Valid values are:
      // - Ignore: This will ignore any unknown fields that are silently
      // dropped from the object, and will ignore all but the last duplicate
      // field that the decoder encounters. This is the default behavior
      // prior to v1.23.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. fastapi/param_functions.py

            Doc(
                """
                'Blacklist' validation step. The vanilla parameter field will be the
                single one of the alias' or set of aliases' fields and all the other
                fields will be ignored at serialization time.
                """
            ),
        ] = None,
        title: Annotated[
            Optional[str],
            Doc(
                """
                Human-readable title.
                """
            ),
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                Map<String, String> ret = new HashMap<>();
                Collection<String> ignored = Arrays.asList(ignoredAttributeNames);
                for (int i = 0; i < attributes.getLength(); i++) {
                    if (!ignored.contains(attributes.getQName(i))) {
                        ret.put(attributes.getQName(i), substitute(attributes.getValue(i)));
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * Gradle will now, by convention, look for Checkstyle configuration files in the root project's _config/checkstyle_ directory.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. src/encoding/xml/marshal_test.go

    	},
    	want: `<foo xmlns="space" xml:xmlns="space">`,
    }, {
    	desc: "empty name space declaration is ignored",
    	toks: []Token{
    		StartElement{Name{"", "foo"}, []Attr{
    			{Name{"xmlns", "foo"}, ""},
    		}},
    	},
    	want: `<foo xmlns:_xmlns="xmlns" _xmlns:foo="">`,
    }, {
    	desc: "attribute with no name is ignored",
    	toks: []Token{
    		StartElement{Name{"", "foo"}, []Attr{
    			{Name{"", ""}, "value"},
    		}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        peer.sendFrame().settings(Settings())
        peer.acceptFrame() // ACK
        peer.sendFrame().ping(false, 2, 0)
        peer.acceptFrame() // PING
        peer.sendFrame().ping(true, 99, 0) // This pong is silently ignored.
        peer.sendFrame().ping(false, 4, 0)
        peer.acceptFrame() // PING
        peer.play()
    
        // Play it back.
        connect(peer)
    
        // Verify the peer received what was expected.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  9. src/crypto/tls/common.go

    	GetCertificate func(*ClientHelloInfo) (*Certificate, error)
    
    	// GetClientCertificate, if not nil, is called when a server requests a
    	// certificate from a client. If set, the contents of Certificates will
    	// be ignored.
    	//
    	// If GetClientCertificate returns an error, the handshake will be
    	// aborted and that error will be returned. Otherwise
    	// GetClientCertificate must return a non-nil Certificate. If
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/tests/raise-target-subgraphs.mlir

    // CHECK-IGNORE-INFERENCE-TYPE: }
    // CHECK-IGNORE-INFERENCE-TYPE: func.func private @[[FUNC_NAME]](%arg0: tensor<1x384x384xf32>, %arg1: tensor<1x1x384x!quant.uniform<i8:f32, 3.000000e-03:-128>>) -> (tensor<1x384x384xf32>, tensor<1x1x384x!quant.uniform<i8:f32, 3.000000e-03:-128>>) attributes {tac.device = "GPU", tac.inference_type = "FLOAT", tac.interface_name = "func_0"} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top