Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 297 for repeated (0.18 sec)

  1. common/config/.golangci.yml

        # report about not checking of errors in type assertions: `a := b.(MyStruct)`;
        # default is false: such cases aren't reported by default.
        check-type-assertions: false
        # report about assignment of errors to blank identifier: `num, _ := strconv.Atoi(numStr)`;
        # default is false: such cases aren't reported by default.
        check-blank: false
      govet:
        disable:
          # report about shadowed variables
          - shadow
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. src/path/filepath/path.go

    // The input path must be a valid path as reported by [io/fs.ValidPath].
    //
    // Localize returns an error if the path cannot be represented by the operating system.
    // For example, the path a\b is rejected on Windows, on which \ is a separator
    // character and cannot be part of a filename.
    //
    // The path returned by Localize will always be local, as reported by IsLocal.
    func Localize(path string) (string, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

            state = ComponentSelectionState.Selectable;
        }
    
        @Override
        public void reject() {
            this.rejected = true;
        }
    
        public void rejectForCapabilityConflict(Capability capability, Collection<NodeState> conflictedNodes) {
            this.rejected = true;
            if (this.capabilityReject == null) {
                this.capabilityReject = Pair.of(capability, conflictedNodes);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/AbstractUndeclaredBuildInputsIntegrationTest.groovy

            when: "the file system entry used in configuration does not exist"
            assert !accessedFile.exists()
            configurationCacheRunLenient()
    
            then: "the file system entry is reported as an input"
            configurationCache.assertStateStored()
            problems.assertResultHasProblems(result) {
                withInput("$location: file system entry '$testFileName'")
                ignoringUnexpectedInputs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    				}
    			},
    			fixme: "NaN and positive/negative infinities should be rejected",
    		},
    		{
    			name: "single precision infinity",
    			in:   hex("fa7f800000"),
    			assertOnError: func(t *testing.T, e error) {
    				if e == nil {
    					t.Fatal("expected non-nil error")
    				}
    			},
    			fixme: "NaN and positive/negative infinities should be rejected",
    		},
    		{
    			name: "double precision infinity",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiClientJdkCompatibilityTest.groovy

            JavaVersion.VERSION_1_7 | "4.6"    // last version with reported regression
            JavaVersion.VERSION_1_7 | "4.10.3" // last Gradle version that can run on Java 1.7
    
            JavaVersion.VERSION_1_8 | "4.6"    // last version with reported regression
            JavaVersion.VERSION_1_8 | "4.7"    // first version that had no reported regression
            JavaVersion.VERSION_1_8 | "4.10.3"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleResolveState.java

                if (version.isSelected()) {
                    version.makeSelectable();
                }
            }
    
            selected = null;
            replaced = false;
        }
    
        /**
         * Overrides the component selection for this module, when this module has been replaced by another.
         */
        @Override
        public void replaceWith(ComponentState selected) {
            if (this.selected != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecationMessagesTest.groovy

            then:
            expectMessage "Feature has been deprecated. This is scheduled to be removed in Gradle ${NEXT_GRADLE_VERSION}. Advice."
        }
    
        def "logs deprecated and replaced parameter usage message"() {
            when:
            DeprecationLogger.deprecateNamedParameter("paramName").replaceWith("replacement").willBeRemovedInGradle9().undocumented().nagUser()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. pkg/webhooks/validation/controller/controller.go

    		}
    	}
    }
    
    func (c *Controller) readyForFailClose() bool {
    	if !c.dryRunOfInvalidConfigRejected {
    		if rejected, reason := c.isDryRunOfInvalidConfigRejected(); !rejected {
    			scope.Infof("Not ready to switch validation to fail-closed: %v", reason)
    			return false
    		}
    		scope.Info("Endpoint successfully rejected invalid config. Switching to fail-close.")
    		c.dryRunOfInvalidConfigRejected = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    Caches are classified into five categories:
    
    1. *Released wrapper distributions:* Distributions and related version-specific caches corresponding to released versions (e.g., `4.6.2` or `8.0`).
    +
    Default retention for unused versions is 30 days.
    2. *Snapshot wrapper distributions:* Distributions and related version-specific caches corresponding to snapshot versions (e.g. `7.6-20221130141522+0000`).
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top