Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 4,112 for _ignored (0.25 sec)

  1. src/strconv/atof.go

    import "math"
    
    var optimize = true // set to false to force slow-path conversions for testing
    
    // commonPrefixLenIgnoreCase returns the length of the common
    // prefix of s and prefix, with the character case of s ignored.
    // The prefix argument must be all lower-case.
    func commonPrefixLenIgnoreCase(s, prefix string) int {
    	n := len(prefix)
    	if n > len(s) {
    		n = len(s)
    	}
    	for i := 0; i < n; i++ {
    		c := s[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/base/goflags.go

    	IsBoolFlag() bool
    }
    
    // SetFromGOFLAGS sets the flags in the given flag set using settings in $GOFLAGS.
    func SetFromGOFLAGS(flags *flag.FlagSet) {
    	InitGOFLAGS()
    
    	// This loop is similar to flag.Parse except that it ignores
    	// unknown flags found in goflags, so that setting, say, GOFLAGS=-ldflags=-w
    	// does not break commands that don't have a -ldflags.
    	// It also adjusts the output to be clear that the reported problem is from $GOFLAGS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/resources/org/gradle/schema/dependency-verification-1.0.xsd

            </xs:sequence>
        </xs:complexType>
        <xs:complexType name="ignored-keyType">
            <xs:attribute type="xs:string" name="id" use="required"/>
            <xs:attribute type="xs:string" name="reason"/>
        </xs:complexType>
        <xs:complexType name="ignored-keysType">
            <xs:sequence>
                <xs:element type="ignored-keyType" name="ignored-key"/>
            </xs:sequence>
        </xs:complexType>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/discovery/v1beta1/types_swagger_doc_generated.go

    // information on the implementation: https://github.com/emicklei/go-restful/pull/215
    //
    // TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    // Any context after a --- is ignored.
    //
    // Those methods can be generated by using hack/update-codegen.sh
    
    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/resources/org/gradle/schema/dependency-verification-1.2.xsd

            </xs:sequence>
        </xs:complexType>
        <xs:complexType name="ignored-keyType">
            <xs:attribute type="xs:string" name="id" use="required"/>
            <xs:attribute type="xs:string" name="reason"/>
        </xs:complexType>
        <xs:complexType name="ignored-keysType">
            <xs:sequence>
                <xs:element type="ignored-keyType" name="ignored-key"/>
            </xs:sequence>
        </xs:complexType>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/GradleDistributionTool.java

        private final GradleDistribution distribution;
        private final String ignored;
    
        public GradleDistributionTool(GradleDistribution distribution) {
            this(distribution, null);
        }
    
        public GradleDistributionTool(GradleDistribution distribution, String ignored) {
            this.distribution = distribution;
            this.ignored = ignored;
        }
    
        @Override
        public boolean matches(String criteria) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jLoggerManager.java

        // notice to self: what was this method supposed to do?
        //
        /**
         * <b>Warning</b>: ignored.
         */
        public void returnComponentLogger(String role) {}
    
        /**
         * <b>Warning</b>: ignored.
         */
        public void returnComponentLogger(String role, String hint) {}
    
        /**
         * <b>Warning</b>: ignored (always return <code>0</code>).
         */
        public int getThreshold() {
            return 0;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. hack/verify-golangci-lint.sh

            echo 'have to be fixed while others can be ignored, depending on the circumstances'
            echo 'and/or personal preferences. To determine which issues have to be fixed, check'
            echo 'the report that uses golangci-strict.yaml (= pull-kubernetes-verify-lint).'
        fi
        if [ "$strict" ] || [ "$hints" ]; then
            echo
            echo 'If you feel that this warns about issues that should be ignored by default,'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admission/v1/types_swagger_doc_generated.go

    // information on the implementation: https://github.com/emicklei/go-restful/pull/215
    //
    // TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    // Any context after a --- is ignored.
    //
    // Those methods can be generated by using hack/update-codegen.sh
    
    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      //   3. If any matchCondition evaluates to an error (but none are FALSE):
      //      - If failurePolicy=Fail, reject the request
      //      - If failurePolicy=Ignore, the error is ignored and the webhook is skipped
      //
      // This is an alpha feature and managed by the AdmissionWebhookMatchConditions feature gate.
      //
      // +patchMergeKey=name
      // +patchStrategy=merge
      // +listType=map
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top