Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 91 for _ignored (0.25 sec)

  1. api/maven-api-model/src/main/mdo/maven.mdo

              </association>
            </field>
            <field xdoc.separator="blank">
              <name>reports</name>
              <version>4.0.0</version>
              <description>
                @deprecated Now ignored by Maven.
              </description>
              <type>DOM</type>
            </field>
            <field>
              <name>reporting</name>
              <version>4.0.0+</version>
              <description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  2. src/reflect/value.go

    // then the case is ignored, and the field Send will also be ignored and may be either zero
    // or non-zero.
    //
    // If Dir is [SelectRecv], the case represents a receive operation.
    // Normally Chan's underlying value must be a channel and Send must be a zero Value.
    // If Chan is a zero Value, then the case is ignored, but Send must still be a zero Value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. src/net/http/server.go

    // in Go 1.22. To restore the old behavior, set the GODEBUG environment variable
    // to "httpmuxgo121=1". This setting is read once, at program startup; changes
    // during execution will be ignored.
    //
    // The backwards-incompatible changes include:
    //   - Wildcards are just ordinary literal path segments in 1.21.
    //     For example, the pattern "/{x}" will match only that path in 1.21,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. src/crypto/x509/x509_test.go

    //	keyUsage = nonRepudiation, digitalSignature, keyEncipherment
    //	subjectAltName = email:******@****.***,DNS:test.example.com
    //	[ req_attributes ]
    //	challengePassword = ignored challenge
    //	unstructuredName  = ignored unstructured name
    var csrBase64Array = [...]string{
    	// Just [ v3_req ]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    <pre>
    one, two, three = '一', '二', '三'
    </pre>
    
    <p>
    The <a href="#Blank_identifier">blank identifier</a> provides a way to
    ignore right-hand side values in an assignment:
    </p>
    
    <pre>
    _ = x       // evaluate x but ignore it
    x, _ = f()  // evaluate f() but ignore second result value
    </pre>
    
    <p>
    The assignment proceeds in two phases.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_test.go

    			Requests: v1.ResourceList{
    				emptyResource: resourceQuantity2,
    			},
    		}}},
    	}
    	// pod requiring missingResource will pass PredicateAdmit.
    	//
    	// Extended resources missing in node status are ignored in PredicateAdmit.
    	// This is required to support extended resources that are not managed by
    	// device plugin, such as cluster-level resources.
    	missingPodSpec := v1.PodSpec{NodeName: string(kl.nodeName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  7. pkg/controller/garbagecollector/garbagecollector_test.go

    					},
    				},
    				{
    					// Invalid GroupVersion, should be ignored
    					GroupVersion: "foo//whatever",
    					APIResources: []metav1.APIResource{
    						{Name: "bars", Namespaced: true, Kind: "Bar", Verbs: metav1.Verbs{"delete", "list", "watch"}},
    					},
    				},
    				{
    					// Valid GroupVersion, missing required verbs, should be ignored
    					GroupVersion: "acme/v1",
    					APIResources: []metav1.APIResource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    			// Warn for backwards compatibility
    			v = AppendWarningf(v, "%v mode does not use certificates, they will be ignored", tls.Mode)
    		}
    	}
    
    	if (tls.Mode == networking.ServerTLSSettings_SIMPLE || tls.Mode == networking.ServerTLSSettings_MUTUAL ||
    		tls.Mode == networking.ServerTLSSettings_OPTIONAL_MUTUAL) && tls.CredentialName != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

        echo "Deleting firewall rules remaining in network ${NETWORK}: ${fws[*]}"
        delete-firewall-rules "${fws[@]}"
      else
        echo "No firewall rules in network ${NETWORK}"
      fi
    }
    
    # Ignores firewall rule arguments that do not exist in NETWORK_PROJECT.
    function delete-firewall-rules() {
      for fw in "$@"; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        ConversionPatternRewriter& rewriter) {
      return failure();
    }
    
    // Converts a mhlo.reduce op with a mlho binary operation into a tensorflow
    // reduction operation. If the initial value can be ignored, then convert it
    // into a single TfReduceOp. Otherwise, convert it into a TfReduceOp followed by
    // a TfBinaryOp.
    // For example:
    //   1) A mhlo::ReduceOp on value `x` with a mhlo::AndOp and a constant initial
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top